From 78795ed2042dc80a22312081bfe287d92ccf7785 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 09:43:46 +0900 Subject: [PATCH 1/8] refactor: migrate snapshot tests from toMatchSnapshot to toMatchFileSnapshot Replace vitest .snap files with plain .ts files per directory structure. Each snapshot is now stored as a readable TypeScript file alongside the generated code it verifies, making diffs easier to review in PRs. Co-Authored-By: Claude Sonnet 4.5 --- .../client.ts} | 45 +- .../client.ts} | 3571 ++++++++--------- .../code.ts} | 11 +- .../client-v1.18.5.ts} | 3067 +++++++------- .../apiClient.ts} | 41 +- .../mulit-type-test.domain/types.ts | 22 + .../api.test.domain.json} | 332 +- .../__snapshots__/parameter/infer.domain.json | 1 + .../parameter/path-parameter.json | 319 ++ .../class/__snapshots__/split/apiClient.ts | 281 ++ .../types.ts} | 77 +- .../__snapshots__/template-only-test.ts.snap | 430 -- .../template-only/api.test.domain.ts | 186 + .../template-only/infer.domain.ts | 45 + .../template-only/sync-api.test.domain.ts | 186 + .../typedef-only/api.test.domain.ts} | 77 +- .../typedef-only/infer.domain.ts | 32 + .../typedef-only/json.properties.ts | 30 + .../typedef-with-template-test.ts.snap | 1896 --------- .../api.test.domain.ts} | 531 ++- .../typedef-with-template/api.v2.domain.ts | 127 + .../typedef-with-template/infer.domain.ts | 68 + .../typedef-with-template/path-parameter.ts | 153 + .../typedef-with-template/ref-access.ts | 277 ++ .../remote-ref-access.ts | 172 + .../sync-api.test.domain.ts | 535 +++ .../client.ts} | 13 +- test/__tests__/class/argo-rollout-test.ts | 4 +- test/__tests__/class/cloudflare-test.ts | 4 +- test/__tests__/class/format.domain.ts | 4 +- test/__tests__/class/kubernetes-test.ts | 4 +- .../__tests__/class/multi-type.test.domain.ts | 8 +- test/__tests__/class/parameter-test.ts | 12 +- test/__tests__/class/spit-code-test.ts | 8 +- test/__tests__/class/template-only-test.ts | 12 +- test/__tests__/class/typedef-only-test.ts | 12 +- .../class/typedef-with-template-test.ts | 28 +- .../class/unknown-schema-domain-test.ts | 4 +- .../client.ts} | 3565 ++++++++-------- .../currying-functional/coudflare-test.ts | 4 +- .../client.ts} | 45 +- .../client.ts} | 3567 ++++++++-------- .../code.ts} | 11 +- .../client-v1.18.5.ts} | 3067 +++++++------- .../apiClient.ts} | 41 +- .../mulit-type-test.domain/types.ts | 22 + .../api.test.domain.json} | 332 +- .../__snapshots__/parameter/infer.domain.json | 1 + .../parameter/path-parameter.json | 319 ++ .../__snapshots__/split/apiClient.ts | 284 ++ .../functional/__snapshots__/split/types.ts | 296 ++ .../__snapshots__/template-only-test.ts.snap | 438 -- .../template-only/api.test.domain.ts | 189 + .../template-only/infer.domain.ts | 47 + .../template-only/sync-api.test.domain.ts | 189 + .../typedef-only/api.test.domain.ts | 296 ++ .../typedef-only/infer.domain.ts | 32 + .../typedef-only/json.properties.ts | 30 + .../typedef-with-template-test.ts.snap | 1916 --------- .../api.test.domain.ts} | 537 ++- .../typedef-with-template/api.v2.domain.ts | 130 + .../typedef-with-template/infer.domain.ts | 70 + .../typedef-with-template/path-parameter.ts | 156 + .../typedef-with-template/ref-access.ts | 280 ++ .../remote-ref-access.ts | 175 + .../sync-api.test.domain.ts | 538 +++ .../client.ts} | 13 +- .../__tests__/functional/argo-rollout-test.ts | 4 +- test/__tests__/functional/coudflare-test.ts | 4 +- test/__tests__/functional/format.domain.ts | 4 +- test/__tests__/functional/kubernetes-test.ts | 4 +- .../functional/multi-type.test.domain.ts | 8 +- test/__tests__/functional/parameter-test.ts | 12 +- test/__tests__/functional/spit-code-test.ts | 8 +- .../functional/template-only-test.ts | 12 +- .../__tests__/functional/typedef-only-test.ts | 12 +- .../functional/typedef-with-template-test.ts | 28 +- .../unknown-schema-domain-test copy.ts | 4 +- vitest.snapshot.config.ts | 3 +- 79 files changed, 14551 insertions(+), 14767 deletions(-) rename test/__tests__/class/__snapshots__/{argo-rollout-test.ts.snap => argo-rollout/client.ts} (98%) rename test/__tests__/class/__snapshots__/{cloudflare-test.ts.snap => cloudflare/client.ts} (93%) rename test/__tests__/class/__snapshots__/{format.domain.ts.snap => format.domain/code.ts} (89%) rename test/__tests__/class/__snapshots__/{kubernetes-test.ts.snap => kubernetes/client-v1.18.5.ts} (92%) rename test/__tests__/class/__snapshots__/{multi-type.test.domain.ts.snap => mulit-type-test.domain/apiClient.ts} (77%) create mode 100644 test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts rename test/__tests__/class/__snapshots__/{parameter-test.ts.snap => parameter/api.test.domain.json} (69%) create mode 100644 test/__tests__/class/__snapshots__/parameter/infer.domain.json create mode 100644 test/__tests__/class/__snapshots__/parameter/path-parameter.json create mode 100644 test/__tests__/class/__snapshots__/split/apiClient.ts rename test/__tests__/class/__snapshots__/{typedef-only-test.ts.snap => split/types.ts} (85%) delete mode 100644 test/__tests__/class/__snapshots__/template-only-test.ts.snap create mode 100644 test/__tests__/class/__snapshots__/template-only/api.test.domain.ts create mode 100644 test/__tests__/class/__snapshots__/template-only/infer.domain.ts create mode 100644 test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts rename test/__tests__/{functional/__snapshots__/typedef-only-test.ts.snap => class/__snapshots__/typedef-only/api.test.domain.ts} (85%) create mode 100644 test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts create mode 100644 test/__tests__/class/__snapshots__/typedef-only/json.properties.ts delete mode 100644 test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap rename test/__tests__/class/__snapshots__/{spit-code-test.ts.snap => typedef-with-template/api.test.domain.ts} (91%) create mode 100644 test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts create mode 100644 test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts create mode 100644 test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts create mode 100644 test/__tests__/class/__snapshots__/typedef-with-template/ref-access.ts create mode 100644 test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts create mode 100644 test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts rename test/__tests__/class/__snapshots__/{unknown-schema-domain-test.ts.snap => unknown.schema.domain/client.ts} (88%) rename test/__tests__/currying-functional/__snapshots__/{coudflare-test.ts.snap => cloudflare/client.ts} (94%) rename test/__tests__/functional/__snapshots__/{argo-rollout-test.ts.snap => argo-rollout/client.ts} (98%) rename test/__tests__/functional/__snapshots__/{coudflare-test.ts.snap => cloudflare/client.ts} (93%) rename test/__tests__/functional/__snapshots__/{format.domain.ts.snap => format.domain/code.ts} (90%) rename test/__tests__/functional/__snapshots__/{kubernetes-test.ts.snap => kubernetes/client-v1.18.5.ts} (92%) rename test/__tests__/functional/__snapshots__/{multi-type.test.domain.ts.snap => mulit-type-test.domain/apiClient.ts} (79%) create mode 100644 test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts rename test/__tests__/functional/__snapshots__/{parameter-test.ts.snap => parameter/api.test.domain.json} (69%) create mode 100644 test/__tests__/functional/__snapshots__/parameter/infer.domain.json create mode 100644 test/__tests__/functional/__snapshots__/parameter/path-parameter.json create mode 100644 test/__tests__/functional/__snapshots__/split/apiClient.ts create mode 100644 test/__tests__/functional/__snapshots__/split/types.ts delete mode 100644 test/__tests__/functional/__snapshots__/template-only-test.ts.snap create mode 100644 test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts create mode 100644 test/__tests__/functional/__snapshots__/template-only/infer.domain.ts create mode 100644 test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts delete mode 100644 test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap rename test/__tests__/functional/__snapshots__/{spit-code-test.ts.snap => typedef-with-template/api.test.domain.ts} (90%) create mode 100644 test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts create mode 100644 test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts rename test/__tests__/functional/__snapshots__/{unknown-schema-domain-test copy.ts.snap => unknown.schema.domain/client.ts} (89%) diff --git a/test/__tests__/class/__snapshots__/argo-rollout-test.ts.snap b/test/__tests__/class/__snapshots__/argo-rollout/client.ts similarity index 98% rename from test/__tests__/class/__snapshots__/argo-rollout-test.ts.snap rename to test/__tests__/class/__snapshots__/argo-rollout/client.ts index 5772e81d..07f9e35c 100644 --- a/test/__tests__/class/__snapshots__/argo-rollout-test.ts.snap +++ b/test/__tests__/class/__snapshots__/argo-rollout/client.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Argo Rollout > client.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.0 // @@ -11,7 +8,7 @@ exports[`Argo Rollout > client.ts 1`] = ` export namespace Schemas { export interface github$com$argoproj$argo_rollouts$pkg$apis$rollouts$v1alpha1$ALBTrafficRouting { - /** Ingress refers to the name of an \`Ingress\` resource in the same namespace as the \`Rollout\` */ + /** Ingress refers to the name of an `Ingress` resource in the same namespace as the `Rollout` */ ingress?: string; /** ServicePort refers to the port that the Ingress action should route traffic to */ servicePort?: number; @@ -218,7 +215,7 @@ export namespace Schemas { * +optional */ annotationPrefix?: string; - /** StableIngress refers to the name of an \`Ingress\` resource in the same namespace as the \`Rollout\` */ + /** StableIngress refers to the name of an `Ingress` resource in the same namespace as the `Rollout` */ stableIngress?: string; /** +optional */ additionalIngressAnnotations?: { @@ -2295,7 +2292,7 @@ export namespace Schemas { /** * If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). * In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). - * In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\SYSTEM\\\\CurrentControlSet\\\\Services\\\\Tcpip\\\\Parameters to FQDN. + * In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. * If a pod does not have FQDN, this has no effect. * Default to false. * +optional @@ -2883,7 +2880,7 @@ export namespace Schemas { export interface k8s$io$api$core$v1$TopologySpreadConstraint { /** * MaxSkew describes the degree to which pods may be unevenly distributed. - * When \`whenUnsatisfiable=DoNotSchedule\`, it is the maximum permitted difference + * When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference * between the number of matching pods in the target topology and the global minimum. * For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same * labelSelector spread as 1/1/0: @@ -2896,7 +2893,7 @@ export namespace Schemas { * scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) * violate MaxSkew(1). * - if MaxSkew is 2, incoming pod can be scheduled onto any zone. - * When \`whenUnsatisfiable=ScheduleAnyway\`, it is used to give higher precedence + * When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence * to topologies that satisfy it. * It's a required field. Default value is 1 and 0 is not allowed. */ @@ -3846,9 +3843,9 @@ export interface ApiClient { } export class Client { private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } public async RolloutService_GetNamespace(option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespace\`; + const url = this.baseUrl + `/api/v1/namespace`; const headers = { Accept: "application/json" }; @@ -3859,7 +3856,7 @@ export class Client { }, option); } public async RolloutService_ListRolloutInfos(params: Params$RolloutService_ListRolloutInfos, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/info\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/info`; const headers = { Accept: "application/json" }; @@ -3870,7 +3867,7 @@ export class Client { }, option); } public async RolloutService_WatchRolloutInfos(params: Params$RolloutService_WatchRolloutInfos, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/info/watch\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/info/watch`; const headers = { Accept: "application/json" }; @@ -3881,7 +3878,7 @@ export class Client { }, option); } public async RolloutService_AbortRollout(params: Params$RolloutService_AbortRollout, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/abort\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/abort`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3894,7 +3891,7 @@ export class Client { }, option); } public async RolloutService_GetRolloutInfo(params: Params$RolloutService_GetRolloutInfo, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/info\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/info`; const headers = { Accept: "application/json" }; @@ -3905,7 +3902,7 @@ export class Client { }, option); } public async RolloutService_WatchRolloutInfo(params: Params$RolloutService_WatchRolloutInfo, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/info/watch\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/info/watch`; const headers = { Accept: "application/json" }; @@ -3916,7 +3913,7 @@ export class Client { }, option); } public async RolloutService_PromoteRollout(params: Params$RolloutService_PromoteRollout, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/promote\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/promote`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3929,7 +3926,7 @@ export class Client { }, option); } public async RolloutService_RestartRollout(params: Params$RolloutService_RestartRollout, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/restart\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/restart`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3942,7 +3939,7 @@ export class Client { }, option); } public async RolloutService_RetryRollout(params: Params$RolloutService_RetryRollout, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/retry\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/retry`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3955,7 +3952,7 @@ export class Client { }, option); } public async RolloutService_SetRolloutImage(params: Params$RolloutService_SetRolloutImage, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.rollout)}/set/\${encodeURIComponent(params.parameter.container)}/\${encodeURIComponent(params.parameter.image)}/\${encodeURIComponent(params.parameter.tag)}\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.rollout)}/set/${encodeURIComponent(params.parameter.container)}/${encodeURIComponent(params.parameter.image)}/${encodeURIComponent(params.parameter.tag)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3968,7 +3965,7 @@ export class Client { }, option); } public async RolloutService_UndoRollout(params: Params$RolloutService_UndoRollout, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.rollout)}/undo/\${encodeURIComponent(params.parameter.revision)}\`; + const url = this.baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.rollout)}/undo/${encodeURIComponent(params.parameter.revision)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3981,7 +3978,7 @@ export class Client { }, option); } public async RolloutService_Version(option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/version\`; + const url = this.baseUrl + `/api/v1/version`; const headers = { Accept: "application/json" }; @@ -3992,5 +3989,3 @@ export class Client { }, option); } } -" -`; diff --git a/test/__tests__/class/__snapshots__/cloudflare-test.ts.snap b/test/__tests__/class/__snapshots__/cloudflare/client.ts similarity index 93% rename from test/__tests__/class/__snapshots__/cloudflare-test.ts.snap rename to test/__tests__/class/__snapshots__/cloudflare/client.ts index c42523b9..a13bc708 100644 --- a/test/__tests__/class/__snapshots__/cloudflare-test.ts.snap +++ b/test/__tests__/class/__snapshots__/cloudflare/client.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Unknown > client.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.3 // @@ -878,16 +875,16 @@ export namespace Schemas { code: number; message: string; }[]; - /** The maximum number of bytes to capture. This field only applies to \`full\` packet captures. */ + /** The maximum number of bytes to capture. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_byte_limit = number; export type SxDaNi5K_pcaps_collection_response = Schemas.SxDaNi5K_api$response$collection & { result?: (Schemas.SxDaNi5K_pcaps_response_simple | Schemas.SxDaNi5K_pcaps_response_full)[]; }; - /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to \`full\` packet captures. */ + /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_colo_name = string; - /** The full URI for the bucket. This field only applies to \`full\` packet captures. */ + /** The full URI for the bucket. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_destination_conf = string; - /** An error message that describes why the packet capture failed. This field only applies to \`full\` packet captures. */ + /** An error message that describes why the packet capture failed. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_error_message = string; /** The packet capture filter. When this field is empty, all packets are captured. */ export interface SxDaNi5K_pcaps_filter_v1 { @@ -984,7 +981,7 @@ export namespace Schemas { export type SxDaNi5K_pcaps_system = "magic-transit"; /** The packet capture duration in seconds. */ export type SxDaNi5K_pcaps_time_limit = number; - /** The type of packet capture. \`Simple\` captures sampled packets, and \`full\` captures entire payloads and non-sampled packets. */ + /** The type of packet capture. `Simple` captures sampled packets, and `full` captures entire payloads and non-sampled packets. */ export type SxDaNi5K_pcaps_type = "simple" | "full"; export interface SxDaNi5K_result_info { /** Total number of results for the requested service */ @@ -1479,7 +1476,7 @@ export namespace Schemas { export type access_allow_all_origins = boolean; /** When set to true, users can authenticate via WARP for any application in your organization. Application settings will take precedence over this value. */ export type access_allow_authenticate_via_warp = boolean; - /** When set to \`true\`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ + /** When set to `true`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ export type access_allow_credentials = boolean; /** The result of the authentication event. */ export type access_allowed = boolean; @@ -1573,7 +1570,7 @@ export namespace Schemas { auth_method: string; }; } - /** When set to \`true\`, users skip the identity provider selection step during login. */ + /** When set to `true`, users skip the identity provider selection step during login. */ export type access_auto_redirect_to_identity = boolean; /** * Matches an Azure group. @@ -1678,9 +1675,9 @@ export namespace Schemas { export type access_certificates_components$schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_certificates; }; - /** The Client ID for the service token. Access will check for this value in the \`CF-Access-Client-ID\` request header. */ + /** The Client ID for the service token. Access will check for this value in the `CF-Access-Client-ID` request header. */ export type access_client_id = string; - /** The Client Secret for the service token. Access will check for this value in the \`CF-Access-Client-Secret\` request header. */ + /** The Client Secret for the service token. Access will check for this value in the `CF-Access-Client-Secret` request header. */ export type access_client_secret = string; /** The domain and path that Access will secure. */ export type access_components$schemas$domain = string; @@ -1694,7 +1691,7 @@ export namespace Schemas { export type access_components$schemas$response_collection = Schemas.access_api$response$collection & { result?: Schemas.access_service$tokens[]; }; - /** The amount of time that tokens issued for the application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for the application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_components$schemas$session_duration = string; export type access_components$schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_groups; @@ -1801,7 +1798,7 @@ export namespace Schemas { domain: string; }; } - /** The duration for how long the service token will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. The default is 1 year in hours (8760h). */ + /** The duration for how long the service token will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. The default is 1 year in hours (8760h). */ export type access_duration = string; /** The email address of the authenticating user. */ export type access_email = string; @@ -2308,7 +2305,7 @@ export namespace Schemas { export type access_schemas$apps = (Schemas.access_basic_app_response_props & Schemas.access_schemas$self_hosted_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$saas_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$ssh_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$vnc_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$app_launcher_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$warp_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$biso_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$bookmark_props); /** Audience tag. */ export type access_schemas$aud = string; - /** When set to \`true\`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ + /** When set to `true`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ export type access_schemas$auto_redirect_to_identity = boolean; export type access_schemas$azureAD = Schemas.access_schemas$identity$provider & { config?: Schemas.access_generic$oauth$config & { @@ -2582,7 +2579,7 @@ export namespace Schemas { /** The application type. */ type: string; } - /** The amount of time that tokens issued for this application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for this application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_schemas$session_duration = string; export type access_schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_identity$providers; @@ -2674,7 +2671,7 @@ export namespace Schemas { token_id: string; }; } - /** The amount of time that tokens issued for applications will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for applications will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_session_duration = string; export interface access_settings { /** Request client certificates for this hostname in China. Can only be set to true if this zone is china network enabled. */ @@ -2729,7 +2726,7 @@ export namespace Schemas { export type access_ui_read_only_toggle_reason = string; /** The unique API identifier for the user. */ export type access_uid = any; - /** The amount of time a user seat is inactive before it expires. When the user seat exceeds the set time of inactivity, the user is removed as an active seat and no longer counts against your Teams seat count. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: \`ns\`, \`us\` (or \`µs\`), \`ms\`, \`s\`, \`m\`, \`h\`. */ + /** The amount of time a user seat is inactive before it expires. When the user seat exceeds the set time of inactivity, the user is removed as an active seat and no longer counts against your Teams seat count. Must be in the format `300ms` or `2h45m`. Valid time units are: `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. */ export type access_user_seat_expiration_inactive_time = string; export interface access_users { access_seat?: Schemas.access_schemas$access_seat; @@ -2762,7 +2759,7 @@ export namespace Schemas { /** The application type. */ type?: string; }; - /** The amount of time that tokens issued for applications will be valid. Must be in the format \`30m\` or \`2h45m\`. Valid time units are: m, h. */ + /** The amount of time that tokens issued for applications will be valid. Must be in the format `30m` or `2h45m`. Valid time units are: m, h. */ export type access_warp_auth_session_duration = string; export type access_warp_props = Schemas.access_feature_app_props & { readonly domain?: any; @@ -2937,7 +2934,7 @@ export namespace Schemas { export type addressing_ipv4_cidrs = string[]; /** List of Cloudflare IPv6 CIDR addresses. */ export type addressing_ipv6_cidrs = string[]; - /** List IPv4 and IPv6 CIDRs, only populated if \`?networks=jdcloud\` is used. */ + /** List IPv4 and IPv6 CIDRs, only populated if `?networks=jdcloud` is used. */ export type addressing_jdcloud_cidrs = string[]; /** The type of the membership. */ export type addressing_kind = "zone" | "account"; @@ -3074,7 +3071,7 @@ export namespace Schemas { result?: ({} | null) | (string | null); }; export type api$shield_api$shield = Schemas.api$shield_operation; - /** * \`ML\` - Discovered operation was sourced using ML API Discovery * \`SessionIdentifier\` - Discovered operation was sourced using Session Identifier API Discovery */ + /** * `ML` - Discovered operation was sourced using ML API Discovery * `SessionIdentifier` - Discovered operation was sourced using Session Identifier API Discovery */ export type api$shield_api_discovery_origin = "ML" | "SessionIdentifier"; export interface api$shield_api_discovery_patch_multiple_request { } @@ -3085,15 +3082,15 @@ export namespace Schemas { } /** * State of operation in API Discovery - * * \`review\` - Operation is not saved into API Shield Endpoint Management - * * \`saved\` - Operation is saved into API Shield Endpoint Management - * * \`ignored\` - Operation is marked as ignored + * * `review` - Operation is not saved into API Shield Endpoint Management + * * `saved` - Operation is saved into API Shield Endpoint Management + * * `ignored` - Operation is marked as ignored */ export type api$shield_api_discovery_state = "review" | "saved" | "ignored"; /** * Mark state of operation in API Discovery - * * \`review\` - Mark operation as for review - * * \`ignored\` - Mark operation as ignored + * * `review` - Mark operation as for review + * * `ignored` - Mark operation as ignored */ export type api$shield_api_discovery_state_patch = "review" | "ignored"; /** The total number of auth-ids seen across this calculation. */ @@ -3179,10 +3176,10 @@ export namespace Schemas { /** * When set, this applies a mitigation action to this operation * - * - \`log\` log request when request does not conform to schema for this operation - * - \`block\` deny access to the site when request does not conform to schema for this operation - * - \`none\` will skip mitigation for this operation - * - \`null\` indicates that no operation level mitigation is in place, see Zone Level Schema Validation Settings for mitigation action that will be applied + * - `log` log request when request does not conform to schema for this operation + * - `block` deny access to the site when request does not conform to schema for this operation + * - `none` will skip mitigation for this operation + * - `null` indicates that no operation level mitigation is in place, see Zone Level Schema Validation Settings for mitigation action that will be applied */ export type api$shield_operation_mitigation_action = string | null; export interface api$shield_operation_schema_validation_settings { @@ -3305,22 +3302,22 @@ export namespace Schemas { * * Mitigation actions are as follows: * - * * \`log\` - log request when request does not conform to schema - * * \`block\` - deny access to the site when request does not conform to schema + * * `log` - log request when request does not conform to schema + * * `block` - deny access to the site when request does not conform to schema * - * A special value of of \`none\` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation + * A special value of of `none` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation */ export type api$shield_validation_default_mitigation_action = "none" | "log" | "block"; /** * The default mitigation action used when there is no mitigation action defined on the operation * Mitigation actions are as follows: * - * * \`log\` - log request when request does not conform to schema - * * \`block\` - deny access to the site when request does not conform to schema + * * `log` - log request when request does not conform to schema + * * `block` - deny access to the site when request does not conform to schema * - * A special value of of \`none\` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation + * A special value of of `none` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation * - * \`null\` will have no effect. + * `null` will have no effect. */ export type api$shield_validation_default_mitigation_action_patch = string | null; /** Flag whether schema is enabled for validation. */ @@ -3328,27 +3325,27 @@ export namespace Schemas { /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request - * - \`null\` indicates that no override is in place + * - `none` will skip running schema validation entirely for the request + * - `null` indicates that no override is in place */ export type api$shield_validation_override_mitigation_action = string | null; /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request + * - `none` will skip running schema validation entirely for the request * - * To clear any override, use the special value \`disable_override\` + * To clear any override, use the special value `disable_override` * - * \`null\` will have no effect. + * `null` will have no effect. */ export type api$shield_validation_override_mitigation_action_patch = string | null; /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request - * - \`null\` indicates that no override is in place + * - `none` will skip running schema validation entirely for the request + * - `null` indicates that no override is in place * - * To clear any override, use the special value \`disable_override\` or \`null\` + * To clear any override, use the special value `disable_override` or `null` */ export type api$shield_validation_override_mitigation_action_write = string | null; export interface api$shield_zone_schema_validation_settings { @@ -4064,7 +4061,7 @@ export namespace Schemas { /** Total number of requests served from the origin. */ uncached?: number; } - /** When \`?sample=\` is provided, a sample of matching records is returned. If \`sample=0.1\` then 10% of records will be returned. Sampling is random: repeated calls will not only return different records, but likely will also vary slightly in number of returned records. When \`?count=\` is also specified, \`count\` is applied to the number of returned records, not the sampled records. So, with \`sample=0.05\` and \`count=7\`, when there is a total of 100 records available, approximately five will be returned. When there are 1000 records, seven will be returned. When there are 10,000 records, seven will be returned. */ + /** When `?sample=` is provided, a sample of matching records is returned. If `sample=0.1` then 10% of records will be returned. Sampling is random: repeated calls will not only return different records, but likely will also vary slightly in number of returned records. When `?count=` is also specified, `count` is applied to the number of returned records, not the sampled records. So, with `sample=0.05` and `count=7`, when there is a total of 100 records available, approximately five will be returned. When there are 1000 records, seven will be returned. When there are 10,000 records, seven will be returned. */ export type dFBpZBFx_sample = number; export type dFBpZBFx_since = string | number; /** Breakdown of totals for threats. */ @@ -4094,7 +4091,7 @@ export namespace Schemas { threats?: Schemas.dFBpZBFx_threats; until?: Schemas.dFBpZBFx_until; }[]; - /** By default, timestamps in responses are returned as Unix nanosecond integers. The \`?timestamps=\` argument can be set to change the format in which response timestamps are returned. Possible values are: \`unix\`, \`unixnano\`, \`rfc3339\`. Note that \`unix\` and \`unixnano\` return timestamps as integers; \`rfc3339\` returns timestamps as strings. */ + /** By default, timestamps in responses are returned as Unix nanosecond integers. The `?timestamps=` argument can be set to change the format in which response timestamps are returned. Possible values are: `unix`, `unixnano`, `rfc3339`. Note that `unix` and `unixnano` return timestamps as integers; `rfc3339` returns timestamps as strings. */ export type dFBpZBFx_timestamps = "unix" | "unixnano" | "rfc3339"; /** Breakdown of totals by data type. */ export interface dFBpZBFx_totals { @@ -5311,7 +5308,7 @@ export namespace Schemas { }; /** Identifier */ export type dns$records_identifier = string; - /** Whether to match all search requirements or at least one (any). If set to \`all\`, acts like a logical AND between filters. If set to \`any\`, acts like a logical OR instead. Note that the interaction between tag filters is controlled by the \`tag-match\` parameter instead. */ + /** Whether to match all search requirements or at least one (any). If set to `all`, acts like a logical AND between filters. If set to `any`, acts like a logical OR instead. Note that the interaction between tag filters is controlled by the `tag-match` parameter instead. */ export type dns$records_match = "any" | "all"; export type dns$records_messages = { code: number; @@ -5339,9 +5336,9 @@ export namespace Schemas { /** Total results available without any search parameters */ total_count?: number; } - /** Allows searching in multiple properties of a DNS record simultaneously. This parameter is intended for human users, not automation. Its exact behavior is intentionally left unspecified and is subject to change in the future. This parameter works independently of the \`match\` setting. For automated searches, please use the other available parameters. */ + /** Allows searching in multiple properties of a DNS record simultaneously. This parameter is intended for human users, not automation. Its exact behavior is intentionally left unspecified and is subject to change in the future. This parameter works independently of the `match` setting. For automated searches, please use the other available parameters. */ export type dns$records_search = string; - /** Whether to match all tag search requirements or at least one (any). If set to \`all\`, acts like a logical AND between tag filters. If set to \`any\`, acts like a logical OR instead. Note that the regular \`match\` parameter is still used to combine the resulting condition with other filters that aren't related to tags. */ + /** Whether to match all tag search requirements or at least one (any). If set to `all`, acts like a logical AND between tag filters. If set to `any`, acts like a logical OR instead. Note that the regular `match` parameter is still used to combine the resulting condition with other filters that aren't related to tags. */ export type dns$records_tag_match = "any" | "all"; /** Custom tags for the DNS record. This field has no effect on DNS responses. */ export type dns$records_tags = string[]; @@ -5744,7 +5741,7 @@ export namespace Schemas { success: boolean; } /** - * If bot_fight_mode is set to \`true\`, Cloudflare issues computationally + * If bot_fight_mode is set to `true`, Cloudflare issues computationally * expensive challenges in response to malicious bots (ENT only). */ export type grwMffPV_bot_fight_mode = boolean; @@ -5759,7 +5756,7 @@ export namespace Schemas { /** Identifier */ export type grwMffPV_identifier = string; /** - * If \`invalidate_immediately\` is set to \`false\`, the previous secret will + * If `invalidate_immediately` is set to `false`, the previous secret will * remain valid for two hours. Otherwise, the secret is immediately * invalidated, and requests using it will be rejected. */ @@ -6110,7 +6107,7 @@ export namespace Schemas { export interface images_image_patch_request { /** User modifiable key-value store. Can be used for keeping references to another system of record for managing images. No change if not specified. */ metadata?: {}; - /** Indicates whether the image can be accessed using only its UID. If set to \`true\`, a signed token needs to be generated with a signing key to view the image. Returns a new UID on a change. No change if not specified. */ + /** Indicates whether the image can be accessed using only its UID. If set to `true`, a signed token needs to be generated with a signing key to view the image. Returns a new UID on a change. No change if not specified. */ requireSignedURLs?: boolean; } /** Indicates whether the image can be a accessed only using it's UID. If set to true, a signed token needs to be generated with a signing key to view the image. */ @@ -6303,7 +6300,7 @@ export namespace Schemas { /** Identifier */ export type intel_identifier = string; export type intel_inherited_content_categories = Schemas.intel_categories_with_super_category_ids_example_empty; - /** Domain from which \`inherited_content_categories\` and \`inherited_risk_types\` are inherited, if applicable. */ + /** Domain from which `inherited_content_categories` and `inherited_risk_types` are inherited, if applicable. */ export type intel_inherited_from = string; export type intel_inherited_risk_types = Schemas.intel_categories_with_super_category_ids_example_empty; export type intel_ip = Schemas.intel_ipv4 | Schemas.intel_ipv6; @@ -6324,13 +6321,13 @@ export namespace Schemas { /** Content category IDs to remove. */ content_removes?: any; indicator_type?: "domain" | "ipv4" | "ipv6" | "url"; - /** Provide only if indicator_type is \`ipv4\` or \`ipv6\`. */ + /** Provide only if indicator_type is `ipv4` or `ipv6`. */ ip?: any; /** Security category IDs to add. */ security_adds?: any; /** Security category IDs to remove. */ security_removes?: any; - /** Provide only if indicator_type is \`domain\` or \`url\`. Example if indicator_type is \`domain\`: \`example.com\`. Example if indicator_type is \`url\`: \`https://example.com/news/\`. */ + /** Provide only if indicator_type is `domain` or `url`. Example if indicator_type is `domain`: `example.com`. Example if indicator_type is `url`: `https://example.com/news/`. */ url?: string; } /** Current page within paginated list of results. */ @@ -6656,7 +6653,7 @@ export namespace Schemas { } /** Controls features that modify the routing of requests to pools and origins in response to dynamic conditions, such as during the interval between active health monitoring requests. For example, zero-downtime failover occurs immediately when an origin becomes unavailable due to HTTP 521, 522, or 523 response codes. If there is another healthy origin in the same pool, the request is retried once against this alternate origin. */ export interface legacy$jhs_adaptive_routing { - /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See \`session_affinity_attributes\` for control over when sessions are broken or reassigned. */ + /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See `session_affinity_attributes` for control over when sessions are broken or reassigned. */ failover_across_pools?: boolean; } /** Additional information related to the host name. */ @@ -6743,7 +6740,7 @@ export namespace Schemas { export type legacy$jhs_allow_all_methods = boolean; /** Allows all origins. */ export type legacy$jhs_allow_all_origins = boolean; - /** When set to \`true\`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ + /** When set to `true`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ export type legacy$jhs_allow_credentials = boolean; /** Do not validate the certificate when monitor use HTTPS. This parameter is currently only valid for HTTP and HTTPS monitors. */ export type legacy$jhs_allow_insecure = boolean; @@ -6906,7 +6903,7 @@ export namespace Schemas { result?: Schemas.legacy$jhs_asn_components$schemas$asn; }; export interface legacy$jhs_asn_configuration { - /** The configuration target. You must set the target to \`asn\` when specifying an Autonomous System Number (ASN) in the rule. */ + /** The configuration target. You must set the target to `asn` when specifying an Autonomous System Number (ASN) in the rule. */ target?: "asn"; /** The AS number to match. */ value?: string; @@ -6932,7 +6929,7 @@ export namespace Schemas { export type legacy$jhs_auth_id_tokens = number; /** The amount of time in minutes to reconnect after having been disabled. */ export type legacy$jhs_auto_connect = number; - /** When set to \`true\`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ + /** When set to `true`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ export type legacy$jhs_auto_redirect_to_identity = boolean; /** * Matches an Azure group. @@ -7216,18 +7213,18 @@ export namespace Schemas { /** IP Prefix in Classless Inter-Domain Routing format. */ export type legacy$jhs_cidr = string; export interface legacy$jhs_cidr_configuration { - /** The configuration target. You must set the target to \`ip_range\` when specifying an IP address range in the rule. */ + /** The configuration target. You must set the target to `ip_range` when specifying an IP address range in the rule. */ target?: "ip_range"; - /** The IP address range to match. You can only use prefix lengths \`/16\` and \`/24\` for IPv4 ranges, and prefix lengths \`/32\`, \`/48\`, and \`/64\` for IPv6 ranges. */ + /** The IP address range to match. You can only use prefix lengths `/16` and `/24` for IPv4 ranges, and prefix lengths `/32`, `/48`, and `/64` for IPv6 ranges. */ value?: string; } /** List of IPv4/IPv6 CIDR addresses. */ export type legacy$jhs_cidr_list = string[]; /** City. */ export type legacy$jhs_city = string; - /** The Client ID for the service token. Access will check for this value in the \`CF-Access-Client-ID\` request header. */ + /** The Client ID for the service token. Access will check for this value in the `CF-Access-Client-ID` request header. */ export type legacy$jhs_client_id = string; - /** The Client Secret for the service token. Access will check for this value in the \`CF-Access-Client-Secret\` request header. */ + /** The Client Secret for the service token. Access will check for this value in the `CF-Access-Client-Secret` request header. */ export type legacy$jhs_client_secret = string; /** Whether or not to add Cloudflare Branding for the order. This will add sni.cloudflaressl.com as the Common Name if set true. */ export type legacy$jhs_cloudflare_branding = boolean; @@ -7281,7 +7278,7 @@ export namespace Schemas { } /** The list of add-ons subscribed to. */ export type legacy$jhs_component_values = Schemas.legacy$jhs_component_value[]; - /** The action to apply to a matched request. The \`log\` action is only available on an Enterprise plan. */ + /** The action to apply to a matched request. The `log` action is only available on an Enterprise plan. */ export type legacy$jhs_components$schemas$action = "block" | "challenge" | "js_challenge" | "managed_challenge" | "allow" | "log" | "bypass"; export type legacy$jhs_components$schemas$asn = number; export interface legacy$jhs_components$schemas$base { @@ -7329,9 +7326,9 @@ export namespace Schemas { } /** The configuration object for the current rule. */ export interface legacy$jhs_components$schemas$configuration { - /** The configuration target for this rule. You must set the target to \`ua\` for User Agent Blocking rules. */ + /** The configuration target for this rule. You must set the target to `ua` for User Agent Blocking rules. */ target?: string; - /** The exact user agent string to match. This value will be compared to the received \`User-Agent\` HTTP header value. */ + /** The exact user agent string to match. This value will be compared to the received `User-Agent` HTTP header value. */ value?: string; } /** Shows time of creation. */ @@ -7365,7 +7362,7 @@ export namespace Schemas { export type legacy$jhs_components$schemas$kind = "zone" | "account"; /** The wirefilter expression to match devices. */ export type legacy$jhs_components$schemas$match = string; - /** The state of the rules contained in the rule group. When \`on\`, the rules in the group are configurable/usable. */ + /** The state of the rules contained in the rule group. When `on`, the rules in the group are configurable/usable. */ export type legacy$jhs_components$schemas$mode = "on" | "off"; /** The timestamp of when the rule was last modified. */ export type legacy$jhs_components$schemas$modified_on = Date; @@ -7583,7 +7580,7 @@ export namespace Schemas { }; /** Type of content list entry to block. */ export type legacy$jhs_content_list_entry_type = "cid" | "content_path"; - /** The content type of the body. Must be one of the following: \`text/plain\`, \`text/xml\`, or \`application/json\`. */ + /** The content type of the body. Must be one of the following: `text/plain`, `text/xml`, or `application/json`. */ export type legacy$jhs_content_type = string; export interface legacy$jhs_cors_headers { allow_all_headers?: Schemas.legacy$jhs_allow_all_headers; @@ -7598,7 +7595,7 @@ export namespace Schemas { /** The country in which the user lives. */ export type legacy$jhs_country = string | null; export interface legacy$jhs_country_configuration { - /** The configuration target. You must set the target to \`country\` when specifying a country code in the rule. */ + /** The configuration target. You must set the target to `country` when specifying a country code in the rule. */ target?: "country"; /** The two-letter ISO-3166-1 alpha-2 code to match. For more information, refer to [IP Access rules: Parameters](https://developers.cloudflare.com/waf/tools/ip-access-rules/parameters/#country). */ value?: string; @@ -7834,7 +7831,7 @@ export namespace Schemas { export type legacy$jhs_description = string; /** A string to search for in the description of existing rules. */ export type legacy$jhs_description_search = string; - /** The mode that defines how rules within the package are evaluated during the course of a request. When a package uses anomaly detection mode (\`anomaly\` value), each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined in the WAF package, the action configured in the package will be performed. Traditional detection mode (\`traditional\` value) will decide the action to take when it is triggered by the request. If multiple rules are triggered, the action providing the highest protection will be applied (for example, a 'block' action will win over a 'challenge' action). */ + /** The mode that defines how rules within the package are evaluated during the course of a request. When a package uses anomaly detection mode (`anomaly` value), each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined in the WAF package, the action configured in the package will be performed. Traditional detection mode (`traditional` value) will decide the action to take when it is triggered by the request. If multiple rules are triggered, the action providing the highest protection will be applied (for example, a 'block' action will win over a 'challenge' action). */ export type legacy$jhs_detection_mode = "anomaly" | "traditional"; export interface legacy$jhs_device$managed$networks { config?: Schemas.legacy$jhs_schemas$config_response; @@ -8104,7 +8101,7 @@ export namespace Schemas { export interface legacy$jhs_egs$pagination { /** The page number of paginated results. */ page?: number; - /** The maximum number of results per page. You can only set the value to \`1\` or to a multiple of 5 such as \`5\`, \`10\`, \`15\`, or \`20\`. */ + /** The maximum number of results per page. You can only set the value to `1` or to a multiple of 5 such as `5`, `10`, `15`, or `20`. */ per_page?: number; } export type legacy$jhs_either_profile_response = Schemas.legacy$jhs_api$response$single & { @@ -8343,7 +8340,7 @@ export namespace Schemas { export type legacy$jhs_group_components$schemas$identifier = string; /** The name of the rule group. */ export type legacy$jhs_group_components$schemas$name = string; - /** An object that allows you to enable or disable WAF rule groups for the current WAF override. Each key of this object must be the ID of a WAF rule group, and each value must be a valid WAF action (usually \`default\` or \`disable\`). When creating a new URI-based WAF override, you must provide a \`groups\` object or a \`rules\` object. */ + /** An object that allows you to enable or disable WAF rule groups for the current WAF override. Each key of this object must be the ID of a WAF rule group, and each value must be a valid WAF action (usually `default` or `disable`). When creating a new URI-based WAF override, you must provide a `groups` object or a `rules` object. */ export interface legacy$jhs_groups { } export type legacy$jhs_groups_components$schemas$id_response = Schemas.legacy$jhs_api$response$single & { @@ -8376,7 +8373,7 @@ export namespace Schemas { } /** The name of the response header to match. */ export type legacy$jhs_header_name = string; - /** The operator used when matching: \`eq\` means "equal" and \`ne\` means "not equal". */ + /** The operator used when matching: `eq` means "equal" and `ne` means "not equal". */ export type legacy$jhs_header_op = "eq" | "ne"; /** The value of the response header, which must match exactly. */ export type legacy$jhs_header_value = string; @@ -8537,7 +8534,7 @@ export namespace Schemas { risk_types?: any; } export interface legacy$jhs_ip_configuration { - /** The configuration target. You must set the target to \`ip\` when specifying an IP address in the rule. */ + /** The configuration target. You must set the target to `ip` when specifying an IP address in the rule. */ target?: "ip"; /** The IP address to match. This address will be compared to the IP address of incoming requests. */ value?: string; @@ -8612,12 +8609,12 @@ export namespace Schemas { export type legacy$jhs_ipv4 = string; export type legacy$jhs_ipv6 = string; export interface legacy$jhs_ipv6_configuration { - /** The configuration target. You must set the target to \`ip6\` when specifying an IPv6 address in the rule. */ + /** The configuration target. You must set the target to `ip6` when specifying an IPv6 address in the rule. */ target?: "ip6"; /** The IPv6 address to match. */ value?: string; } - /** If \`true\`, this virtual network is the default for the account. */ + /** If `true`, this virtual network is the default for the account. */ export type legacy$jhs_is_default_network = boolean; /** Lock all settings as Read-Only in the Dashboard, regardless of user permission. Updates may only be made via the API or Terraform for this account when enabled. */ export type legacy$jhs_is_ui_read_only = boolean; @@ -8810,20 +8807,20 @@ export namespace Schemas { /** Only the hash policy is supported for existing sessions (to avoid exponential decay). */ session_policy?: "hash"; } - /** Controls location-based steering for non-proxied requests. See \`steering_policy\` to learn how steering is affected. */ + /** Controls location-based steering for non-proxied requests. See `steering_policy` to learn how steering is affected. */ export interface legacy$jhs_location_strategy { /** * Determines the authoritative location when ECS is not preferred, does not exist in the request, or its GeoIP lookup is unsuccessful. - * - \`"pop"\`: Use the Cloudflare PoP location. - * - \`"resolver_ip"\`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. + * - `"pop"`: Use the Cloudflare PoP location. + * - `"resolver_ip"`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. */ mode?: "pop" | "resolver_ip"; /** * Whether the EDNS Client Subnet (ECS) GeoIP should be preferred as the authoritative location. - * - \`"always"\`: Always prefer ECS. - * - \`"never"\`: Never prefer ECS. - * - \`"proximity"\`: Prefer ECS only when \`steering_policy="proximity"\`. - * - \`"geo"\`: Prefer ECS only when \`steering_policy="geo"\`. + * - `"always"`: Always prefer ECS. + * - `"never"`: Never prefer ECS. + * - `"proximity"`: Prefer ECS only when `steering_policy="proximity"`. + * - `"geo"`: Prefer ECS only when `steering_policy="geo"`. */ prefer_ecs?: "always" | "never" | "proximity" | "geo"; } @@ -8902,7 +8899,7 @@ export namespace Schemas { } /** The HTTP method used to access the endpoint. */ export type legacy$jhs_method = "GET" | "POST" | "HEAD" | "OPTIONS" | "PUT" | "DELETE" | "CONNECT" | "PATCH" | "TRACE"; - /** The HTTP methods to match. You can specify a subset (for example, \`['POST','PUT']\`) or all methods (\`['_ALL_']\`). This field is optional when creating a rate limit. */ + /** The HTTP methods to match. You can specify a subset (for example, `['POST','PUT']`) or all methods (`['_ALL_']`). This field is optional when creating a rate limit. */ export type legacy$jhs_methods = ("GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "_ALL_")[]; /** Minimum RTT in ms. */ export type legacy$jhs_min_rtt_ms = number; @@ -8910,9 +8907,9 @@ export namespace Schemas { export type legacy$jhs_minimum_origins = number; /** The action to perform. */ export type legacy$jhs_mode = "simulate" | "ban" | "challenge" | "js_challenge" | "managed_challenge"; - /** When set to \`on\`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ + /** When set to `on`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ export type legacy$jhs_mode_allow_traditional = "on" | "off"; - /** When set to \`on\`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ + /** When set to `on`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ export type legacy$jhs_mode_anomaly = "on" | "off"; /** The action that the current WAF rule will perform when triggered. Applies to traditional (deny) WAF rules. */ export type legacy$jhs_mode_deny_traditional = "default" | "disable" | "simulate" | "block" | "challenge"; @@ -9150,7 +9147,7 @@ export namespace Schemas { export type legacy$jhs_package_components$schemas$identifier = string; /** The name of the WAF package. */ export type legacy$jhs_package_components$schemas$name = string; - /** When set to \`active\`, indicates that the WAF package will be applied to the zone. */ + /** When set to `active`, indicates that the WAF package will be applied to the zone. */ export type legacy$jhs_package_components$schemas$status = "active"; export interface legacy$jhs_package_definition { description: Schemas.legacy$jhs_package_components$schemas$description; @@ -9229,16 +9226,16 @@ export namespace Schemas { export type legacy$jhs_pattern = string; /** When true, indicates that the WAF package is currently paused. */ export type legacy$jhs_paused = boolean; - /** The maximum number of bytes to capture. This field only applies to \`full\` packet captures. */ + /** The maximum number of bytes to capture. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_byte_limit = number; export type legacy$jhs_pcaps_collection_response = Schemas.legacy$jhs_api$response$collection & { result?: (Schemas.legacy$jhs_pcaps_response_simple | Schemas.legacy$jhs_pcaps_response_full)[]; }; - /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to \`full\` packet captures. */ + /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_colo_name = string; - /** The full URI for the bucket. This field only applies to \`full\` packet captures. */ + /** The full URI for the bucket. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_destination_conf = string; - /** An error message that describes why the packet capture failed. This field only applies to \`full\` packet captures. */ + /** An error message that describes why the packet capture failed. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_error_message = string; /** The packet capture filter. When this field is empty, all packets are captured. */ export interface legacy$jhs_pcaps_filter_v1 { @@ -9308,7 +9305,7 @@ export namespace Schemas { export type legacy$jhs_pcaps_system = "magic-transit"; /** The packet capture duration in seconds. */ export type legacy$jhs_pcaps_time_limit = number; - /** The type of packet capture. \`Simple\` captures sampled packets, and \`full\` captures entire payloads and non-sampled packets. */ + /** The type of packet capture. `Simple` captures sampled packets, and `full` captures entire payloads and non-sampled packets. */ export type legacy$jhs_pcaps_type = "simple" | "full"; /** The time in seconds (an integer value) to count matching traffic. If the count exceeds the configured threshold within this period, Cloudflare will perform the configured action. */ export type legacy$jhs_period = number; @@ -9551,7 +9548,7 @@ export namespace Schemas { export type legacy$jhs_profiles_components$schemas$response_collection = Schemas.legacy$jhs_api$response$collection & { result?: Schemas.legacy$jhs_profiles[]; }; - /** The port configuration at Cloudflare’s edge. May specify a single port, for example \`"tcp/1000"\`, or a range of ports, for example \`"tcp/1000-2000"\`. */ + /** The port configuration at Cloudflare’s edge. May specify a single port, for example `"tcp/1000"`, or a range of ports, for example `"tcp/1000-2000"`. */ export type legacy$jhs_protocol = string; /** Whether the hostname should be gray clouded (false) or orange clouded (true). */ export type legacy$jhs_proxied = boolean; @@ -9883,7 +9880,7 @@ export namespace Schemas { export type legacy$jhs_rule_single_response = Schemas.legacy$jhs_api$response$single & { result?: Schemas.legacy$jhs_rule; }; - /** An object that allows you to override the action of specific WAF rules. Each key of this object must be the ID of a WAF rule, and each value must be a valid WAF action. Unless you are disabling a rule, ensure that you also enable the rule group that this WAF rule belongs to. When creating a new URI-based WAF override, you must provide a \`groups\` object or a \`rules\` object. */ + /** An object that allows you to override the action of specific WAF rules. Each key of this object must be the ID of a WAF rule, and each value must be a valid WAF action. Unless you are disabling a rule, ensure that you also enable the rule group that this WAF rule belongs to. When creating a new URI-based WAF override, you must provide a `groups` object or a `rules` object. */ export interface legacy$jhs_rules { } /** The action to perform when the rule matches. */ @@ -9994,7 +9991,7 @@ export namespace Schemas { attribute_value: string; }; } - /** Polling frequency for the WARP client posture check. Default: \`5m\` (poll every five minutes). Minimum: \`1m\`. */ + /** Polling frequency for the WARP client posture check. Default: `5m` (poll every five minutes). Minimum: `1m`. */ export type legacy$jhs_schedule = string; export type legacy$jhs_schema_response_discovery = Schemas.legacy$jhs_default_response & { result?: { @@ -10073,9 +10070,9 @@ export namespace Schemas { /** The uploaded root CA certificate. */ export type legacy$jhs_schemas$certificates = string; export interface legacy$jhs_schemas$cidr_configuration { - /** The configuration target. You must set the target to \`ip_range\` when specifying an IP address range in the Zone Lockdown rule. */ + /** The configuration target. You must set the target to `ip_range` when specifying an IP address range in the Zone Lockdown rule. */ target?: "ip_range"; - /** The IP address range to match. You can only use prefix lengths \`/16\` and \`/24\`. */ + /** The IP address range to match. You can only use prefix lengths `/16` and `/24`. */ value?: string; } export type legacy$jhs_schemas$collection_invite_response = Schemas.legacy$jhs_api$response$collection & { @@ -10168,11 +10165,11 @@ export namespace Schemas { /** The target to search in existing rules. */ "configuration.target"?: "ip" | "ip_range" | "asn" | "country"; /** - * The target value to search for in existing rules: an IP address, an IP address range, or a country code, depending on the provided \`configuration.target\`. + * The target value to search for in existing rules: an IP address, an IP address range, or a country code, depending on the provided `configuration.target`. * Notes: You can search for a single IPv4 address, an IP address range with a subnet of '/16' or '/24', or a two-letter ISO-3166-1 alpha-2 country code. */ "configuration.value"?: string; - /** When set to \`all\`, all the search requirements must match. When set to \`any\`, only one of the search requirements has to match. */ + /** When set to `all`, all the search requirements must match. When set to `any`, only one of the search requirements has to match. */ match?: "any" | "all"; mode?: Schemas.legacy$jhs_schemas$mode; /** @@ -10219,7 +10216,7 @@ export namespace Schemas { /** The IP address of the authenticating user. */ export type legacy$jhs_schemas$ip = string; export interface legacy$jhs_schemas$ip_configuration { - /** The configuration target. You must set the target to \`ip\` when specifying an IP address in the Zone Lockdown rule. */ + /** The configuration target. You must set the target to `ip` when specifying an IP address in the Zone Lockdown rule. */ target?: "ip"; /** The IP address to match. This address will be compared to the IP address of incoming requests. */ value?: string; @@ -10245,7 +10242,7 @@ export namespace Schemas { export interface legacy$jhs_schemas$operation { /** The RFC 3339 timestamp of when the operation was completed. */ readonly completed?: string; - /** A message describing the error when the status is \`failed\`. */ + /** A message describing the error when the status is `failed`. */ readonly error?: string; id: Schemas.legacy$jhs_operation_id; /** The current status of the asynchronous operation. */ @@ -10395,7 +10392,7 @@ export namespace Schemas { export type legacy$jhs_schemas$updated_at = Date; /** This is the time the certificate was uploaded. */ export type legacy$jhs_schemas$uploaded_on = Date; - /** The URL pattern to match, composed of a host and a path such as \`example.org/path*\`. Normalization is applied before the pattern is matched. \`*\` wildcards are expanded to match applicable traffic. Query strings are not matched. Set the value to \`*\` to match all traffic to your zone. */ + /** The URL pattern to match, composed of a host and a path such as `example.org/path*`. Normalization is applied before the pattern is matched. `*` wildcards are expanded to match applicable traffic. Query strings are not matched. Set the value to `*` to match all traffic to your zone. */ export type legacy$jhs_schemas$url = string; /** The URLs to include in the rule definition. You can use wildcards. Each entered URL will be escaped before use, which means you can only use simple wildcard patterns. */ export type legacy$jhs_schemas$urls = string[]; @@ -10412,7 +10409,7 @@ export namespace Schemas { export interface legacy$jhs_schemas$zone { readonly name?: any; } - /** The HTTP schemes to match. You can specify one scheme (\`['HTTPS']\`), both schemes (\`['HTTP','HTTPS']\`), or all schemes (\`['_ALL_']\`). This field is optional. */ + /** The HTTP schemes to match. You can specify one scheme (`['HTTPS']`), both schemes (`['HTTP','HTTPS']`), or all schemes (`['_ALL_']`). This field is optional. */ export type legacy$jhs_schemes = string[]; export type legacy$jhs_script$response$collection = Schemas.legacy$jhs_api$response$common & { result?: { @@ -10426,7 +10423,7 @@ export namespace Schemas { export type legacy$jhs_script$response$single = Schemas.legacy$jhs_api$response$single & { result?: {}; }; - /** Optional secret that will be passed in the \`cf-webhook-auth\` header when dispatching a webhook notification. Secrets are not returned in any API response body. */ + /** Optional secret that will be passed in the `cf-webhook-auth` header when dispatching a webhook notification. Secrets are not returned in any API response body. */ export type legacy$jhs_secret = string; export interface legacy$jhs_self_hosted_props { allowed_idps?: Schemas.legacy$jhs_allowed_idps; @@ -10480,7 +10477,7 @@ export namespace Schemas { port?: number; } /** The session_affinity specifies the type of session affinity the load balancer should use unless specified as "none" or ""(default). The supported types are "cookie" and "ip_cookie". "cookie" - On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy then a new origin server is calculated and used. "ip_cookie" behaves the same as "cookie" except the initial origin selection is stable and based on the client’s ip address. */ - export type legacy$jhs_session_affinity = "none" | "cookie" | "ip_cookie" | "\\"\\""; + export type legacy$jhs_session_affinity = "none" | "cookie" | "ip_cookie" | "\"\""; /** Configures cookie attributes for session affinity cookie. */ export interface legacy$jhs_session_affinity_attributes { /** Configures the drain duration in seconds. This field is only used when session affinity is enabled on the load balancer. */ @@ -10494,7 +10491,7 @@ export namespace Schemas { } /** Time, in seconds, until this load balancer's session affinity cookie expires after being created. This parameter is ignored unless a supported session affinity policy is set. The current default of 23 hours will be used unless session_affinity_ttl is explicitly set. The accepted range of values is between [1800, 604800]. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. */ export type legacy$jhs_session_affinity_ttl = number; - /** The amount of time that tokens issued for this application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for this application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type legacy$jhs_session_duration = string; /** The type of hash used for the certificate. */ export type legacy$jhs_signature = string; @@ -10522,7 +10519,7 @@ export namespace Schemas { }; /** Enables automatic authentication through cloudflared. */ export type legacy$jhs_skip_interstitial = boolean; - /** The sort order for the result set; sort fields must be included in \`metrics\` or \`dimensions\`. */ + /** The sort order for the result set; sort fields must be included in `metrics` or `dimensions`. */ export type legacy$jhs_sort = {}[]; export interface legacy$jhs_split_tunnel { /** The address in CIDR format to exclude from the tunnel. If address is present, host must not be present. */ @@ -10625,14 +10622,14 @@ export namespace Schemas { export type legacy$jhs_std_dev_rtt_ms = number; /** * Steering Policy for this load balancer. - * - \`"off"\`: Use \`default_pools\`. - * - \`"geo"\`: Use \`region_pools\`/\`country_pools\`/\`pop_pools\`. For non-proxied requests, the country for \`country_pools\` is determined by \`location_strategy\`. - * - \`"random"\`: Select a pool randomly. - * - \`"dynamic_latency"\`: Use round trip time to select the closest pool in default_pools (requires pool health checks). - * - \`"proximity"\`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by \`location_strategy\` for non-proxied requests. - * - \`""\`: Will map to \`"geo"\` if you use \`region_pools\`/\`country_pools\`/\`pop_pools\` otherwise \`"off"\`. - */ - export type legacy$jhs_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "\\"\\""; + * - `"off"`: Use `default_pools`. + * - `"geo"`: Use `region_pools`/`country_pools`/`pop_pools`. For non-proxied requests, the country for `country_pools` is determined by `location_strategy`. + * - `"random"`: Select a pool randomly. + * - `"dynamic_latency"`: Use round trip time to select the closest pool in default_pools (requires pool health checks). + * - `"proximity"`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by `location_strategy` for non-proxied requests. + * - `""`: Will map to `"geo"` if you use `region_pools`/`country_pools`/`pop_pools` otherwise `"off"`. + */ + export type legacy$jhs_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "\"\""; /** STIX 2.1 identifier: https://docs.oasis-open.org/cti/stix/v2.1/cs02/stix-v2.1-cs02.html#_64yvzeku5a5c */ export type legacy$jhs_stix_identifier = string; export type legacy$jhs_subdomain$response = Schemas.legacy$jhs_api$response$common & { @@ -10693,7 +10690,7 @@ export namespace Schemas { /** The list of key/value pairs where the key is a threat category and the value is the number of requests. */ type?: {}; } - /** The threshold that will trigger the configured mitigation action. Configure this value along with the \`period\` property to establish a threshold per period. */ + /** The threshold that will trigger the configured mitigation action. Configure this value along with the `period` property to establish a threshold per period. */ export type legacy$jhs_threshold = number; export interface legacy$jhs_thresholds { thresholds?: { @@ -10797,7 +10794,7 @@ export namespace Schemas { default_mode?: Schemas.legacy$jhs_default_mode; mode?: Schemas.legacy$jhs_mode_deny_traditional; }; - /** Determines how data travels from the edge to your origin. When set to "direct", Spectrum will send traffic directly to your origin, and the application's type is derived from the \`protocol\`. When set to "http" or "https", Spectrum will apply Cloudflare's HTTP/HTTPS features as it sends traffic to your origin, and the application type matches this property exactly. */ + /** Determines how data travels from the edge to your origin. When set to "direct", Spectrum will send traffic directly to your origin, and the application's type is derived from the `protocol`. When set to "http" or "https", Spectrum will apply Cloudflare's HTTP/HTTPS features as it sends traffic to your origin, and the application type matches this property exactly. */ export type legacy$jhs_traffic_type = "direct" | "http" | "https"; /** Statuses for domain transfers into Cloudflare Registrar. */ export interface legacy$jhs_transfer_in { @@ -10951,7 +10948,7 @@ export namespace Schemas { comment: Schemas.legacy$jhs_schemas$comment; /** Timestamp of when the virtual network was created. */ created_at: any; - /** Timestamp of when the virtual network was deleted. If \`null\`, the virtual network has not been deleted. */ + /** Timestamp of when the virtual network was deleted. If `null`, the virtual network has not been deleted. */ deleted_at?: any; id: Schemas.legacy$jhs_vnet_id; is_default_network: Schemas.legacy$jhs_is_default_network; @@ -11196,7 +11193,7 @@ export namespace Schemas { export interface lists_operation { /** The RFC 3339 timestamp of when the operation was completed. */ readonly completed?: string; - /** A message describing the error when the status is \`failed\`. */ + /** A message describing the error when the status is `failed`. */ readonly error?: string; id: Schemas.lists_operation_id; /** The current status of the asynchronous operation. */ @@ -11208,7 +11205,7 @@ export namespace Schemas { export type load$balancing_Host = string[]; /** Controls features that modify the routing of requests to pools and origins in response to dynamic conditions, such as during the interval between active health monitoring requests. For example, zero-downtime failover occurs immediately when an origin becomes unavailable due to HTTP 521, 522, or 523 response codes. If there is another healthy origin in the same pool, the request is retried once against this alternate origin. */ export interface load$balancing_adaptive_routing { - /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See \`session_affinity_attributes\` for control over when sessions are broken or reassigned. */ + /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See `session_affinity_attributes` for control over when sessions are broken or reassigned. */ failover_across_pools?: boolean; } /** The IP address (IPv4 or IPv6) of the origin, or its publicly addressable hostname. Hostnames entered here should resolve directly to the origin, and not be a hostname proxied by Cloudflare. To set an internal/reserved address, virtual_network_id must also be set. */ @@ -11352,20 +11349,20 @@ export namespace Schemas { /** Only the hash policy is supported for existing sessions (to avoid exponential decay). */ session_policy?: "hash"; } - /** Controls location-based steering for non-proxied requests. See \`steering_policy\` to learn how steering is affected. */ + /** Controls location-based steering for non-proxied requests. See `steering_policy` to learn how steering is affected. */ export interface load$balancing_location_strategy { /** * Determines the authoritative location when ECS is not preferred, does not exist in the request, or its GeoIP lookup is unsuccessful. - * - \`"pop"\`: Use the Cloudflare PoP location. - * - \`"resolver_ip"\`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. + * - `"pop"`: Use the Cloudflare PoP location. + * - `"resolver_ip"`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. */ mode?: "pop" | "resolver_ip"; /** * Whether the EDNS Client Subnet (ECS) GeoIP should be preferred as the authoritative location. - * - \`"always"\`: Always prefer ECS. - * - \`"never"\`: Never prefer ECS. - * - \`"proximity"\`: Prefer ECS only when \`steering_policy="proximity"\`. - * - \`"geo"\`: Prefer ECS only when \`steering_policy="geo"\`. + * - `"always"`: Always prefer ECS. + * - `"never"`: Never prefer ECS. + * - `"proximity"`: Prefer ECS only when `steering_policy="proximity"`. + * - `"geo"`: Prefer ECS only when `steering_policy="geo"`. */ prefer_ecs?: "always" | "never" | "proximity" | "geo"; } @@ -11441,17 +11438,17 @@ export namespace Schemas { export interface load$balancing_origin_steering { /** * The type of origin steering policy to use. - * - \`"random"\`: Select an origin randomly. - * - \`"hash"\`: Select an origin by computing a hash over the CF-Connecting-IP address. - * - \`"least_outstanding_requests"\`: Select an origin by taking into consideration origin weights, as well as each origin's number of outstanding requests. Origins with more pending requests are weighted proportionately less relative to others. - * - \`"least_connections"\`: Select an origin by taking into consideration origin weights, as well as each origin's number of open connections. Origins with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. + * - `"random"`: Select an origin randomly. + * - `"hash"`: Select an origin by computing a hash over the CF-Connecting-IP address. + * - `"least_outstanding_requests"`: Select an origin by taking into consideration origin weights, as well as each origin's number of outstanding requests. Origins with more pending requests are weighted proportionately less relative to others. + * - `"least_connections"`: Select an origin by taking into consideration origin weights, as well as each origin's number of open connections. Origins with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. */ policy?: "random" | "hash" | "least_outstanding_requests" | "least_connections"; } /** The list of origins within this pool. Traffic directed at this pool is balanced across all currently healthy origins, provided the pool itself is healthy. */ export type load$balancing_origins = Schemas.load$balancing_origin[]; - /** The email address to send health status notifications to. This field is now deprecated in favor of Cloudflare Notifications for Load Balancing, so only resetting this field with an empty string \`""\` is accepted. */ - export type load$balancing_patch_pools_notification_email = "\\"\\""; + /** The email address to send health status notifications to. This field is now deprecated in favor of Cloudflare Notifications for Load Balancing, so only resetting this field with an empty string `""` is accepted. */ + export type load$balancing_patch_pools_notification_email = "\"\""; /** The endpoint path you want to conduct a health check against. This parameter is only valid for HTTP and HTTPS monitors. */ export type load$balancing_path = string; export interface load$balancing_pool { @@ -11500,9 +11497,9 @@ export namespace Schemas { export type load$balancing_proxied = boolean; /** * Configures pool weights. - * - \`steering_policy="random"\`: A random pool is selected with probability proportional to pool weights. - * - \`steering_policy="least_outstanding_requests"\`: Use pool weights to scale each pool's outstanding requests. - * - \`steering_policy="least_connections"\`: Use pool weights to scale each pool's open connections. + * - `steering_policy="random"`: A random pool is selected with probability proportional to pool weights. + * - `steering_policy="least_outstanding_requests"`: Use pool weights to scale each pool's outstanding requests. + * - `steering_policy="least_connections"`: Use pool weights to scale each pool's open connections. */ export interface load$balancing_random_steering { /** The default weight for pools in the load balancer that are not specified in the pool_weights map. */ @@ -11639,22 +11636,22 @@ export namespace Schemas { result?: Schemas.load$balancing_search; } /** - * Specifies the type of session affinity the load balancer should use unless specified as \`"none"\` or "" (default). The supported types are: - * - \`"cookie"\`: On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy, then a new origin server is calculated and used. - * - \`"ip_cookie"\`: Behaves the same as \`"cookie"\` except the initial origin selection is stable and based on the client's ip address. - * - \`"header"\`: On the first request to a proxied load balancer, a session key based on the configured HTTP headers (see \`session_affinity_attributes.headers\`) is generated, encoding the request headers used for storing in the load balancer session state which origin the request will be forwarded to. Subsequent requests to the load balancer with the same headers will be sent to the same origin server, for the duration of the session and as long as the origin server remains healthy. If the session has been idle for the duration of \`session_affinity_ttl\` seconds or the origin server is unhealthy, then a new origin server is calculated and used. See \`headers\` in \`session_affinity_attributes\` for additional required configuration. + * Specifies the type of session affinity the load balancer should use unless specified as `"none"` or "" (default). The supported types are: + * - `"cookie"`: On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy, then a new origin server is calculated and used. + * - `"ip_cookie"`: Behaves the same as `"cookie"` except the initial origin selection is stable and based on the client's ip address. + * - `"header"`: On the first request to a proxied load balancer, a session key based on the configured HTTP headers (see `session_affinity_attributes.headers`) is generated, encoding the request headers used for storing in the load balancer session state which origin the request will be forwarded to. Subsequent requests to the load balancer with the same headers will be sent to the same origin server, for the duration of the session and as long as the origin server remains healthy. If the session has been idle for the duration of `session_affinity_ttl` seconds or the origin server is unhealthy, then a new origin server is calculated and used. See `headers` in `session_affinity_attributes` for additional required configuration. */ - export type load$balancing_session_affinity = "none" | "cookie" | "ip_cookie" | "header" | "\\"\\""; + export type load$balancing_session_affinity = "none" | "cookie" | "ip_cookie" | "header" | "\"\""; /** Configures attributes for session affinity. */ export interface load$balancing_session_affinity_attributes { /** Configures the drain duration in seconds. This field is only used when session affinity is enabled on the load balancer. */ drain_duration?: number; - /** Configures the names of HTTP headers to base session affinity on when header \`session_affinity\` is enabled. At least one HTTP header name must be provided. To specify the exact cookies to be used, include an item in the following format: \`"cookie:,"\` (example) where everything after the colon is a comma-separated list of cookie names. Providing only \`"cookie"\` will result in all cookies being used. The default max number of HTTP header names that can be provided depends on your plan: 5 for Enterprise, 1 for all other plans. */ + /** Configures the names of HTTP headers to base session affinity on when header `session_affinity` is enabled. At least one HTTP header name must be provided. To specify the exact cookies to be used, include an item in the following format: `"cookie:,"` (example) where everything after the colon is a comma-separated list of cookie names. Providing only `"cookie"` will result in all cookies being used. The default max number of HTTP header names that can be provided depends on your plan: 5 for Enterprise, 1 for all other plans. */ headers?: string[]; /** - * When header \`session_affinity\` is enabled, this option can be used to specify how HTTP headers on load balancing requests will be used. The supported values are: - * - \`"true"\`: Load balancing requests must contain *all* of the HTTP headers specified by the \`headers\` session affinity attribute, otherwise sessions aren't created. - * - \`"false"\`: Load balancing requests must contain *at least one* of the HTTP headers specified by the \`headers\` session affinity attribute, otherwise sessions aren't created. + * When header `session_affinity` is enabled, this option can be used to specify how HTTP headers on load balancing requests will be used. The supported values are: + * - `"true"`: Load balancing requests must contain *all* of the HTTP headers specified by the `headers` session affinity attribute, otherwise sessions aren't created. + * - `"false"`: Load balancing requests must contain *at least one* of the HTTP headers specified by the `headers` session affinity attribute, otherwise sessions aren't created. */ require_all_headers?: boolean; /** Configures the SameSite attribute on session affinity cookie. Value "Auto" will be translated to "Lax" or "None" depending if Always Use HTTPS is enabled. Note: when using value "None", the secure attribute can not be set to "Never". */ @@ -11663,30 +11660,30 @@ export namespace Schemas { secure?: "Auto" | "Always" | "Never"; /** * Configures the zero-downtime failover between origins within a pool when session affinity is enabled. This feature is currently incompatible with Argo, Tiered Cache, and Bandwidth Alliance. The supported values are: - * - \`"none"\`: No failover takes place for sessions pinned to the origin (default). - * - \`"temporary"\`: Traffic will be sent to another other healthy origin until the originally pinned origin is available; note that this can potentially result in heavy origin flapping. - * - \`"sticky"\`: The session affinity cookie is updated and subsequent requests are sent to the new origin. Note: Zero-downtime failover with sticky sessions is currently not supported for session affinity by header. + * - `"none"`: No failover takes place for sessions pinned to the origin (default). + * - `"temporary"`: Traffic will be sent to another other healthy origin until the originally pinned origin is available; note that this can potentially result in heavy origin flapping. + * - `"sticky"`: The session affinity cookie is updated and subsequent requests are sent to the new origin. Note: Zero-downtime failover with sticky sessions is currently not supported for session affinity by header. */ zero_downtime_failover?: "none" | "temporary" | "sticky"; } /** - * Time, in seconds, until a client's session expires after being created. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. The accepted ranges per \`session_affinity\` policy are: - * - \`"cookie"\` / \`"ip_cookie"\`: The current default of 23 hours will be used unless explicitly set. The accepted range of values is between [1800, 604800]. - * - \`"header"\`: The current default of 1800 seconds will be used unless explicitly set. The accepted range of values is between [30, 3600]. Note: With session affinity by header, sessions only expire after they haven't been used for the number of seconds specified. + * Time, in seconds, until a client's session expires after being created. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. The accepted ranges per `session_affinity` policy are: + * - `"cookie"` / `"ip_cookie"`: The current default of 23 hours will be used unless explicitly set. The accepted range of values is between [1800, 604800]. + * - `"header"`: The current default of 1800 seconds will be used unless explicitly set. The accepted range of values is between [30, 3600]. Note: With session affinity by header, sessions only expire after they haven't been used for the number of seconds specified. */ export type load$balancing_session_affinity_ttl = number; /** * Steering Policy for this load balancer. - * - \`"off"\`: Use \`default_pools\`. - * - \`"geo"\`: Use \`region_pools\`/\`country_pools\`/\`pop_pools\`. For non-proxied requests, the country for \`country_pools\` is determined by \`location_strategy\`. - * - \`"random"\`: Select a pool randomly. - * - \`"dynamic_latency"\`: Use round trip time to select the closest pool in default_pools (requires pool health checks). - * - \`"proximity"\`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by \`location_strategy\` for non-proxied requests. - * - \`"least_outstanding_requests"\`: Select a pool by taking into consideration \`random_steering\` weights, as well as each pool's number of outstanding requests. Pools with more pending requests are weighted proportionately less relative to others. - * - \`"least_connections"\`: Select a pool by taking into consideration \`random_steering\` weights, as well as each pool's number of open connections. Pools with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. - * - \`""\`: Will map to \`"geo"\` if you use \`region_pools\`/\`country_pools\`/\`pop_pools\` otherwise \`"off"\`. - */ - export type load$balancing_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "least_outstanding_requests" | "least_connections" | "\\"\\""; + * - `"off"`: Use `default_pools`. + * - `"geo"`: Use `region_pools`/`country_pools`/`pop_pools`. For non-proxied requests, the country for `country_pools` is determined by `location_strategy`. + * - `"random"`: Select a pool randomly. + * - `"dynamic_latency"`: Use round trip time to select the closest pool in default_pools (requires pool health checks). + * - `"proximity"`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by `location_strategy` for non-proxied requests. + * - `"least_outstanding_requests"`: Select a pool by taking into consideration `random_steering` weights, as well as each pool's number of outstanding requests. Pools with more pending requests are weighted proportionately less relative to others. + * - `"least_connections"`: Select a pool by taking into consideration `random_steering` weights, as well as each pool's number of open connections. Pools with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. + * - `""`: Will map to `"geo"` if you use `region_pools`/`country_pools`/`pop_pools` otherwise `"off"`. + */ + export type load$balancing_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "least_outstanding_requests" | "least_connections" | "\"\""; /** Two-letter subdivision code followed in ISO 3166-2. */ export type load$balancing_subdivision_code_a2 = string; /** The timeout (in seconds) before marking the health check as failed. */ @@ -11702,8 +11699,8 @@ export namespace Schemas { export type load$balancing_virtual_network_id = string; /** * The weight of this origin relative to other origins in the pool. Based on the configured weight the total traffic is distributed among origins within the pool. - * - \`origin_steering.policy="least_outstanding_requests"\`: Use weight to scale the origin's outstanding requests. - * - \`origin_steering.policy="least_connections"\`: Use weight to scale the origin's open connections. + * - `origin_steering.policy="least_outstanding_requests"`: Use weight to scale the origin's outstanding requests. + * - `origin_steering.policy="least_connections"`: Use weight to scale the origin's open connections. */ export type load$balancing_weight = number; export type logcontrol_account_identifier = Schemas.logcontrol_identifier; @@ -11802,7 +11799,7 @@ export namespace Schemas { export type logpush_last_complete = (Date) | null; /** Records the last time the job failed. If not null, the job is currently failing. If null, the job has either never failed or has run successfully at least once since last failure. See also the error_message field. */ export type logpush_last_error = (Date) | null; - /** This field is deprecated. Use \`output_options\` instead. Configuration string. It specifies things like requested fields and timestamp formats. If migrating from the logpull api, copy the url (full url or just the query string) of your call here, and logpush will keep on making this call for you, setting start and end times appropriately. */ + /** This field is deprecated. Use `output_options` instead. Configuration string. It specifies things like requested fields and timestamp formats. If migrating from the logpull api, copy the url (full url or just the query string) of your call here, and logpush will keep on making this call for you, setting start and end times appropriately. */ export type logpush_logpull_options = string | null; export type logpush_logpush_field_response_collection = Schemas.logpush_api$response$common & { result?: {}; @@ -11832,19 +11829,19 @@ export namespace Schemas { }[]; /** Optional human readable job name. Not unique. Cloudflare suggests that you set this to a meaningful string, like the domain name, to make it easier to identify your job. */ export type logpush_name = string | null; - /** The structured replacement for \`logpull_options\`. When including this field, the \`logpull_option\` field will be ignored. */ + /** The structured replacement for `logpull_options`. When including this field, the `logpull_option` field will be ignored. */ export type logpush_output_options = { - /** If set to true, will cause all occurrences of \`\${\` in the generated files to be replaced with \`x{\`. */ + /** If set to true, will cause all occurrences of `${` in the generated files to be replaced with `x{`. */ "CVE-2021-4428"?: boolean | null; /** String to be prepended before each batch. */ batch_prefix?: string | null; /** String to be appended after each batch. */ batch_suffix?: string | null; - /** String to join fields. This field be ignored when \`record_template\` is set. */ + /** String to join fields. This field be ignored when `record_template` is set. */ field_delimiter?: string | null; /** List of field names to be included in the Logpush output. For the moment, there is no option to add all fields at once, so you must specify all the fields names you are interested in. */ field_names?: string[]; - /** Specifies the output type, such as \`ndjson\` or \`csv\`. This sets default values for the rest of the settings, depending on the chosen output type. Some formatting rules, like string quoting, are different between output types. */ + /** Specifies the output type, such as `ndjson` or `csv`. This sets default values for the rest of the settings, depending on the chosen output type. Some formatting rules, like string quoting, are different between output types. */ output_type?: "ndjson" | "csv"; /** String to be inserted in-between the records as separator. */ record_delimiter?: string | null; @@ -11852,11 +11849,11 @@ export namespace Schemas { record_prefix?: string | null; /** String to be appended after each record. */ record_suffix?: string | null; - /** String to use as template for each record instead of the default comma-separated list. All fields used in the template must be present in \`field_names\` as well, otherwise they will end up as null. Format as a Go \`text/template\` without any standard functions, like conditionals, loops, sub-templates, etc. */ + /** String to use as template for each record instead of the default comma-separated list. All fields used in the template must be present in `field_names` as well, otherwise they will end up as null. Format as a Go `text/template` without any standard functions, like conditionals, loops, sub-templates, etc. */ record_template?: string | null; - /** Floating number to specify sampling rate. Sampling is applied on top of filtering, and regardless of the current \`sample_interval\` of the data. */ + /** Floating number to specify sampling rate. Sampling is applied on top of filtering, and regardless of the current `sample_interval` of the data. */ sample_rate?: number | null; - /** String to specify the format for timestamps, such as \`unixnano\`, \`unix\`, or \`rfc3339\`. */ + /** String to specify the format for timestamps, such as `unixnano`, `unix`, or `rfc3339`. */ timestamp_format?: "unixnano" | "unix" | "rfc3339"; } | null; /** Ownership challenge token to prove destination ownership. */ @@ -11878,7 +11875,7 @@ export namespace Schemas { valid?: boolean; } | null; }; - /** When \`true\`, the tunnel can use a null-cipher (\`ENCR_NULL\`) in the ESP tunnel (Phase 2). */ + /** When `true`, the tunnel can use a null-cipher (`ENCR_NULL`) in the ESP tunnel (Phase 2). */ export type magic_allow_null_cipher = boolean; export interface magic_api$response$common { errors: Schemas.magic_messages; @@ -11973,11 +11970,11 @@ export namespace Schemas { direction?: "unidirectional" | "bidirectional"; /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } /** Identifier */ @@ -12059,7 +12056,7 @@ export namespace Schemas { export interface magic_psk_metadata { last_generated_on?: Schemas.magic_schemas$modified_on; } - /** If \`true\`, then IPsec replay protection will be supported in the Cloudflare-to-customer direction. */ + /** If `true`, then IPsec replay protection will be supported in the Cloudflare-to-customer direction. */ export type magic_replay_protection = boolean; export interface magic_route { created_on?: Schemas.magic_created_on; @@ -12122,11 +12119,11 @@ export namespace Schemas { export interface magic_schemas$health_check { /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } /** Tunnel identifier tag. */ @@ -12202,11 +12199,11 @@ export namespace Schemas { export interface magic_tunnel_health_check { /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } export type magic_tunnel_modified_response = Schemas.magic_api$response$single & { @@ -12240,9 +12237,9 @@ export namespace Schemas { /** * Specifies the default nameservers to be used for new zones added to this account. * - * - \`cloudflare.standard\` for Cloudflare-branded nameservers - * - \`custom.account\` for account custom nameservers - * - \`custom.tenant\` for tenant custom nameservers + * - `cloudflare.standard` for Cloudflare-branded nameservers + * - `custom.account` for account custom nameservers + * - `custom.tenant` for tenant custom nameservers * * See [Custom Nameservers](https://developers.cloudflare.com/dns/additional-options/custom-nameservers/) * for more information. @@ -13969,15 +13966,15 @@ export namespace Schemas { code: number; message: string; }[]; - /** Defines rules for fine-grained control over content than signed URL tokens alone. Access rules primarily make tokens conditionally valid based on user information. Access Rules are specified on token payloads as the \`accessRules\` property containing an array of Rule objects. */ + /** Defines rules for fine-grained control over content than signed URL tokens alone. Access rules primarily make tokens conditionally valid based on user information. Access Rules are specified on token payloads as the `accessRules` property containing an array of Rule objects. */ export interface stream_accessRules { - /** The action to take when a request matches a rule. If the action is \`block\`, the signed token blocks views for viewers matching the rule. */ + /** The action to take when a request matches a rule. If the action is `block`, the signed token blocks views for viewers matching the rule. */ action?: "allow" | "block"; /** An array of 2-letter country codes in ISO 3166-1 Alpha-2 format used to match requests. */ country?: string[]; /** An array of IPv4 or IPV6 addresses or CIDRs used to match requests. */ ip?: string[]; - /** Lists available rule types to match for requests. An \`any\` type matches all requests and can be used as a wildcard to apply default actions after other rules. */ + /** Lists available rule types to match for requests. An `any` type matches all requests and can be used as a wildcard to apply default actions after other rules. */ type?: "any" | "ip.src" | "ip.geoip.country"; } /** The account identifier tag. */ @@ -13991,7 +13988,7 @@ export namespace Schemas { status?: Schemas.stream_audio_state; uid?: Schemas.stream_identifier; } - /** Lists the origins allowed to display the video. Enter allowed origin domains in an array and use \`*\` for wildcard subdomains. Empty arrays allow the video to be viewed on any origin. */ + /** Lists the origins allowed to display the video. Enter allowed origin domains in an array and use `*` for wildcard subdomains. Empty arrays allow the video to be viewed on any origin. */ export type stream_allowedOrigins = string[]; export interface stream_api$response$common { errors: Schemas.stream_messages; @@ -14054,7 +14051,7 @@ export namespace Schemas { export type stream_clipping_created = Date; export interface stream_copyAudioTrack { label: Schemas.stream_audio_label; - /** An audio track URL. The server must be publicly routable and support \`HTTP HEAD\` requests and \`HTTP GET\` range requests. The server should respond to \`HTTP HEAD\` requests with a \`content-range\` header that includes the size of the file. */ + /** An audio track URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file. */ url?: string; } export interface stream_create_input_request { @@ -14091,7 +14088,7 @@ export namespace Schemas { result?: { scheduledDeletion?: Schemas.stream_scheduledDeletion; uid?: Schemas.stream_identifier; - /** The URL an unauthenticated upload can use for a single \`HTTP POST multipart/form-data\` request. */ + /** The URL an unauthenticated upload can use for a single `HTTP POST multipart/form-data` request. */ uploadURL?: string; watermark?: Schemas.stream_watermarks; }; @@ -14101,7 +14098,7 @@ export namespace Schemas { export type stream_downloads_response = Schemas.stream_api$response$single & { result?: {}; }; - /** The duration of the video in seconds. A value of \`-1\` means the duration is unknown. The duration becomes available after the upload and before the video is ready. */ + /** The duration of the video in seconds. A value of `-1` means the duration is unknown. The duration becomes available after the upload and before the video is ready. */ export type stream_duration = number; export interface stream_editAudioTrack { default?: Schemas.stream_audio_default; @@ -14111,9 +14108,9 @@ export namespace Schemas { export type stream_end = Date; /** Specifies the end time for the video clip in seconds. */ export type stream_end_time_seconds = number; - /** Specifies why the video failed to encode. This field is empty if the video is not in an \`error\` state. Preferred for programmatic use. */ + /** Specifies why the video failed to encode. This field is empty if the video is not in an `error` state. Preferred for programmatic use. */ export type stream_errorReasonCode = string; - /** Specifies why the video failed to encode using a human readable error message in English. This field is empty if the video is not in an \`error\` state. */ + /** Specifies why the video failed to encode using a human readable error message in English. This field is empty if the video is not in an `error` state. */ export type stream_errorReasonText = string; /** The height of the image in pixels. */ export type stream_height = number; @@ -14122,9 +14119,9 @@ export namespace Schemas { /** Includes the total number of videos associated with the submitted query parameters. */ export type stream_include_counts = boolean; export interface stream_input { - /** The video height in pixels. A value of \`-1\` means the height is unknown. The value becomes available after the upload and before the video is ready. */ + /** The video height in pixels. A value of `-1` means the height is unknown. The value becomes available after the upload and before the video is ready. */ height?: number; - /** The video width in pixels. A value of \`-1\` means the width is unknown. The value becomes available after the upload and before the video is ready. */ + /** The video width in pixels. A value of `-1` means the width is unknown. The value becomes available after the upload and before the video is ready. */ width?: number; } /** Details for streaming to an live input using RTMPS. */ @@ -14218,13 +14215,13 @@ export namespace Schemas { modified?: Schemas.stream_live_input_modified; uid?: Schemas.stream_live_input_identifier; } - /** Lists the origins allowed to display videos created with this input. Enter allowed origin domains in an array and use \`*\` for wildcard subdomains. An empty array allows videos to be viewed on any origin. */ + /** Lists the origins allowed to display videos created with this input. Enter allowed origin domains in an array and use `*` for wildcard subdomains. An empty array allows videos to be viewed on any origin. */ export type stream_live_input_recording_allowedOrigins = string[]; - /** Indicates the number of days after which the live inputs recordings will be deleted. When a stream completes and the recording is ready, the value is used to calculate a scheduled deletion date for that recording. Omit the field to indicate no change, or include with a \`null\` value to remove an existing scheduled deletion. */ + /** Indicates the number of days after which the live inputs recordings will be deleted. When a stream completes and the recording is ready, the value is used to calculate a scheduled deletion date for that recording. Omit the field to indicate no change, or include with a `null` value to remove an existing scheduled deletion. */ export type stream_live_input_recording_deletion = number; - /** Specifies the recording behavior for the live input. Set this value to \`off\` to prevent a recording. Set the value to \`automatic\` to begin a recording and transition to on-demand after Stream Live stops receiving input. */ + /** Specifies the recording behavior for the live input. Set this value to `off` to prevent a recording. Set the value to `automatic` to begin a recording and transition to on-demand after Stream Live stops receiving input. */ export type stream_live_input_recording_mode = "off" | "automatic"; - /** Indicates if a video using the live input has the \`requireSignedURLs\` property set. Also enforces access controls on any video recording of the livestream with the live input. */ + /** Indicates if a video using the live input has the `requireSignedURLs` property set. Also enforces access controls on any video recording of the livestream with the live input. */ export type stream_live_input_recording_requireSignedURLs = boolean; /** Records the input to a Cloudflare Stream video. Behavior depends on the mode. In most cases, the video will initially be viewable as a live video and transition to on-demand after a condition is satisfied. */ export interface stream_live_input_recording_settings { @@ -14233,7 +14230,7 @@ export namespace Schemas { requireSignedURLs?: Schemas.stream_live_input_recording_requireSignedURLs; timeoutSeconds?: Schemas.stream_live_input_recording_timeoutSeconds; } - /** Determines the amount of time a live input configured in \`automatic\` mode should wait before a recording transitions from live to on-demand. \`0\` is recommended for most use cases and indicates the platform default should be used. */ + /** Determines the amount of time a live input configured in `automatic` mode should wait before a recording transitions from live to on-demand. `0` is recommended for most use cases and indicates the platform default should be used. */ export type stream_live_input_recording_timeoutSeconds = number; export type stream_live_input_response_collection = Schemas.stream_api$response$common & { result?: { @@ -14251,14 +14248,14 @@ export namespace Schemas { export type stream_live_input_status = string | null; /** The live input ID used to upload a video with Stream Live. */ export type stream_liveInput = string; - /** The maximum duration in seconds for a video upload. Can be set for a video that is not yet uploaded to limit its duration. Uploads that exceed the specified duration will fail during processing. A value of \`-1\` means the value is unknown. */ + /** The maximum duration in seconds for a video upload. Can be set for a video that is not yet uploaded to limit its duration. Uploads that exceed the specified duration will fail during processing. A value of `-1` means the value is unknown. */ export type stream_maxDurationSeconds = number; /** A user modifiable key-value store used to reference other systems of record for managing videos. */ export interface stream_media_metadata { } /** Specifies the processing status for all quality levels for a video. */ export type stream_media_state = "pendingupload" | "downloading" | "queued" | "inprogress" | "ready" | "error"; - /** Specifies a detailed status for a video. If the \`state\` is \`inprogress\` or \`error\`, the \`step\` field returns \`encoding\` or \`manifest\`. If the \`state\` is \`inprogress\`, \`pctComplete\` returns a number between 0 and 100 to indicate the approximate percent of completion. If the \`state\` is \`error\`, \`errorReasonCode\` and \`errorReasonText\` provide additional details. */ + /** Specifies a detailed status for a video. If the `state` is `inprogress` or `error`, the `step` field returns `encoding` or `manifest`. If the `state` is `inprogress`, `pctComplete` returns a number between 0 and 100 to indicate the approximate percent of completion. If the `state` is `error`, `errorReasonCode` and `errorReasonText` provide additional details. */ export interface stream_media_status { errorReasonCode?: Schemas.stream_errorReasonCode; errorReasonText?: Schemas.stream_errorReasonText; @@ -14277,7 +14274,7 @@ export namespace Schemas { export type stream_notificationUrl = string; /** The date and time when the video upload URL is no longer valid for direct user uploads. */ export type stream_oneTimeUploadExpiry = Date; - /** The translucency of the image. A value of \`0.0\` makes the image completely transparent, and \`1.0\` makes the image completely opaque. Note that if the image is already semi-transparent, setting this to \`1.0\` will not make the image completely opaque. */ + /** The translucency of the image. A value of `0.0` makes the image completely transparent, and `1.0` makes the image completely opaque. Note that if the image is already semi-transparent, setting this to `1.0` will not make the image completely opaque. */ export type stream_opacity = number; export interface stream_output { enabled?: Schemas.stream_output_enabled; @@ -14299,7 +14296,7 @@ export namespace Schemas { export type stream_output_streamKey = string; /** The URL an output uses to restream. */ export type stream_output_url = string; - /** The whitespace between the adjacent edges (determined by position) of the video and the image. \`0.0\` indicates no padding, and \`1.0\` indicates a fully padded video width or length, as determined by the algorithm. */ + /** The whitespace between the adjacent edges (determined by position) of the video and the image. `0.0` indicates no padding, and `1.0` indicates a fully padded video width or length, as determined by the algorithm. */ export type stream_padding = number; /** Indicates the size of the entire upload in bytes. The value must be a non-negative integer. */ export type stream_pctComplete = string; @@ -14338,7 +14335,7 @@ export namespace Schemas { } /** The URL used to play live video over WebRTC. */ export type stream_playback_webrtc_url = string; - /** The location of the image. Valid positions are: \`upperRight\`, \`upperLeft\`, \`lowerLeft\`, \`lowerRight\`, and \`center\`. Note that \`center\` ignores the \`padding\` parameter. */ + /** The location of the image. Valid positions are: `upperRight`, `upperLeft`, `lowerLeft`, `lowerRight`, and `center`. Note that `center` ignores the `padding` parameter. */ export type stream_position = string; /** The video's preview page URI. This field is omitted until encoding is complete. */ export type stream_preview = string; @@ -14346,15 +14343,15 @@ export namespace Schemas { export type stream_readyToStream = boolean; /** Indicates the time at which the video became playable. The field is empty if the video is not ready for viewing or the live stream is still in progress. */ export type stream_readyToStreamAt = Date; - /** Indicates whether the video can be a accessed using the UID. When set to \`true\`, a signed token must be generated with a signing key to view the video. */ + /** Indicates whether the video can be a accessed using the UID. When set to `true`, a signed token must be generated with a signing key to view the video. */ export type stream_requireSignedURLs = boolean; - /** The size of the image relative to the overall size of the video. This parameter will adapt to horizontal and vertical videos automatically. \`0.0\` indicates no scaling (use the size of the image as-is), and \`1.0 \`fills the entire video. */ + /** The size of the image relative to the overall size of the video. This parameter will adapt to horizontal and vertical videos automatically. `0.0` indicates no scaling (use the size of the image as-is), and `1.0 `fills the entire video. */ export type stream_scale = number; - /** Indicates the date and time at which the video will be deleted. Omit the field to indicate no change, or include with a \`null\` value to remove an existing scheduled deletion. If specified, must be at least 30 days from upload time. */ + /** Indicates the date and time at which the video will be deleted. Omit the field to indicate no change, or include with a `null` value to remove an existing scheduled deletion. If specified, must be at least 30 days from upload time. */ export type stream_scheduledDeletion = Date; /** Identifier */ export type stream_schemas$identifier = string; - /** Searches over the \`name\` key in the \`meta\` field. This field can be set with or after the upload request. */ + /** Searches over the `name` key in the `meta` field. This field can be set with or after the upload request. */ export type stream_search = string; export interface stream_signed_token_request { /** The optional list of access rule constraints on the token. Access can be blocked or allowed based on an IP, IP range, or by country. Access rules are evaluated from first to last. If a rule matches, the associated action is applied and no further rules are evaluated. */ @@ -14363,11 +14360,11 @@ export namespace Schemas { downloadable?: boolean; /** The optional unix epoch timestamp that specficies the time after a token is not accepted. The maximum time specification is 24 hours from issuing time. If this field is not set, the default is one hour after issuing. */ exp?: number; - /** The optional ID of a Stream signing key. If present, the \`pem\` field is also required. */ + /** The optional ID of a Stream signing key. If present, the `pem` field is also required. */ id?: string; /** The optional unix epoch timestamp that specifies the time before a the token is not accepted. If this field is not set, the default is one hour before issuing. */ nbf?: number; - /** The optional base64 encoded private key in PEM format associated with a Stream signing key. If present, the \`id\` field is also required. */ + /** The optional base64 encoded private key in PEM format associated with a Stream signing key. If present, the `id` field is also required. */ pem?: string; } export type stream_signed_token_response = Schemas.stream_api$response$single & { @@ -14404,7 +14401,7 @@ export namespace Schemas { * Notes: The only supported version of TUS protocol is 1.0.0. */ export type stream_tus_resumable = "1.0.0"; - /** Specifies whether the video is \`vod\` or \`live\`. */ + /** Specifies whether the video is `vod` or `live`. */ export type stream_type = string; export interface stream_update_input_request { defaultCreator?: Schemas.stream_live_input_default_creator; @@ -14419,7 +14416,7 @@ export namespace Schemas { export type stream_upload_length = number; /** * Comma-separated key-value pairs following the TUS protocol specification. Values are Base-64 encoded. - * Supported keys: \`name\`, \`requiresignedurls\`, \`allowedorigins\`, \`thumbnailtimestamppct\`, \`watermark\`, \`scheduleddeletion\`. + * Supported keys: `name`, `requiresignedurls`, `allowedorigins`, `thumbnailtimestamppct`, `watermark`, `scheduleddeletion`. */ export type stream_upload_metadata = string; /** The date and time the media item was uploaded. */ @@ -14431,7 +14428,7 @@ export namespace Schemas { requireSignedURLs?: Schemas.stream_requireSignedURLs; scheduledDeletion?: Schemas.stream_scheduledDeletion; thumbnailTimestampPct?: Schemas.stream_thumbnailTimestampPct; - /** A video's URL. The server must be publicly routable and support \`HTTP HEAD\` requests and \`HTTP GET\` range requests. The server should respond to \`HTTP HEAD\` requests with a \`content-range\` header that includes the size of the file. */ + /** A video's URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file. */ url: string; watermark?: Schemas.stream_watermark_at_upload; } @@ -14791,7 +14788,7 @@ export namespace Schemas { export type teams$devices_dex$single_response = Schemas.teams$devices_api$response$single & { result?: Schemas.teams$devices_device$dex$test$schemas$http; }; - /** If the \`dns_server\` field of a fallback domain is not present, the client will fall back to a best guess of the default/system DNS resolvers unless this policy option is set to \`true\`. */ + /** If the `dns_server` field of a fallback domain is not present, the client will fall back to a best guess of the default/system DNS resolvers unless this policy option is set to `true`. */ export type teams$devices_disable_auto_fallback = boolean; export interface teams$devices_disable_for_time { /** Override code that is valid for 1 hour. */ @@ -14861,7 +14858,7 @@ export namespace Schemas { export type teams$devices_identifier = any; export type teams$devices_include = Schemas.teams$devices_split_tunnel_include[]; export type teams$devices_input = Schemas.teams$devices_file_input_request | Schemas.teams$devices_unique_client_id_input_request | Schemas.teams$devices_domain_joined_input_request | Schemas.teams$devices_os_version_input_request | Schemas.teams$devices_firewall_input_request | Schemas.teams$devices_sentinelone_input_request | Schemas.teams$devices_carbonblack_input_request | Schemas.teams$devices_disk_encryption_input_request | Schemas.teams$devices_application_input_request | Schemas.teams$devices_client_certificate_input_request | Schemas.teams$devices_workspace_one_input_request | Schemas.teams$devices_crowdstrike_input_request | Schemas.teams$devices_intune_input_request | Schemas.teams$devices_kolide_input_request | Schemas.teams$devices_tanium_input_request | Schemas.teams$devices_sentinelone_s2s_input_request; - /** The interval between each posture check with the third-party API. Use \`m\` for minutes (e.g. \`5m\`) and \`h\` for hours (e.g. \`12h\`). */ + /** The interval between each posture check with the third-party API. Use `m` for minutes (e.g. `5m`) and `h` for hours (e.g. `12h`). */ export type teams$devices_interval = string; export interface teams$devices_intune_config_request { /** The Intune client ID. */ @@ -14967,7 +14964,7 @@ export namespace Schemas { export type teams$devices_revoke_devices_request = Schemas.teams$devices_schemas$uuid[]; /** When the device was revoked. */ export type teams$devices_revoked_at = Date; - /** Polling frequency for the WARP client posture check. Default: \`5m\` (poll every five minutes). Minimum: \`1m\`. */ + /** Polling frequency for the WARP client posture check. Default: `5m` (poll every five minutes). Minimum: `1m`. */ export type teams$devices_schedule = string; export type teams$devices_schemas$config_request = Schemas.teams$devices_tls_config_request; export type teams$devices_schemas$config_response = Schemas.teams$devices_tls_config_response; @@ -15032,11 +15029,11 @@ export namespace Schemas { result?: Schemas.teams$devices_device$posture$rules; }; export interface teams$devices_split_tunnel { - /** The address in CIDR format to exclude from the tunnel. If \`address\` is present, \`host\` must not be present. */ + /** The address in CIDR format to exclude from the tunnel. If `address` is present, `host` must not be present. */ address: string; /** A description of the Split Tunnel item, displayed in the client UI. */ description: string; - /** The domain name to exclude from the tunnel. If \`host\` is present, \`address\` must not be present. */ + /** The domain name to exclude from the tunnel. If `host` is present, `address` must not be present. */ host?: string; } export interface teams$devices_split_tunnel_include { @@ -15058,9 +15055,9 @@ export namespace Schemas { /** Whether to allow the user to turn off the WARP switch and disconnect the client. */ export type teams$devices_switch_locked = boolean; export interface teams$devices_tanium_config_request { - /** If present, this id will be passed in the \`CF-Access-Client-ID\` header when hitting the \`api_url\` */ + /** If present, this id will be passed in the `CF-Access-Client-ID` header when hitting the `api_url` */ access_client_id?: string; - /** If present, this secret will be passed in the \`CF-Access-Client-Secret\` header when hitting the \`api_url\` */ + /** If present, this secret will be passed in the `CF-Access-Client-Secret` header when hitting the `api_url` */ access_client_secret?: string; /** The Tanium API URL. */ api_url: string; @@ -15252,7 +15249,7 @@ export namespace Schemas { export type tunnel_config_response_single = Schemas.tunnel_api$response$single & { result?: {}; }; - /** Indicates if this is a locally or remotely configured tunnel. If \`local\`, manage the tunnel using a YAML file on the origin machine. If \`cloudflare\`, manage the tunnel on the Zero Trust dashboard or using the [Cloudflare Tunnel configuration](https://api.cloudflare.com/#cloudflare-tunnel-configuration-properties) endpoint. */ + /** Indicates if this is a locally or remotely configured tunnel. If `local`, manage the tunnel using a YAML file on the origin machine. If `cloudflare`, manage the tunnel on the Zero Trust dashboard or using the [Cloudflare Tunnel configuration](https://api.cloudflare.com/#cloudflare-tunnel-configuration-properties) endpoint. */ export type tunnel_config_src = "local" | "cloudflare"; /** The version of the remote tunnel configuration. Used internally to sync cloudflared with the Zero Trust dashboard. */ export type tunnel_config_version = number; @@ -15265,13 +15262,13 @@ export namespace Schemas { export type tunnel_connection_id = string; /** The Cloudflare Tunnel connections between your origin and Cloudflare's edge. */ export type tunnel_connections = Schemas.tunnel_schemas$connection[]; - /** Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If \`null\`, the tunnel is inactive. */ + /** Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If `null`, the tunnel is inactive. */ export type tunnel_conns_active_at = (Date) | null; - /** Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If \`null\`, the tunnel is active. */ + /** Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If `null`, the tunnel is active. */ export type tunnel_conns_inactive_at = (Date) | null; /** Timestamp of when the tunnel was created. */ export type tunnel_created_at = Date; - /** Timestamp of when the tunnel was deleted. If \`null\`, the tunnel has not been deleted. */ + /** Timestamp of when the tunnel was deleted. If `null`, the tunnel has not been deleted. */ export type tunnel_deleted_at = (Date) | null; export type tunnel_empty_response = Schemas.tunnel_api$response$common & { result?: {}; @@ -15299,9 +15296,9 @@ export namespace Schemas { export type tunnel_ip_network = string; /** IP/CIDR range in URL-encoded format */ export type tunnel_ip_network_encoded = string; - /** If \`true\`, this virtual network is the default for the account. */ + /** If `true`, this virtual network is the default for the account. */ export type tunnel_is_default_network = boolean; - /** Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If \`true\`, the connection has disconnected but is still being tracked. If \`false\`, the connection is actively serving traffic. */ + /** Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If `true`, the connection has disconnected but is still being tracked. If `false`, the connection is actively serving traffic. */ export type tunnel_is_pending_reconnect = boolean; export type tunnel_legacy$tunnel$response$collection = Schemas.tunnel_api$response$collection & { result?: Schemas.tunnel_argo$tunnel[]; @@ -15359,7 +15356,7 @@ export namespace Schemas { } /** Number of results to display. */ export type tunnel_per_page = number; - /** If \`true\`, the tunnel can be configured remotely from the Zero Trust dashboard. If \`false\`, the tunnel must be configured locally on the origin machine. */ + /** If `true`, the tunnel can be configured remotely from the Zero Trust dashboard. If `false`, the tunnel must be configured locally on the origin machine. */ export type tunnel_remote_config = boolean; export interface tunnel_result_info { /** Total number of results for the requested service */ @@ -15375,7 +15372,7 @@ export namespace Schemas { comment?: Schemas.tunnel_comment; /** Timestamp of when the route was created. */ created_at?: any; - /** Timestamp of when the route was deleted. If \`null\`, the route has not been deleted. */ + /** Timestamp of when the route was deleted. If `null`, the route has not been deleted. */ readonly deleted_at?: Date; id?: Schemas.tunnel_route_id; network?: Schemas.tunnel_ip_network; @@ -15410,13 +15407,13 @@ export namespace Schemas { origin_ip?: string; uuid?: Schemas.tunnel_connection_id; } - /** The status of the tunnel. Valid values are \`inactive\` (tunnel has never been run), \`degraded\` (tunnel is active and able to serve traffic but in an unhealthy state), \`healthy\` (tunnel is active and able to serve traffic), or \`down\` (tunnel can not serve traffic as it has no connections to the Cloudflare Edge). */ + /** The status of the tunnel. Valid values are `inactive` (tunnel has never been run), `degraded` (tunnel is active and able to serve traffic but in an unhealthy state), `healthy` (tunnel is active and able to serve traffic), or `down` (tunnel can not serve traffic as it has no connections to the Cloudflare Edge). */ export type tunnel_status = string; export interface tunnel_teamnet { comment?: Schemas.tunnel_comment; /** Timestamp of when the route was created. */ created_at?: any; - /** Timestamp of when the route was deleted. If \`null\`, the route has not been deleted. */ + /** Timestamp of when the route was deleted. If `null`, the route has not been deleted. */ readonly deleted_at?: Date; id?: Schemas.tunnel_route_id; network?: Schemas.tunnel_ip_network; @@ -15481,7 +15478,7 @@ export namespace Schemas { comment: Schemas.tunnel_schemas$comment; /** Timestamp of when the virtual network was created. */ created_at: any; - /** Timestamp of when the virtual network was deleted. If \`null\`, the virtual network has not been deleted. */ + /** Timestamp of when the virtual network was deleted. If `null`, the virtual network has not been deleted. */ deleted_at?: any; id: Schemas.tunnel_vnet_id; is_default_network: Schemas.tunnel_is_default_network; @@ -16104,7 +16101,7 @@ export namespace Schemas { }; /** Determines type of delivery mechanism. */ export type w2PBr26F_schemas$type = "email" | "pagerduty" | "webhook"; - /** Optional secret that will be passed in the \`cf-webhook-auth\` header when dispatching generic webhook notifications or formatted for supported destinations. Secrets are not returned in any API response body. */ + /** Optional secret that will be passed in the `cf-webhook-auth` header when dispatching generic webhook notifications or formatted for supported destinations. Secrets are not returned in any API response body. */ export type w2PBr26F_secret = string; /** Timestamp of when the notification was dispatched in ISO 8601 format. */ export type w2PBr26F_sent = Date; @@ -16199,11 +16196,11 @@ export namespace Schemas { code: number; message: string; }[]; - /** The state of the rules contained in the rule group. When \`on\`, the rules in the group are configurable/usable. */ + /** The state of the rules contained in the rule group. When `on`, the rules in the group are configurable/usable. */ export type waf$managed$rules_mode = "on" | "off"; - /** When set to \`on\`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ + /** When set to `on`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ export type waf$managed$rules_mode_allow_traditional = "on" | "off"; - /** When set to \`on\`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ + /** When set to `on`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ export type waf$managed$rules_mode_anomaly = "on" | "off"; /** The action that the current WAF rule will perform when triggered. Applies to traditional (deny) WAF rules. */ export type waf$managed$rules_mode_deny_traditional = "default" | "disable" | "simulate" | "block" | "challenge"; @@ -16283,12 +16280,12 @@ export namespace Schemas { }; /** Configures cookie attributes for the waiting room cookie. This encrypted cookie stores a user's status in the waiting room, such as queue position. */ export interface waitingroom_cookie_attributes { - /** Configures the SameSite attribute on the waiting room cookie. Value \`auto\` will be translated to \`lax\` or \`none\` depending if **Always Use HTTPS** is enabled. Note that when using value \`none\`, the secure attribute cannot be set to \`never\`. */ + /** Configures the SameSite attribute on the waiting room cookie. Value `auto` will be translated to `lax` or `none` depending if **Always Use HTTPS** is enabled. Note that when using value `none`, the secure attribute cannot be set to `never`. */ samesite?: "auto" | "lax" | "none" | "strict"; - /** Configures the Secure attribute on the waiting room cookie. Value \`always\` indicates that the Secure attribute will be set in the Set-Cookie header, \`never\` indicates that the Secure attribute will not be set, and \`auto\` will set the Secure attribute depending if **Always Use HTTPS** is enabled. */ + /** Configures the Secure attribute on the waiting room cookie. Value `always` indicates that the Secure attribute will be set in the Set-Cookie header, `never` indicates that the Secure attribute will not be set, and `auto` will set the Secure attribute depending if **Always Use HTTPS** is enabled. */ secure?: "auto" | "always" | "never"; } - /** Appends a '_' + a custom suffix to the end of Cloudflare Waiting Room's cookie name(__cf_waitingroom). If \`cookie_suffix\` is "abcd", the cookie name will be \`__cf_waitingroom_abcd\`. This field is required if using \`additional_routes\`. */ + /** Appends a '_' + a custom suffix to the end of Cloudflare Waiting Room's cookie name(__cf_waitingroom). If `cookie_suffix` is "abcd", the cookie name will be `__cf_waitingroom_abcd`. This field is required if using `additional_routes`. */ export type waitingroom_cookie_suffix = string; export interface waitingroom_create_rule { action: Schemas.waitingroom_rule_action; @@ -16298,25 +16295,25 @@ export namespace Schemas { } /** * Only available for the Waiting Room Advanced subscription. This is a template html file that will be rendered at the edge. If no custom_page_html is provided, the default waiting room will be used. The template is based on mustache ( https://mustache.github.io/ ). There are several variables that are evaluated by the Cloudflare edge: - * 1. {{\`waitTimeKnown\`}} Acts like a boolean value that indicates the behavior to take when wait time is not available, for instance when queue_all is **true**. - * 2. {{\`waitTimeFormatted\`}} Estimated wait time for the user. For example, five minutes. Alternatively, you can use: - * 3. {{\`waitTime\`}} Number of minutes of estimated wait for a user. - * 4. {{\`waitTimeHours\`}} Number of hours of estimated wait for a user (\`Math.floor(waitTime/60)\`). - * 5. {{\`waitTimeHourMinutes\`}} Number of minutes above the \`waitTimeHours\` value (\`waitTime%60\`). - * 6. {{\`queueIsFull\`}} Changes to **true** when no more people can be added to the queue. + * 1. {{`waitTimeKnown`}} Acts like a boolean value that indicates the behavior to take when wait time is not available, for instance when queue_all is **true**. + * 2. {{`waitTimeFormatted`}} Estimated wait time for the user. For example, five minutes. Alternatively, you can use: + * 3. {{`waitTime`}} Number of minutes of estimated wait for a user. + * 4. {{`waitTimeHours`}} Number of hours of estimated wait for a user (`Math.floor(waitTime/60)`). + * 5. {{`waitTimeHourMinutes`}} Number of minutes above the `waitTimeHours` value (`waitTime%60`). + * 6. {{`queueIsFull`}} Changes to **true** when no more people can be added to the queue. * - * To view the full list of variables, look at the \`cfWaitingRoom\` object described under the \`json_response_enabled\` property in other Waiting Room API calls. + * To view the full list of variables, look at the `cfWaitingRoom` object described under the `json_response_enabled` property in other Waiting Room API calls. */ export type waitingroom_custom_page_html = string; - /** The language of the default page template. If no default_template_language is provided, then \`en-US\` (English) will be used. */ + /** The language of the default page template. If no default_template_language is provided, then `en-US` (English) will be used. */ export type waitingroom_default_template_language = "en-US" | "es-ES" | "de-DE" | "fr-FR" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW" | "nl-NL" | "pl-PL" | "id-ID" | "tr-TR" | "ar-EG" | "ru-RU" | "fa-IR"; /** A note that you can use to add more details about the waiting room. */ export type waitingroom_description = string; - /** Only available for the Waiting Room Advanced subscription. Disables automatic renewal of session cookies. If \`true\`, an accepted user will have session_duration minutes to browse the site. After that, they will have to go through the waiting room again. If \`false\`, a user's session cookie will be automatically renewed on every request. */ + /** Only available for the Waiting Room Advanced subscription. Disables automatic renewal of session cookies. If `true`, an accepted user will have session_duration minutes to browse the site. After that, they will have to go through the waiting room again. If `false`, a user's session cookie will be automatically renewed on every request. */ export type waitingroom_disable_session_renewal = boolean; export type waitingroom_estimated_queued_users = number; export type waitingroom_estimated_total_active_users = number; - /** If set, the event will override the waiting room's \`custom_page_html\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `custom_page_html` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_custom_page_html = string | null; /** A note that you can use to add more details about the event. */ export type waitingroom_event_description = string; @@ -16347,7 +16344,7 @@ export namespace Schemas { } export type waitingroom_event_details_session_duration = number; export type waitingroom_event_details_total_active_users = number; - /** If set, the event will override the waiting room's \`disable_session_renewal\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `disable_session_renewal` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_disable_session_renewal = boolean | null; /** An ISO 8601 timestamp that marks the end of the event. */ export type waitingroom_event_end_time = string; @@ -16359,11 +16356,11 @@ export namespace Schemas { }; /** A unique name to identify the event. Only alphanumeric characters, hyphens and underscores are allowed. */ export type waitingroom_event_name = string; - /** If set, the event will override the waiting room's \`new_users_per_minute\` property while it is active. If null, the event will inherit it. This can only be set if the event's \`total_active_users\` property is also set. */ + /** If set, the event will override the waiting room's `new_users_per_minute` property while it is active. If null, the event will inherit it. This can only be set if the event's `total_active_users` property is also set. */ export type waitingroom_event_new_users_per_minute = number | null; - /** An ISO 8601 timestamp that marks when to begin queueing all users before the event starts. The prequeue must start at least five minutes before \`event_start_time\`. */ + /** An ISO 8601 timestamp that marks when to begin queueing all users before the event starts. The prequeue must start at least five minutes before `event_start_time`. */ export type waitingroom_event_prequeue_start_time = string | null; - /** If set, the event will override the waiting room's \`queueing_method\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `queueing_method` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_queueing_method = string | null; export type waitingroom_event_response = Schemas.waitingroom_api$response$single & { result?: Schemas.waitingroom_event_result; @@ -16389,52 +16386,52 @@ export namespace Schemas { suspended?: Schemas.waitingroom_event_suspended; total_active_users?: Schemas.waitingroom_event_total_active_users; } - /** If set, the event will override the waiting room's \`session_duration\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `session_duration` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_session_duration = number | null; - /** If enabled, users in the prequeue will be shuffled randomly at the \`event_start_time\`. Requires that \`prequeue_start_time\` is not null. This is useful for situations when many users will join the event prequeue at the same time and you want to shuffle them to ensure fairness. Naturally, it makes the most sense to enable this feature when the \`queueing_method\` during the event respects ordering such as **fifo**, or else the shuffling may be unnecessary. */ + /** If enabled, users in the prequeue will be shuffled randomly at the `event_start_time`. Requires that `prequeue_start_time` is not null. This is useful for situations when many users will join the event prequeue at the same time and you want to shuffle them to ensure fairness. Naturally, it makes the most sense to enable this feature when the `queueing_method` during the event respects ordering such as **fifo**, or else the shuffling may be unnecessary. */ export type waitingroom_event_shuffle_at_event_start = boolean; - /** An ISO 8601 timestamp that marks the start of the event. At this time, queued users will be processed with the event's configuration. The start time must be at least one minute before \`event_end_time\`. */ + /** An ISO 8601 timestamp that marks the start of the event. At this time, queued users will be processed with the event's configuration. The start time must be at least one minute before `event_end_time`. */ export type waitingroom_event_start_time = string; - /** Suspends or allows an event. If set to \`true\`, the event is ignored and traffic will be handled based on the waiting room configuration. */ + /** Suspends or allows an event. If set to `true`, the event is ignored and traffic will be handled based on the waiting room configuration. */ export type waitingroom_event_suspended = boolean; - /** If set, the event will override the waiting room's \`total_active_users\` property while it is active. If null, the event will inherit it. This can only be set if the event's \`new_users_per_minute\` property is also set. */ + /** If set, the event will override the waiting room's `total_active_users` property while it is active. If null, the event will inherit it. This can only be set if the event's `new_users_per_minute` property is also set. */ export type waitingroom_event_total_active_users = number | null; /** The host name to which the waiting room will be applied (no wildcards). Please do not include the scheme (http:// or https://). The host and path combination must be unique. */ export type waitingroom_host = string; /** Identifier */ export type waitingroom_identifier = string; /** - * Only available for the Waiting Room Advanced subscription. If \`true\`, requests to the waiting room with the header \`Accept: application/json\` will receive a JSON response object with information on the user's status in the waiting room as opposed to the configured static HTML page. This JSON response object has one property \`cfWaitingRoom\` which is an object containing the following fields: - * 1. \`inWaitingRoom\`: Boolean indicating if the user is in the waiting room (always **true**). - * 2. \`waitTimeKnown\`: Boolean indicating if the current estimated wait times are accurate. If **false**, they are not available. - * 3. \`waitTime\`: Valid only when \`waitTimeKnown\` is **true**. Integer indicating the current estimated time in minutes the user will wait in the waiting room. When \`queueingMethod\` is **random**, this is set to \`waitTime50Percentile\`. - * 4. \`waitTime25Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 25% of users that gain entry the fastest (25th percentile). - * 5. \`waitTime50Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 50% of users that gain entry the fastest (50th percentile). In other words, half of the queued users are expected to let into the origin website before \`waitTime50Percentile\` and half are expected to be let in after it. - * 6. \`waitTime75Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 75% of users that gain entry the fastest (75th percentile). - * 7. \`waitTimeFormatted\`: String displaying the \`waitTime\` formatted in English for users. If \`waitTimeKnown\` is **false**, \`waitTimeFormatted\` will display **unavailable**. - * 8. \`queueIsFull\`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. - * 9. \`queueAll\`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website. - * 10. \`lastUpdated\`: String displaying the timestamp as an ISO 8601 string of the user's last attempt to leave the waiting room and be let into the origin website. The user is able to make another attempt after \`refreshIntervalSeconds\` past this time. If the user makes a request too soon, it will be ignored and \`lastUpdated\` will not change. - * 11. \`refreshIntervalSeconds\`: Integer indicating the number of seconds after \`lastUpdated\` until the user is able to make another attempt to leave the waiting room and be let into the origin website. When the \`queueingMethod\` is \`reject\`, there is no specified refresh time — it will always be **zero**. - * 12. \`queueingMethod\`: The queueing method currently used by the waiting room. It is either **fifo**, **random**, **passthrough**, or **reject**. - * 13. \`isFIFOQueue\`: Boolean indicating if the waiting room uses a FIFO (First-In-First-Out) queue. - * 14. \`isRandomQueue\`: Boolean indicating if the waiting room uses a Random queue where users gain access randomly. - * 15. \`isPassthroughQueue\`: Boolean indicating if the waiting room uses a passthrough queue. Keep in mind that when passthrough is enabled, this JSON response will only exist when \`queueAll\` is **true** or \`isEventPrequeueing\` is **true** because in all other cases requests will go directly to the origin. - * 16. \`isRejectQueue\`: Boolean indicating if the waiting room uses a reject queue. - * 17. \`isEventActive\`: Boolean indicating if an event is currently occurring. Events are able to change a waiting room's behavior during a specified period of time. For additional information, look at the event properties \`prequeue_start_time\`, \`event_start_time\`, and \`event_end_time\` in the documentation for creating waiting room events. Events are considered active between these start and end times, as well as during the prequeueing period if it exists. - * 18. \`isEventPrequeueing\`: Valid only when \`isEventActive\` is **true**. Boolean indicating if an event is currently prequeueing users before it starts. - * 19. \`timeUntilEventStart\`: Valid only when \`isEventPrequeueing\` is **true**. Integer indicating the number of minutes until the event starts. - * 20. \`timeUntilEventStartFormatted\`: String displaying the \`timeUntilEventStart\` formatted in English for users. If \`isEventPrequeueing\` is **false**, \`timeUntilEventStartFormatted\` will display **unavailable**. - * 21. \`timeUntilEventEnd\`: Valid only when \`isEventActive\` is **true**. Integer indicating the number of minutes until the event ends. - * 22. \`timeUntilEventEndFormatted\`: String displaying the \`timeUntilEventEnd\` formatted in English for users. If \`isEventActive\` is **false**, \`timeUntilEventEndFormatted\` will display **unavailable**. - * 23. \`shuffleAtEventStart\`: Valid only when \`isEventActive\` is **true**. Boolean indicating if the users in the prequeue are shuffled randomly when the event starts. + * Only available for the Waiting Room Advanced subscription. If `true`, requests to the waiting room with the header `Accept: application/json` will receive a JSON response object with information on the user's status in the waiting room as opposed to the configured static HTML page. This JSON response object has one property `cfWaitingRoom` which is an object containing the following fields: + * 1. `inWaitingRoom`: Boolean indicating if the user is in the waiting room (always **true**). + * 2. `waitTimeKnown`: Boolean indicating if the current estimated wait times are accurate. If **false**, they are not available. + * 3. `waitTime`: Valid only when `waitTimeKnown` is **true**. Integer indicating the current estimated time in minutes the user will wait in the waiting room. When `queueingMethod` is **random**, this is set to `waitTime50Percentile`. + * 4. `waitTime25Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 25% of users that gain entry the fastest (25th percentile). + * 5. `waitTime50Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 50% of users that gain entry the fastest (50th percentile). In other words, half of the queued users are expected to let into the origin website before `waitTime50Percentile` and half are expected to be let in after it. + * 6. `waitTime75Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 75% of users that gain entry the fastest (75th percentile). + * 7. `waitTimeFormatted`: String displaying the `waitTime` formatted in English for users. If `waitTimeKnown` is **false**, `waitTimeFormatted` will display **unavailable**. + * 8. `queueIsFull`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. + * 9. `queueAll`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website. + * 10. `lastUpdated`: String displaying the timestamp as an ISO 8601 string of the user's last attempt to leave the waiting room and be let into the origin website. The user is able to make another attempt after `refreshIntervalSeconds` past this time. If the user makes a request too soon, it will be ignored and `lastUpdated` will not change. + * 11. `refreshIntervalSeconds`: Integer indicating the number of seconds after `lastUpdated` until the user is able to make another attempt to leave the waiting room and be let into the origin website. When the `queueingMethod` is `reject`, there is no specified refresh time — it will always be **zero**. + * 12. `queueingMethod`: The queueing method currently used by the waiting room. It is either **fifo**, **random**, **passthrough**, or **reject**. + * 13. `isFIFOQueue`: Boolean indicating if the waiting room uses a FIFO (First-In-First-Out) queue. + * 14. `isRandomQueue`: Boolean indicating if the waiting room uses a Random queue where users gain access randomly. + * 15. `isPassthroughQueue`: Boolean indicating if the waiting room uses a passthrough queue. Keep in mind that when passthrough is enabled, this JSON response will only exist when `queueAll` is **true** or `isEventPrequeueing` is **true** because in all other cases requests will go directly to the origin. + * 16. `isRejectQueue`: Boolean indicating if the waiting room uses a reject queue. + * 17. `isEventActive`: Boolean indicating if an event is currently occurring. Events are able to change a waiting room's behavior during a specified period of time. For additional information, look at the event properties `prequeue_start_time`, `event_start_time`, and `event_end_time` in the documentation for creating waiting room events. Events are considered active between these start and end times, as well as during the prequeueing period if it exists. + * 18. `isEventPrequeueing`: Valid only when `isEventActive` is **true**. Boolean indicating if an event is currently prequeueing users before it starts. + * 19. `timeUntilEventStart`: Valid only when `isEventPrequeueing` is **true**. Integer indicating the number of minutes until the event starts. + * 20. `timeUntilEventStartFormatted`: String displaying the `timeUntilEventStart` formatted in English for users. If `isEventPrequeueing` is **false**, `timeUntilEventStartFormatted` will display **unavailable**. + * 21. `timeUntilEventEnd`: Valid only when `isEventActive` is **true**. Integer indicating the number of minutes until the event ends. + * 22. `timeUntilEventEndFormatted`: String displaying the `timeUntilEventEnd` formatted in English for users. If `isEventActive` is **false**, `timeUntilEventEndFormatted` will display **unavailable**. + * 23. `shuffleAtEventStart`: Valid only when `isEventActive` is **true**. Boolean indicating if the users in the prequeue are shuffled randomly when the event starts. * * An example cURL to a waiting room could be: * - * curl -X GET "https://example.com/waitingroom" \\ + * curl -X GET "https://example.com/waitingroom" \ * -H "Accept: application/json" * - * If \`json_response_enabled\` is **true** and the request hits the waiting room, an example JSON response when \`queueingMethod\` is **fifo** and no event is active could be: + * If `json_response_enabled` is **true** and the request hits the waiting room, an example JSON response when `queueingMethod` is **fifo** and no event is active could be: * * { * "cfWaitingRoom": { @@ -16464,7 +16461,7 @@ export namespace Schemas { * } * } * - * If \`json_response_enabled\` is **true** and the request hits the waiting room, an example JSON response when \`queueingMethod\` is **random** and an event is active could be: + * If `json_response_enabled` is **true** and the request hits the waiting room, an example JSON response when `queueingMethod` is **random** and an event is active could be: * * { * "cfWaitingRoom": { @@ -16562,14 +16559,14 @@ export namespace Schemas { suspended?: Schemas.waitingroom_suspended; total_active_users: Schemas.waitingroom_total_active_users; } - /** If queue_all is \`true\`, all the traffic that is coming to a route will be sent to the waiting room. No new traffic can get to the route once this field is set and estimated time will become unavailable. */ + /** If queue_all is `true`, all the traffic that is coming to a route will be sent to the waiting room. No new traffic can get to the route once this field is set and estimated time will become unavailable. */ export type waitingroom_queue_all = boolean; /** - * Sets the queueing method used by the waiting room. Changing this parameter from the **default** queueing method is only available for the Waiting Room Advanced subscription. Regardless of the queueing method, if \`queue_all\` is enabled or an event is prequeueing, users in the waiting room will not be accepted to the origin. These users will always see a waiting room page that refreshes automatically. The valid queueing methods are: - * 1. \`fifo\` **(default)**: First-In-First-Out queue where customers gain access in the order they arrived. - * 2. \`random\`: Random queue where customers gain access randomly, regardless of arrival time. - * 3. \`passthrough\`: Users will pass directly through the waiting room and into the origin website. As a result, any configured limits will not be respected while this is enabled. This method can be used as an alternative to disabling a waiting room (with \`suspended\`) so that analytics are still reported. This can be used if you wish to allow all traffic normally, but want to restrict traffic during a waiting room event, or vice versa. - * 4. \`reject\`: Users will be immediately rejected from the waiting room. As a result, no users will reach the origin website while this is enabled. This can be used if you wish to reject all traffic while performing maintenance, block traffic during a specified period of time (an event), or block traffic while events are not occurring. Consider a waiting room used for vaccine distribution that only allows traffic during sign-up events, and otherwise blocks all traffic. For this case, the waiting room uses \`reject\`, and its events override this with \`fifo\`, \`random\`, or \`passthrough\`. When this queueing method is enabled and neither \`queueAll\` is enabled nor an event is prequeueing, the waiting room page **will not refresh automatically**. + * Sets the queueing method used by the waiting room. Changing this parameter from the **default** queueing method is only available for the Waiting Room Advanced subscription. Regardless of the queueing method, if `queue_all` is enabled or an event is prequeueing, users in the waiting room will not be accepted to the origin. These users will always see a waiting room page that refreshes automatically. The valid queueing methods are: + * 1. `fifo` **(default)**: First-In-First-Out queue where customers gain access in the order they arrived. + * 2. `random`: Random queue where customers gain access randomly, regardless of arrival time. + * 3. `passthrough`: Users will pass directly through the waiting room and into the origin website. As a result, any configured limits will not be respected while this is enabled. This method can be used as an alternative to disabling a waiting room (with `suspended`) so that analytics are still reported. This can be used if you wish to allow all traffic normally, but want to restrict traffic during a waiting room event, or vice versa. + * 4. `reject`: Users will be immediately rejected from the waiting room. As a result, no users will reach the origin website while this is enabled. This can be used if you wish to reject all traffic while performing maintenance, block traffic during a specified period of time (an event), or block traffic while events are not occurring. Consider a waiting room used for vaccine distribution that only allows traffic during sign-up events, and otherwise blocks all traffic. For this case, the waiting room uses `reject`, and its events override this with `fifo`, `random`, or `passthrough`. When this queueing method is enabled and neither `queueAll` is enabled nor an event is prequeueing, the waiting room page **will not refresh automatically**. */ export type waitingroom_queueing_method = "fifo" | "random" | "passthrough" | "reject"; /** HTTP status code returned to a user while in the queue. */ @@ -16650,7 +16647,7 @@ export namespace Schemas { status?: Schemas.waitingroom_status; }; }; - /** Suspends or allows traffic going to the waiting room. If set to \`true\`, the traffic will not go to the waiting room. */ + /** Suspends or allows traffic going to the waiting room. If set to `true`, the traffic will not go to the waiting room. */ export type waitingroom_suspended = boolean; export type waitingroom_timestamp = Date; /** Sets the total number of active user sessions on the route at a point in time. A route is a combination of host and path on which a waiting room is available. This value is used as a baseline for the total number of active user sessions on the route. It is possible to have a situation where there are more or less active users sessions on the route based on the traffic patterns at that time around the world. */ @@ -17111,7 +17108,7 @@ export namespace Schemas { /** Deprecated. Deployment metadata for internal usage. */ export type workers_pipeline_hash = string; export interface workers_placement_config { - /** Enables [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Only \`"smart"\` is currently supported */ + /** Enables [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Only `"smart"` is currently supported */ mode?: "smart"; } /** Specifies the placement mode for the Worker (e.g. 'smart'). */ @@ -17529,7 +17526,7 @@ export namespace Schemas { result?: Schemas.zaraz_zaraz$workflow; }; export type zaraz_zone$identifier = Schemas.zaraz_identifier; - /** The action to preform when the associated traffic, identity, and device posture expressions are either absent or evaluate to \`true\`. */ + /** The action to preform when the associated traffic, identity, and device posture expressions are either absent or evaluate to `true`. */ export type zero$trust$gateway_action = "on" | "off" | "allow" | "block" | "scan" | "noscan" | "safesearch" | "ytrestricted" | "isolate" | "noisolate" | "override" | "l4_override" | "egress" | "audit_ssh"; /** Activity log settings. */ export interface zero$trust$gateway_activity$log$settings { @@ -17572,7 +17569,7 @@ export namespace Schemas { }; /** The identifier for this application. There is only one application per ID. */ export type zero$trust$gateway_app_id = number; - /** The identifier for the type of this application. There can be many applications with the same type. This refers to the \`id\` of a returned application type. */ + /** The identifier for the type of this application. There can be many applications with the same type. This refers to the `id` of a returned application type. */ export type zero$trust$gateway_app_type_id = number; export interface zero$trust$gateway_application { application_type_id?: Schemas.zero$trust$gateway_app_type_id; @@ -17617,7 +17614,7 @@ export namespace Schemas { } /** DLP body scanning settings. */ export interface zero$trust$gateway_body$scanning$settings { - /** Set the inspection mode to either \`deep\` or \`shallow\`. */ + /** Set the inspection mode to either `deep` or `shallow`. */ inspection_mode?: string; } /** Browser isolation settings. */ @@ -17643,7 +17640,7 @@ export namespace Schemas { }; /** Cloudflare account ID. */ export type zero$trust$gateway_cf_account_id = string; - /** Which account types are allowed to create policies based on this category. \`blocked\` categories are blocked unconditionally for all accounts. \`removalPending\` categories can be removed from policies but not added. \`noBlock\` categories cannot be blocked. */ + /** Which account types are allowed to create policies based on this category. `blocked` categories are blocked unconditionally for all accounts. `removalPending` categories can be removed from policies but not added. `noBlock` categories cannot be blocked. */ export type zero$trust$gateway_class = "free" | "premium" | "blocked" | "removalPending" | "noBlock"; /** True if the location is the default location. */ export type zero$trust$gateway_client$default = boolean; @@ -18240,7 +18237,7 @@ export namespace Schemas { }; /** * Value of the zone setting. - * Notes: Setting a TTL of 0 is equivalent to selecting \`Respect Existing Headers\` + * Notes: Setting a TTL of 0 is equivalent to selecting `Respect Existing Headers` */ export type zones_browser_cache_ttl_value = 0 | 30 | 60 | 120 | 300 | 1200 | 1800 | 3600 | 7200 | 10800 | 14400 | 18000 | 28800 | 43200 | 57600 | 72000 | 86400 | 172800 | 259200 | 345600 | 432000 | 691200 | 1382400 | 2073600 | 2678400 | 5356800 | 16070400 | 31536000; export type zones_browser_check = Schemas.zones_base & { @@ -18351,7 +18348,7 @@ export namespace Schemas { id?: "image_resizing"; value?: Schemas.zones_image_resizing_value; }; - /** Whether the feature is enabled, disabled, or enabled in \`open proxy\` mode. */ + /** Whether the feature is enabled, disabled, or enabled in `open proxy` mode. */ export type zones_image_resizing_value = "on" | "off" | "open"; export type zones_ip_geolocation = Schemas.zones_base & { /** ID of the zone setting. */ @@ -18506,7 +18503,7 @@ export namespace Schemas { }; /** Value of the zone setting. */ export type zones_prefetch_preload_value = "on" | "off"; - /** The priority of the rule, used to define which Page Rule is processed over another. A higher number indicates a higher priority. For example, if you have a catch-all Page Rule (rule A: \`/images/\\\\*\`) but want a more specific Page Rule to take precedence (rule B: \`/images/special/*\`), specify a higher priority for rule B so it overrides rule A. */ + /** The priority of the rule, used to define which Page Rule is processed over another. A higher number indicates a higher priority. For example, if you have a catch-all Page Rule (rule A: `/images/\\*`) but want a more specific Page Rule to take precedence (rule B: `/images/special/*`), specify a higher priority for rule B so it overrides rule A. */ export type zones_priority = number; export type zones_proxy_read_timeout = Schemas.zones_base & { /** ID of the zone setting. */ @@ -18559,7 +18556,7 @@ export namespace Schemas { type?: "temporary" | "permanent"; /** * The URL to redirect the request to. - * Notes: \${num} refers to the position of '*' in the constraint value. + * Notes: ${num} refers to the position of '*' in the constraint value. */ url?: string; }; @@ -18827,15 +18824,15 @@ export namespace Responses { export namespace Parameters { /** * Filter results to only include discovery results sourced from a particular discovery engine - * * \`ML\` - Discovered operations that were sourced using ML API Discovery - * * \`SessionIdentifier\` - Discovered operations that were sourced using Session Identifier API Discovery + * * `ML` - Discovered operations that were sourced using ML API Discovery + * * `SessionIdentifier` - Discovered operations that were sourced using Session Identifier API Discovery */ export type api$shield_api_discovery_origin_parameter = Schemas.api$shield_api_discovery_origin; /** * Filter results to only include discovery results in a particular state. States are as follows - * * \`review\` - Discovered operations that are not saved into API Shield Endpoint Management - * * \`saved\` - Discovered operations that are already saved into API Shield Endpoint Management - * * \`ignored\` - Discovered operations that have been marked as ignored + * * `review` - Discovered operations that are not saved into API Shield Endpoint Management + * * `saved` - Discovered operations that are already saved into API Shield Endpoint Management + * * `ignored` - Discovered operations that have been marked as ignored */ export type api$shield_api_discovery_state_parameter = Schemas.api$shield_api_discovery_state; export type api$shield_diff_parameter = boolean; @@ -18866,22 +18863,22 @@ export namespace RequestBodies { /** Raw javascript content comprising a Worker. Must be in service worker syntax. */ "application/javascript": string; "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present and referenced in the metadata as \`main_module\` or \`body_part\` by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present and referenced in the metadata as `main_module` or `body_part` by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { /** List of bindings available to the worker. */ bindings?: {}[]; - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; /** Date indicating targeted support in the Workers runtime. Backwards incompatible fixes to the runtime following this date will not affect this Worker. */ compatibility_date?: string; - /** Flags that enable or disable certain features in the Workers runtime. Used to enable upcoming features or opt in or out of specific changes not included in a \`compatibility_date\`. */ + /** Flags that enable or disable certain features in the Workers runtime. Used to enable upcoming features or opt in or out of specific changes not included in a `compatibility_date`. */ compatibility_flags?: string[]; /** List of binding types to keep from previous_upload. */ keep_bindings?: string[]; logpush?: Schemas.workers_logpush; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; /** Migrations to apply for Durable Objects associated with this Worker. */ migrations?: Schemas.workers_single_step_migrations | Schemas.workers_stepped_migrations; @@ -18895,7 +18892,7 @@ export namespace RequestBodies { version_tags?: {}; }; } | { - /** Rollback message to be associated with this deployment. Only parsed when query param \`"rollback_to"\` is present. */ + /** Rollback message to be associated with this deployment. Only parsed when query param `"rollback_to"` is present. */ message?: string; }; /** Raw javascript content comprising a Worker. Must be in service worker syntax. */ @@ -20892,7 +20889,7 @@ export interface Parameter$pages$deployment$create$deployment { } export interface RequestBody$pages$deployment$create$deployment { "multipart/form-data": { - /** The branch to build the new deployment from. The \`HEAD\` of the branch will be used. If omitted, the production branch will be used by default. */ + /** The branch to build the new deployment from. The `HEAD` of the branch will be used. If omitted, the production branch will be used by default. */ branch?: string; }; } @@ -22338,13 +22335,13 @@ export interface Parameter$namespace$worker$put$script$content { } export interface RequestBody$namespace$worker$put$script$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -22706,13 +22703,13 @@ export interface Parameter$worker$script$put$content { } export interface RequestBody$worker$script$put$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -22857,13 +22854,13 @@ export interface Parameter$worker$environment$put$script$content { } export interface RequestBody$worker$environment$put$script$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -25575,7 +25572,7 @@ export interface RequestBody$urlscanner$create$scan { /** Take multiple screenshots targeting different device types */ screenshotsResolutions?: ("desktop" | "mobile" | "tablet")[]; url: string; - /** The option \`Public\` means it will be included in listings like recent scans and search results. \`Unlisted\` means it will not be included in the aforementioned listings, users will need to have the scan's ID to access it. A a scan will be automatically marked as unlisted if it fails, if it contains potential PII or other sensitive material. */ + /** The option `Public` means it will be included in listings like recent scans and search results. `Unlisted` means it will not be included in the aforementioned listings, users will need to have the scan's ID to access it. A a scan will be automatically marked as unlisted if it fails, if it contains potential PII or other sensitive material. */ visibility?: "Public" | "Unlisted"; }; } @@ -27646,7 +27643,7 @@ export interface Response$origin$ca$revoke$certificate$Status$4XX { "application/json": Schemas.ApQU2qAj_certificate_response_single_id & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$cloudflare$i$ps$cloudflare$ip$details { - /** Specified as \`jdcloud\` to list IPs used by JD Cloud data centers. */ + /** Specified as `jdcloud` to list IPs used by JD Cloud data centers. */ networks?: string; } export interface Response$cloudflare$i$ps$cloudflare$ip$details$Status$200 { @@ -36709,7 +36706,7 @@ export interface RequestBody$zones$0$patch { "application/json": { paused?: Schemas.zones_paused; /** - * (Deprecated) Please use the \`/zones/{zone_id}/subscription\` API + * (Deprecated) Please use the `/zones/{zone_id}/subscription` API * to update a zone's plan. Changing this value will create/cancel * associated subscriptions. To view available plans for this zone, * see Zone Plans. @@ -36813,15 +36810,15 @@ export interface Parameter$api$shield$api$discovery$retrieve$discovered$operatio diff?: Parameters.api$shield_diff_parameter; /** * Filter results to only include discovery results sourced from a particular discovery engine - * * \`ML\` - Discovered operations that were sourced using ML API Discovery - * * \`SessionIdentifier\` - Discovered operations that were sourced using Session Identifier API Discovery + * * `ML` - Discovered operations that were sourced using ML API Discovery + * * `SessionIdentifier` - Discovered operations that were sourced using Session Identifier API Discovery */ origin?: Parameters.api$shield_api_discovery_origin_parameter; /** * Filter results to only include discovery results in a particular state. States are as follows - * * \`review\` - Discovered operations that are not saved into API Shield Endpoint Management - * * \`saved\` - Discovered operations that are already saved into API Shield Endpoint Management - * * \`ignored\` - Discovered operations that have been marked as ignored + * * `review` - Discovered operations that are not saved into API Shield Endpoint Management + * * `saved` - Discovered operations that are already saved into API Shield Endpoint Management + * * `ignored` - Discovered operations that have been marked as ignored */ state?: Parameters.api$shield_api_discovery_state_parameter; } @@ -37098,7 +37095,7 @@ export interface Parameter$api$shield$schema$validation$extract$operations$from$ page?: Parameters.api$shield_page; /** Maximum number of results per page. */ per_page?: Parameters.api$shield_per_page; - /** Filter results by whether operations exist in API Shield Endpoint Management or not. \`new\` will just return operations from the schema that do not exist in API Shield Endpoint Management. \`existing\` will just return operations from the schema that already exist in API Shield Endpoint Management. */ + /** Filter results by whether operations exist in API Shield Endpoint Management or not. `new` will just return operations from the schema that do not exist in API Shield Endpoint Management. `existing` will just return operations from the schema that already exist in API Shield Endpoint Management. */ operation_status?: "new" | "existing"; } export interface Response$api$shield$schema$validation$extract$operations$from$schema$Status$200 { @@ -37466,13 +37463,13 @@ export interface RequestBody$dns$records$for$a$zone$import$dns$records { /** * BIND config to import. * - * **Tip:** When using cURL, a file can be uploaded using \`--form 'file=@bind_config.txt'\`. + * **Tip:** When using cURL, a file can be uploaded using `--form 'file=@bind_config.txt'`. */ file: string; /** * Whether or not proxiable records should receive the performance and security benefits of Cloudflare. * - * The value should be either \`true\` or \`false\`. + * The value should be either `true` or `false`. */ proxied?: string; }; @@ -37564,7 +37561,7 @@ export interface Parameter$ip$access$rules$for$a$zone$delete$an$ip$access$rule { } export interface RequestBody$ip$access$rules$for$a$zone$delete$an$ip$access$rule { "application/json": { - /** The level to attempt to delete similar rules defined for other zones with the same owner. The default value is \`none\`, which will only delete the current rule. Using \`basic\` will delete rules that match the same action (mode) and configuration, while using \`aggressive\` will delete rules that match the same configuration. */ + /** The level to attempt to delete similar rules defined for other zones with the same owner. The default value is `none`, which will only delete the current rule. Using `basic` will delete rules that match the same action (mode) and configuration, while using `aggressive` will delete rules that match the same configuration. */ cascade?: "none" | "basic" | "aggressive"; }; } @@ -37672,7 +37669,7 @@ export interface Parameter$waf$rules$update$a$waf$rule { } export interface RequestBody$waf$rules$update$a$waf$rule { "application/json": { - /** The mode/action of the rule when triggered. You must use a value from the \`allowed_modes\` array of the current rule. */ + /** The mode/action of the rule when triggered. You must use a value from the `allowed_modes` array of the current rule. */ mode?: "default" | "disable" | "simulate" | "block" | "challenge" | "on" | "off"; }; } @@ -37727,7 +37724,7 @@ export interface Response$zones$0$hold$post$Status$4XX { } export interface Parameter$zones$0$hold$delete { /** - * If \`hold_after\` is provided, the hold will be temporarily disabled, + * If `hold_after` is provided, the hold will be temporarily disabled, * then automatically re-enabled by the system at the time specified * in this RFC3339-formatted timestamp. Otherwise, the hold will be * disabled indefinitely. @@ -50318,13 +50315,13 @@ export interface ApiClient { } export class Client { private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } /** * List Accounts * List all accounts you have ownership or verified access to. */ public async accounts$list$accounts(params: Params$accounts$list$accounts, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts\`; + const url = this.baseUrl + `/accounts`; const headers = { Accept: "application/json" }; @@ -50346,7 +50343,7 @@ export class Client { * Gets a list of all alert types for which an account is eligible. */ public async notification$alert$types$get$alert$types(params: Params$notification$alert$types$get$alert$types, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/available_alerts\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/available_alerts`; const headers = { Accept: "application/json" }; @@ -50361,7 +50358,7 @@ export class Client { * Get a list of all delivery mechanism types for which an account is eligible. */ public async notification$mechanism$eligibility$get$delivery$mechanism$eligibility(params: Params$notification$mechanism$eligibility$get$delivery$mechanism$eligibility, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/eligible\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/eligible`; const headers = { Accept: "application/json" }; @@ -50376,7 +50373,7 @@ export class Client { * Get a list of all configured PagerDuty services. */ public async notification$destinations$with$pager$duty$list$pager$duty$services(params: Params$notification$destinations$with$pager$duty$list$pager$duty$services, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty`; const headers = { Accept: "application/json" }; @@ -50391,7 +50388,7 @@ export class Client { * Deletes all the PagerDuty Services connected to the account. */ public async notification$destinations$with$pager$duty$delete$pager$duty$services(params: Params$notification$destinations$with$pager$duty$delete$pager$duty$services, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty`; const headers = { Accept: "application/json" }; @@ -50406,7 +50403,7 @@ export class Client { * Creates a new token for integrating with PagerDuty. */ public async notification$destinations$with$pager$duty$connect$pager$duty(params: Params$notification$destinations$with$pager$duty$connect$pager$duty, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect`; const headers = { Accept: "application/json" }; @@ -50421,7 +50418,7 @@ export class Client { * Links PagerDuty with the account using the integration token. */ public async notification$destinations$with$pager$duty$connect$pager$duty$token(params: Params$notification$destinations$with$pager$duty$connect$pager$duty$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect/\${encodeURIComponent(params.parameter.token_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect/${encodeURIComponent(params.parameter.token_id)}`; const headers = { Accept: "application/json" }; @@ -50436,7 +50433,7 @@ export class Client { * Gets a list of all configured webhook destinations. */ public async notification$webhooks$list$webhooks(params: Params$notification$webhooks$list$webhooks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks`; const headers = { Accept: "application/json" }; @@ -50451,7 +50448,7 @@ export class Client { * Creates a new webhook destination. */ public async notification$webhooks$create$a$webhook(params: Params$notification$webhooks$create$a$webhook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50468,7 +50465,7 @@ export class Client { * Get details for a single webhooks destination. */ public async notification$webhooks$get$a$webhook(params: Params$notification$webhooks$get$a$webhook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { Accept: "application/json" }; @@ -50483,7 +50480,7 @@ export class Client { * Update a webhook destination. */ public async notification$webhooks$update$a$webhook(params: Params$notification$webhooks$update$a$webhook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50500,7 +50497,7 @@ export class Client { * Delete a configured webhook destination. */ public async notification$webhooks$delete$a$webhook(params: Params$notification$webhooks$delete$a$webhook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { Accept: "application/json" }; @@ -50512,10 +50509,10 @@ export class Client { } /** * List History - * Gets a list of history records for notifications sent to an account. The records are displayed for last \`x\` number of days based on the zone plan (free = 30, pro = 30, biz = 30, ent = 90). + * Gets a list of history records for notifications sent to an account. The records are displayed for last `x` number of days based on the zone plan (free = 30, pro = 30, biz = 30, ent = 90). */ public async notification$history$list$history(params: Params$notification$history$list$history, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/history\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/history`; const headers = { Accept: "application/json" }; @@ -50537,7 +50534,7 @@ export class Client { * Get a list of all Notification policies. */ public async notification$policies$list$notification$policies(params: Params$notification$policies$list$notification$policies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies`; const headers = { Accept: "application/json" }; @@ -50552,7 +50549,7 @@ export class Client { * Creates a new Notification policy. */ public async notification$policies$create$a$notification$policy(params: Params$notification$policies$create$a$notification$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50569,7 +50566,7 @@ export class Client { * Get details for a single policy. */ public async notification$policies$get$a$notification$policy(params: Params$notification$policies$get$a$notification$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -50584,7 +50581,7 @@ export class Client { * Update a Notification policy. */ public async notification$policies$update$a$notification$policy(params: Params$notification$policies$update$a$notification$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50601,7 +50598,7 @@ export class Client { * Delete a Notification policy. */ public async notification$policies$delete$a$notification$policy(params: Params$notification$policies$delete$a$notification$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -50613,7 +50610,7 @@ export class Client { } /** Submit suspicious URL for scanning */ public async phishing$url$scanner$submit$suspicious$url$for$scanning(params: Params$phishing$url$scanner$submit$suspicious$url$for$scanning, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/brand-protection/submit\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/brand-protection/submit`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50627,7 +50624,7 @@ export class Client { } /** Get results for a URL scan */ public async phishing$url$information$get$results$for$a$url$scan(params: Params$phishing$url$information$get$results$for$a$url$scan, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/brand-protection/url-info\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/brand-protection/url-info`; const headers = { Accept: "application/json" }; @@ -50647,7 +50644,7 @@ export class Client { * Lists and filters Cloudflare Tunnels in an account. */ public async cloudflare$tunnel$list$cloudflare$tunnels(params: Params$cloudflare$tunnel$list$cloudflare$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel`; const headers = { Accept: "application/json" }; @@ -50675,7 +50672,7 @@ export class Client { * Creates a new Cloudflare Tunnel in an account. */ public async cloudflare$tunnel$create$a$cloudflare$tunnel(params: Params$cloudflare$tunnel$create$a$cloudflare$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50692,7 +50689,7 @@ export class Client { * Fetches a single Cloudflare Tunnel. */ public async cloudflare$tunnel$get$a$cloudflare$tunnel(params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -50707,7 +50704,7 @@ export class Client { * Deletes a Cloudflare Tunnel from an account. */ public async cloudflare$tunnel$delete$a$cloudflare$tunnel(params: Params$cloudflare$tunnel$delete$a$cloudflare$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50724,7 +50721,7 @@ export class Client { * Updates an existing Cloudflare Tunnel. */ public async cloudflare$tunnel$update$a$cloudflare$tunnel(params: Params$cloudflare$tunnel$update$a$cloudflare$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50741,7 +50738,7 @@ export class Client { * Gets the configuration for a remotely-managed tunnel */ public async cloudflare$tunnel$configuration$get$configuration(params: Params$cloudflare$tunnel$configuration$get$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/configurations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/configurations`; const headers = { Accept: "application/json" }; @@ -50756,7 +50753,7 @@ export class Client { * Adds or updates the configuration for a remotely-managed tunnel. */ public async cloudflare$tunnel$configuration$put$configuration(params: Params$cloudflare$tunnel$configuration$put$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/configurations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/configurations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50773,7 +50770,7 @@ export class Client { * Fetches connection details for a Cloudflare Tunnel. */ public async cloudflare$tunnel$list$cloudflare$tunnel$connections(params: Params$cloudflare$tunnel$list$cloudflare$tunnel$connections, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { Accept: "application/json" }; @@ -50788,7 +50785,7 @@ export class Client { * Removes a connection (aka Cloudflare Tunnel Connector) from a Cloudflare Tunnel independently of its current state. If no connector id (client_id) is provided all connectors will be removed. We recommend running this command after rotating tokens. */ public async cloudflare$tunnel$clean$up$cloudflare$tunnel$connections(params: Params$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50809,7 +50806,7 @@ export class Client { * Fetches connector and connection details for a Cloudflare Tunnel. */ public async cloudflare$tunnel$get$cloudflare$tunnel$connector(params: Params$cloudflare$tunnel$get$cloudflare$tunnel$connector, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connectors/\${encodeURIComponent(params.parameter.connector_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connectors/${encodeURIComponent(params.parameter.connector_id)}`; const headers = { Accept: "application/json" }; @@ -50824,7 +50821,7 @@ export class Client { * Gets a management token used to access the management resources (i.e. Streaming Logs) of a tunnel. */ public async cloudflare$tunnel$get$a$cloudflare$tunnel$management$token(params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel$management$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/management\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/management`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50841,7 +50838,7 @@ export class Client { * Gets the token used to associate cloudflared with a specific tunnel. */ public async cloudflare$tunnel$get$a$cloudflare$tunnel$token(params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/token\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/token`; const headers = { Accept: "application/json" }; @@ -50856,7 +50853,7 @@ export class Client { * List an account's custom nameservers. */ public async account$level$custom$nameservers$list$account$custom$nameservers(params: Params$account$level$custom$nameservers$list$account$custom$nameservers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns`; const headers = { Accept: "application/json" }; @@ -50868,7 +50865,7 @@ export class Client { } /** Add Account Custom Nameserver */ public async account$level$custom$nameservers$add$account$custom$nameserver(params: Params$account$level$custom$nameservers$add$account$custom$nameserver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50882,7 +50879,7 @@ export class Client { } /** Delete Account Custom Nameserver */ public async account$level$custom$nameservers$delete$account$custom$nameserver(params: Params$account$level$custom$nameservers$delete$account$custom$nameserver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/\${encodeURIComponent(params.parameter.custom_ns_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/${encodeURIComponent(params.parameter.custom_ns_id)}`; const headers = { Accept: "application/json" }; @@ -50894,7 +50891,7 @@ export class Client { } /** Get Eligible Zones for Account Custom Nameservers */ public async account$level$custom$nameservers$get$eligible$zones$for$account$custom$nameservers(params: Params$account$level$custom$nameservers$get$eligible$zones$for$account$custom$nameservers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/availability\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/availability`; const headers = { Accept: "application/json" }; @@ -50909,7 +50906,7 @@ export class Client { * Verify Account Custom Nameserver Glue Records */ public async account$level$custom$nameservers$verify$account$custom$nameserver$glue$records(params: Params$account$level$custom$nameservers$verify$account$custom$nameserver$glue$records, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/verify\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/verify`; const headers = { Accept: "application/json" }; @@ -50924,7 +50921,7 @@ export class Client { * Returns a list of D1 databases. */ public async cloudflare$d1$list$databases(params: Params$cloudflare$d1$list$databases, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/d1/database\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/d1/database`; const headers = { Accept: "application/json" }; @@ -50945,7 +50942,7 @@ export class Client { * Returns the created D1 database. */ public async cloudflare$d1$create$database(params: Params$cloudflare$d1$create$database, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/d1/database\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/d1/database`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50962,7 +50959,7 @@ export class Client { * List Cloudflare colos that account's devices were connected to during a time period, sorted by usage starting from the most used colo. Colos without traffic are also returned and sorted alphabetically. */ public async dex$endpoints$list$colos(params: Params$dex$endpoints$list$colos, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/colos\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/colos`; const headers = { Accept: "application/json" }; @@ -50983,7 +50980,7 @@ export class Client { * List details for devices using WARP */ public async dex$fleet$status$devices(params: Params$dex$fleet$status$devices, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/devices\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/devices`; const headers = { Accept: "application/json" }; @@ -51012,7 +51009,7 @@ export class Client { * List details for live (up to 60 minutes) devices using WARP */ public async dex$fleet$status$live(params: Params$dex$fleet$status$live, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/live\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/live`; const headers = { Accept: "application/json" }; @@ -51031,7 +51028,7 @@ export class Client { * List details for devices using WARP, up to 7 days */ public async dex$fleet$status$over$time(params: Params$dex$fleet$status$over$time, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/over-time\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/over-time`; const headers = {}; const queryParameters: QueryParameters = { time_end: { value: params.parameter.time_end, explode: false }, @@ -51051,7 +51048,7 @@ export class Client { * Get test details and aggregate performance metrics for an http test for a given time period between 1 hour and 7 days. */ public async dex$endpoints$http$test$details(params: Params$dex$endpoints$http$test$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -51074,7 +51071,7 @@ export class Client { * Get percentiles for an http test for a given time period between 1 hour and 7 days. */ public async dex$endpoints$http$test$percentiles(params: Params$dex$endpoints$http$test$percentiles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/\${encodeURIComponent(params.parameter.test_id)}/percentiles\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/${encodeURIComponent(params.parameter.test_id)}/percentiles`; const headers = { Accept: "application/json" }; @@ -51096,7 +51093,7 @@ export class Client { * List DEX tests */ public async dex$endpoints$list$tests(params: Params$dex$endpoints$list$tests, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/tests\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/tests`; const headers = { Accept: "application/json" }; @@ -51119,7 +51116,7 @@ export class Client { * Returns unique count of devices that have run synthetic application monitoring tests in the past 7 days. */ public async dex$endpoints$tests$unique$devices(params: Params$dex$endpoints$tests$unique$devices, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/tests/unique-devices\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/tests/unique-devices`; const headers = { Accept: "application/json" }; @@ -51139,7 +51136,7 @@ export class Client { * Get a breakdown of hops and performance metrics for a specific traceroute test run */ public async dex$endpoints$traceroute$test$result$network$path(params: Params$dex$endpoints$traceroute$test$result$network$path, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-test-results/\${encodeURIComponent(params.parameter.test_result_id)}/network-path\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-test-results/${encodeURIComponent(params.parameter.test_result_id)}/network-path`; const headers = { Accept: "application/json" }; @@ -51154,7 +51151,7 @@ export class Client { * Get test details and aggregate performance metrics for an traceroute test for a given time period between 1 hour and 7 days. */ public async dex$endpoints$traceroute$test$details(params: Params$dex$endpoints$traceroute$test$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -51177,7 +51174,7 @@ export class Client { * Get a breakdown of metrics by hop for individual traceroute test runs */ public async dex$endpoints$traceroute$test$network$path(params: Params$dex$endpoints$traceroute$test$network$path, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}/network-path\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}/network-path`; const headers = { Accept: "application/json" }; @@ -51199,7 +51196,7 @@ export class Client { * Get percentiles for a traceroute test for a given time period between 1 hour and 7 days. */ public async dex$endpoints$traceroute$test$percentiles(params: Params$dex$endpoints$traceroute$test$percentiles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}/percentiles\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}/percentiles`; const headers = { Accept: "application/json" }; @@ -51221,7 +51218,7 @@ export class Client { * Fetch all datasets with information about available versions. */ public async dlp$datasets$read$all(params: Params$dlp$datasets$read$all, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets`; const headers = { Accept: "application/json" }; @@ -51236,7 +51233,7 @@ export class Client { * Create a new dataset. */ public async dlp$datasets$create(params: Params$dlp$datasets$create, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51253,7 +51250,7 @@ export class Client { * Fetch a specific dataset with information about available versions. */ public async dlp$datasets$read(params: Params$dlp$datasets$read, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = { Accept: "application/json" }; @@ -51268,7 +51265,7 @@ export class Client { * Update details about a dataset. */ public async dlp$datasets$update(params: Params$dlp$datasets$update, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51287,7 +51284,7 @@ export class Client { * This deletes all versions of the dataset. */ public async dlp$datasets$delete(params: Params$dlp$datasets$delete, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -51300,7 +51297,7 @@ export class Client { * Prepare to upload a new version of a dataset. */ public async dlp$datasets$create$version(params: Params$dlp$datasets$create$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/upload\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}/upload`; const headers = { Accept: "application/json" }; @@ -51315,7 +51312,7 @@ export class Client { * Upload a new version of a dataset. */ public async dlp$datasets$upload$version(params: Params$dlp$datasets$upload$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/upload/\${encodeURIComponent(params.parameter.version)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}/upload/${encodeURIComponent(params.parameter.version)}`; const headers = { "Content-Type": "application/octet-stream", Accept: "application/json" @@ -51332,7 +51329,7 @@ export class Client { * Validates whether this pattern is a valid regular expression. Rejects it if the regular expression is too complex or can match an unbounded-length string. Your regex will be rejected if it uses the Kleene Star -- be sure to bound the maximum number of characters that can be matched. */ public async dlp$pattern$validation$validate$pattern(params: Params$dlp$pattern$validation$validate$pattern, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/patterns/validate\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/patterns/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51349,7 +51346,7 @@ export class Client { * Gets the current DLP payload log settings for this account. */ public async dlp$payload$log$settings$get$settings(params: Params$dlp$payload$log$settings$get$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log`; const headers = { Accept: "application/json" }; @@ -51364,7 +51361,7 @@ export class Client { * Updates the DLP payload log settings for this account. */ public async dlp$payload$log$settings$update$settings(params: Params$dlp$payload$log$settings$update$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51381,7 +51378,7 @@ export class Client { * Lists all DLP profiles in an account. */ public async dlp$profiles$list$all$profiles(params: Params$dlp$profiles$list$all$profiles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles`; const headers = { Accept: "application/json" }; @@ -51396,7 +51393,7 @@ export class Client { * Fetches a DLP profile by ID. Supports both predefined and custom profiles */ public async dlp$profiles$get$dlp$profile(params: Params$dlp$profiles$get$dlp$profile, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51411,7 +51408,7 @@ export class Client { * Creates a set of DLP custom profiles. */ public async dlp$profiles$create$custom$profiles(params: Params$dlp$profiles$create$custom$profiles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51428,7 +51425,7 @@ export class Client { * Fetches a custom DLP profile. */ public async dlp$profiles$get$custom$profile(params: Params$dlp$profiles$get$custom$profile, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51443,7 +51440,7 @@ export class Client { * Updates a DLP custom profile. */ public async dlp$profiles$update$custom$profile(params: Params$dlp$profiles$update$custom$profile, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51460,7 +51457,7 @@ export class Client { * Deletes a DLP custom profile. */ public async dlp$profiles$delete$custom$profile(params: Params$dlp$profiles$delete$custom$profile, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51475,7 +51472,7 @@ export class Client { * Fetches a predefined DLP profile. */ public async dlp$profiles$get$predefined$profile(params: Params$dlp$profiles$get$predefined$profile, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51490,7 +51487,7 @@ export class Client { * Updates a DLP predefined profile. Only supports enabling/disabling entries. */ public async dlp$profiles$update$predefined$profile(params: Params$dlp$profiles$update$predefined$profile, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51507,7 +51504,7 @@ export class Client { * List configured DNS Firewall clusters for an account. */ public async dns$firewall$list$dns$firewall$clusters(params: Params$dns$firewall$list$dns$firewall$clusters, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall`; const headers = { Accept: "application/json" }; @@ -51527,7 +51524,7 @@ export class Client { * Create a configured DNS Firewall Cluster. */ public async dns$firewall$create$dns$firewall$cluster(params: Params$dns$firewall$create$dns$firewall$cluster, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51544,7 +51541,7 @@ export class Client { * Show a single configured DNS Firewall cluster for an account. */ public async dns$firewall$dns$firewall$cluster$details(params: Params$dns$firewall$dns$firewall$cluster$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { Accept: "application/json" }; @@ -51559,7 +51556,7 @@ export class Client { * Delete a configured DNS Firewall Cluster. */ public async dns$firewall$delete$dns$firewall$cluster(params: Params$dns$firewall$delete$dns$firewall$cluster, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { Accept: "application/json" }; @@ -51574,7 +51571,7 @@ export class Client { * Modify a DNS Firewall Cluster configuration. */ public async dns$firewall$update$dns$firewall$cluster(params: Params$dns$firewall$update$dns$firewall$cluster, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51591,7 +51588,7 @@ export class Client { * Gets information about the current Zero Trust account. */ public async zero$trust$accounts$get$zero$trust$account$information(params: Params$zero$trust$accounts$get$zero$trust$account$information, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway`; const headers = { Accept: "application/json" }; @@ -51606,7 +51603,7 @@ export class Client { * Creates a Zero Trust account with an existing Cloudflare account. */ public async zero$trust$accounts$create$zero$trust$account(params: Params$zero$trust$accounts$create$zero$trust$account, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway`; const headers = { Accept: "application/json" }; @@ -51621,7 +51618,7 @@ export class Client { * Fetches all application and application type mappings. */ public async zero$trust$gateway$application$and$application$type$mappings$list$application$and$application$type$mappings(params: Params$zero$trust$gateway$application$and$application$type$mappings$list$application$and$application$type$mappings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/app_types\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/app_types`; const headers = { Accept: "application/json" }; @@ -51636,7 +51633,7 @@ export class Client { * Get all Zero Trust Audit SSH settings for an account. */ public async zero$trust$get$audit$ssh$settings(params: Params$zero$trust$get$audit$ssh$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings`; const headers = { Accept: "application/json" }; @@ -51651,7 +51648,7 @@ export class Client { * Updates Zero Trust Audit SSH settings. */ public async zero$trust$update$audit$ssh$settings(params: Params$zero$trust$update$audit$ssh$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51668,7 +51665,7 @@ export class Client { * Fetches a list of all categories. */ public async zero$trust$gateway$categories$list$categories(params: Params$zero$trust$gateway$categories$list$categories, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/categories\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/categories`; const headers = { Accept: "application/json" }; @@ -51683,7 +51680,7 @@ export class Client { * Fetches the current Zero Trust account configuration. */ public async zero$trust$accounts$get$zero$trust$account$configuration(params: Params$zero$trust$accounts$get$zero$trust$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { Accept: "application/json" }; @@ -51698,7 +51695,7 @@ export class Client { * Updates the current Zero Trust account configuration. */ public async zero$trust$accounts$update$zero$trust$account$configuration(params: Params$zero$trust$accounts$update$zero$trust$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51712,10 +51709,10 @@ export class Client { } /** * Patch Zero Trust account configuration - * Patches the current Zero Trust account configuration. This endpoint can update a single subcollection of settings such as \`antivirus\`, \`tls_decrypt\`, \`activity_log\`, \`block_page\`, \`browser_isolation\`, \`fips\`, \`body_scanning\`, or \`custom_certificate\`, without updating the entire configuration object. Returns an error if any collection of settings is not properly configured. + * Patches the current Zero Trust account configuration. This endpoint can update a single subcollection of settings such as `antivirus`, `tls_decrypt`, `activity_log`, `block_page`, `browser_isolation`, `fips`, `body_scanning`, or `custom_certificate`, without updating the entire configuration object. Returns an error if any collection of settings is not properly configured. */ public async zero$trust$accounts$patch$zero$trust$account$configuration(params: Params$zero$trust$accounts$patch$zero$trust$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51732,7 +51729,7 @@ export class Client { * Fetches all Zero Trust lists for an account. */ public async zero$trust$lists$list$zero$trust$lists(params: Params$zero$trust$lists$list$zero$trust$lists, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists`; const headers = { Accept: "application/json" }; @@ -51747,7 +51744,7 @@ export class Client { * Creates a new Zero Trust list. */ public async zero$trust$lists$create$zero$trust$list(params: Params$zero$trust$lists$create$zero$trust$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51764,7 +51761,7 @@ export class Client { * Fetches a single Zero Trust list. */ public async zero$trust$lists$zero$trust$list$details(params: Params$zero$trust$lists$zero$trust$list$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -51779,7 +51776,7 @@ export class Client { * Updates a configured Zero Trust list. */ public async zero$trust$lists$update$zero$trust$list(params: Params$zero$trust$lists$update$zero$trust$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51796,7 +51793,7 @@ export class Client { * Deletes a Zero Trust list. */ public async zero$trust$lists$delete$zero$trust$list(params: Params$zero$trust$lists$delete$zero$trust$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -51811,7 +51808,7 @@ export class Client { * Appends or removes an item from a configured Zero Trust list. */ public async zero$trust$lists$patch$zero$trust$list(params: Params$zero$trust$lists$patch$zero$trust$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51828,7 +51825,7 @@ export class Client { * Fetches all items in a single Zero Trust list. */ public async zero$trust$lists$zero$trust$list$items(params: Params$zero$trust$lists$zero$trust$list$items, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { Accept: "application/json" }; @@ -51843,7 +51840,7 @@ export class Client { * Fetches Zero Trust Gateway locations for an account. */ public async zero$trust$gateway$locations$list$zero$trust$gateway$locations(params: Params$zero$trust$gateway$locations$list$zero$trust$gateway$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations`; const headers = { Accept: "application/json" }; @@ -51858,7 +51855,7 @@ export class Client { * Creates a new Zero Trust Gateway location. */ public async zero$trust$gateway$locations$create$zero$trust$gateway$location(params: Params$zero$trust$gateway$locations$create$zero$trust$gateway$location, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51875,7 +51872,7 @@ export class Client { * Fetches a single Zero Trust Gateway location. */ public async zero$trust$gateway$locations$zero$trust$gateway$location$details(params: Params$zero$trust$gateway$locations$zero$trust$gateway$location$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { Accept: "application/json" }; @@ -51890,7 +51887,7 @@ export class Client { * Updates a configured Zero Trust Gateway location. */ public async zero$trust$gateway$locations$update$zero$trust$gateway$location(params: Params$zero$trust$gateway$locations$update$zero$trust$gateway$location, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51907,7 +51904,7 @@ export class Client { * Deletes a configured Zero Trust Gateway location. */ public async zero$trust$gateway$locations$delete$zero$trust$gateway$location(params: Params$zero$trust$gateway$locations$delete$zero$trust$gateway$location, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { Accept: "application/json" }; @@ -51922,7 +51919,7 @@ export class Client { * Fetches the current logging settings for Zero Trust account. */ public async zero$trust$accounts$get$logging$settings$for$the$zero$trust$account(params: Params$zero$trust$accounts$get$logging$settings$for$the$zero$trust$account, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/logging\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/logging`; const headers = { Accept: "application/json" }; @@ -51937,7 +51934,7 @@ export class Client { * Updates logging settings for the current Zero Trust account. */ public async zero$trust$accounts$update$logging$settings$for$the$zero$trust$account(params: Params$zero$trust$accounts$update$logging$settings$for$the$zero$trust$account, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/logging\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/logging`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51954,7 +51951,7 @@ export class Client { * Fetches a single Zero Trust Gateway proxy endpoint. */ public async zero$trust$gateway$proxy$endpoints$list$proxy$endpoints(params: Params$zero$trust$gateway$proxy$endpoints$list$proxy$endpoints, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints`; const headers = { Accept: "application/json" }; @@ -51969,7 +51966,7 @@ export class Client { * Creates a new Zero Trust Gateway proxy endpoint. */ public async zero$trust$gateway$proxy$endpoints$create$proxy$endpoint(params: Params$zero$trust$gateway$proxy$endpoints$create$proxy$endpoint, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51986,7 +51983,7 @@ export class Client { * Fetches all Zero Trust Gateway proxy endpoints for an account. */ public async zero$trust$gateway$proxy$endpoints$proxy$endpoint$details(params: Params$zero$trust$gateway$proxy$endpoints$proxy$endpoint$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { Accept: "application/json" }; @@ -52001,7 +51998,7 @@ export class Client { * Deletes a configured Zero Trust Gateway proxy endpoint. */ public async zero$trust$gateway$proxy$endpoints$delete$proxy$endpoint(params: Params$zero$trust$gateway$proxy$endpoints$delete$proxy$endpoint, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { Accept: "application/json" }; @@ -52016,7 +52013,7 @@ export class Client { * Updates a configured Zero Trust Gateway proxy endpoint. */ public async zero$trust$gateway$proxy$endpoints$update$proxy$endpoint(params: Params$zero$trust$gateway$proxy$endpoints$update$proxy$endpoint, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52033,7 +52030,7 @@ export class Client { * Fetches the Zero Trust Gateway rules for an account. */ public async zero$trust$gateway$rules$list$zero$trust$gateway$rules(params: Params$zero$trust$gateway$rules$list$zero$trust$gateway$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules`; const headers = { Accept: "application/json" }; @@ -52048,7 +52045,7 @@ export class Client { * Creates a new Zero Trust Gateway rule. */ public async zero$trust$gateway$rules$create$zero$trust$gateway$rule(params: Params$zero$trust$gateway$rules$create$zero$trust$gateway$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52065,7 +52062,7 @@ export class Client { * Fetches a single Zero Trust Gateway rule. */ public async zero$trust$gateway$rules$zero$trust$gateway$rule$details(params: Params$zero$trust$gateway$rules$zero$trust$gateway$rule$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -52080,7 +52077,7 @@ export class Client { * Updates a configured Zero Trust Gateway rule. */ public async zero$trust$gateway$rules$update$zero$trust$gateway$rule(params: Params$zero$trust$gateway$rules$update$zero$trust$gateway$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52097,7 +52094,7 @@ export class Client { * Deletes a Zero Trust Gateway rule. */ public async zero$trust$gateway$rules$delete$zero$trust$gateway$rule(params: Params$zero$trust$gateway$rules$delete$zero$trust$gateway$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -52112,7 +52109,7 @@ export class Client { * Returns a list of Hyperdrives */ public async list$hyperdrive(params: Params$list$hyperdrive, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs`; const headers = { Accept: "application/json" }; @@ -52127,7 +52124,7 @@ export class Client { * Creates and returns a new Hyperdrive configuration. */ public async create$hyperdrive(params: Params$create$hyperdrive, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52144,7 +52141,7 @@ export class Client { * Returns the specified Hyperdrive configuration. */ public async get$hyperdrive(params: Params$get$hyperdrive, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { Accept: "application/json" }; @@ -52159,7 +52156,7 @@ export class Client { * Updates and returns the specified Hyperdrive configuration. */ public async update$hyperdrive(params: Params$update$hyperdrive, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52176,7 +52173,7 @@ export class Client { * Deletes the specified Hyperdrive. */ public async delete$hyperdrive(params: Params$delete$hyperdrive, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { Accept: "application/json" }; @@ -52192,7 +52189,7 @@ export class Client { * List up to 100 images with one request. Use the optional parameters below to get a specific range of images. */ public async cloudflare$images$list$images(params: Params$cloudflare$images$list$images, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1`; const headers = { Accept: "application/json" }; @@ -52213,7 +52210,7 @@ export class Client { * An image can be uploaded by sending an image file or passing an accessible to an API url. */ public async cloudflare$images$upload$an$image$via$url(params: Params$cloudflare$images$upload$an$image$via$url, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52230,7 +52227,7 @@ export class Client { * Fetch details for a single image. */ public async cloudflare$images$image$details(params: Params$cloudflare$images$image$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { Accept: "application/json" }; @@ -52245,7 +52242,7 @@ export class Client { * Delete an image on Cloudflare Images. On success, all copies of the image are deleted and purged from cache. */ public async cloudflare$images$delete$image(params: Params$cloudflare$images$delete$image, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { Accept: "application/json" }; @@ -52260,7 +52257,7 @@ export class Client { * Update image access control. On access control change, all copies of the image are purged from cache. */ public async cloudflare$images$update$image(params: Params$cloudflare$images$update$image, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52277,7 +52274,7 @@ export class Client { * Fetch base image. For most images this will be the originally uploaded file. For larger images it can be a near-lossless version of the original. */ public async cloudflare$images$base$image(params: Params$cloudflare$images$base$image, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}/blob\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}/blob`; const headers = { Accept: "image/*" }; @@ -52292,7 +52289,7 @@ export class Client { * Lists your signing keys. These can be found on your Cloudflare Images dashboard. */ public async cloudflare$images$keys$list$signing$keys(params: Params$cloudflare$images$keys$list$signing$keys, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/keys\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/keys`; const headers = { Accept: "application/json" }; @@ -52307,7 +52304,7 @@ export class Client { * Fetch usage statistics details for Cloudflare Images. */ public async cloudflare$images$images$usage$statistics(params: Params$cloudflare$images$images$usage$statistics, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/stats\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/stats`; const headers = { Accept: "application/json" }; @@ -52322,7 +52319,7 @@ export class Client { * Lists existing variants. */ public async cloudflare$images$variants$list$variants(params: Params$cloudflare$images$variants$list$variants, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants`; const headers = { Accept: "application/json" }; @@ -52337,7 +52334,7 @@ export class Client { * Specify variants that allow you to resize images for different use cases. */ public async cloudflare$images$variants$create$a$variant(params: Params$cloudflare$images$variants$create$a$variant, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52354,7 +52351,7 @@ export class Client { * Fetch details for a single variant. */ public async cloudflare$images$variants$variant$details(params: Params$cloudflare$images$variants$variant$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { Accept: "application/json" }; @@ -52369,7 +52366,7 @@ export class Client { * Deleting a variant purges the cache for all images associated with the variant. */ public async cloudflare$images$variants$delete$a$variant(params: Params$cloudflare$images$variants$delete$a$variant, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { Accept: "application/json" }; @@ -52384,7 +52381,7 @@ export class Client { * Updating a variant purges the cache for all images associated with the variant. */ public async cloudflare$images$variants$update$a$variant(params: Params$cloudflare$images$variants$update$a$variant, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52402,7 +52399,7 @@ export class Client { * Endpoint returns continuation_token if more images are present. */ public async cloudflare$images$list$images$v2(params: Params$cloudflare$images$list$images$v2, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v2\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v2`; const headers = { Accept: "application/json" }; @@ -52420,10 +52417,10 @@ export class Client { } /** * Create authenticated direct upload URL V2 - * Direct uploads allow users to upload images without API keys. A common use case are web apps, client-side applications, or mobile devices where users upload content directly to Cloudflare Images. This method creates a draft record for a future image. It returns an upload URL and an image identifier. To verify if the image itself has been uploaded, send an image details request (accounts/:account_identifier/images/v1/:identifier), and check that the \`draft: true\` property is not present. + * Direct uploads allow users to upload images without API keys. A common use case are web apps, client-side applications, or mobile devices where users upload content directly to Cloudflare Images. This method creates a draft record for a future image. It returns an upload URL and an image identifier. To verify if the image itself has been uploaded, send an image details request (accounts/:account_identifier/images/v1/:identifier), and check that the `draft: true` property is not present. */ public async cloudflare$images$create$authenticated$direct$upload$url$v$2(params: Params$cloudflare$images$create$authenticated$direct$upload$url$v$2, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v2/direct_upload\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v2/direct_upload`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52437,7 +52434,7 @@ export class Client { } /** Get ASN Overview */ public async asn$intelligence$get$asn$overview(params: Params$asn$intelligence$get$asn$overview, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/asn/\${encodeURIComponent(params.parameter.asn)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/asn/${encodeURIComponent(params.parameter.asn)}`; const headers = { Accept: "application/json" }; @@ -52449,7 +52446,7 @@ export class Client { } /** Get ASN Subnets */ public async asn$intelligence$get$asn$subnets(params: Params$asn$intelligence$get$asn$subnets, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/asn/\${encodeURIComponent(params.parameter.asn)}/subnets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/asn/${encodeURIComponent(params.parameter.asn)}/subnets`; const headers = { Accept: "application/json" }; @@ -52461,7 +52458,7 @@ export class Client { } /** Get Passive DNS by IP */ public async passive$dns$by$ip$get$passive$dns$by$ip(params: Params$passive$dns$by$ip$get$passive$dns$by$ip, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/dns\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/dns`; const headers = { Accept: "application/json" }; @@ -52480,7 +52477,7 @@ export class Client { } /** Get Domain Details */ public async domain$intelligence$get$domain$details(params: Params$domain$intelligence$get$domain$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain`; const headers = { Accept: "application/json" }; @@ -52496,7 +52493,7 @@ export class Client { } /** Get Domain History */ public async domain$history$get$domain$history(params: Params$domain$history$get$domain$history, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain-history\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain-history`; const headers = { Accept: "application/json" }; @@ -52512,7 +52509,7 @@ export class Client { } /** Get Multiple Domain Details */ public async domain$intelligence$get$multiple$domain$details(params: Params$domain$intelligence$get$multiple$domain$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain/bulk\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain/bulk`; const headers = { Accept: "application/json" }; @@ -52528,7 +52525,7 @@ export class Client { } /** Get IP Overview */ public async ip$intelligence$get$ip$overview(params: Params$ip$intelligence$get$ip$overview, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/ip\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/ip`; const headers = { Accept: "application/json" }; @@ -52545,7 +52542,7 @@ export class Client { } /** Get IP Lists */ public async ip$list$get$ip$lists(params: Params$ip$list$get$ip$lists, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/ip-list\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/ip-list`; const headers = { Accept: "application/json" }; @@ -52557,7 +52554,7 @@ export class Client { } /** Create Miscategorization */ public async miscategorization$create$miscategorization(params: Params$miscategorization$create$miscategorization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/miscategorization\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/miscategorization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52571,7 +52568,7 @@ export class Client { } /** Get WHOIS Record */ public async whois$record$get$whois$record(params: Params$whois$record$get$whois$record, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/whois\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/whois`; const headers = { Accept: "application/json" }; @@ -52590,7 +52587,7 @@ export class Client { * Lists all fields available for a dataset. The response result is an object with key-value pairs, where keys are field names, and values are descriptions. */ public async get$accounts$account_identifier$logpush$datasets$dataset$fields(params: Params$get$accounts$account_identifier$logpush$datasets$dataset$fields, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/fields\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/fields`; const headers = { Accept: "application/json" }; @@ -52605,7 +52602,7 @@ export class Client { * Lists Logpush jobs for an account for a dataset. */ public async get$accounts$account_identifier$logpush$datasets$dataset$jobs(params: Params$get$accounts$account_identifier$logpush$datasets$dataset$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/jobs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/jobs`; const headers = { Accept: "application/json" }; @@ -52620,7 +52617,7 @@ export class Client { * Lists Logpush jobs for an account. */ public async get$accounts$account_identifier$logpush$jobs(params: Params$get$accounts$account_identifier$logpush$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs`; const headers = { Accept: "application/json" }; @@ -52635,7 +52632,7 @@ export class Client { * Creates a new Logpush job for an account. */ public async post$accounts$account_identifier$logpush$jobs(params: Params$post$accounts$account_identifier$logpush$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52652,7 +52649,7 @@ export class Client { * Gets the details of a Logpush job. */ public async get$accounts$account_identifier$logpush$jobs$job_identifier(params: Params$get$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -52667,7 +52664,7 @@ export class Client { * Updates a Logpush job. */ public async put$accounts$account_identifier$logpush$jobs$job_identifier(params: Params$put$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52684,7 +52681,7 @@ export class Client { * Deletes a Logpush job. */ public async delete$accounts$account_identifier$logpush$jobs$job_identifier(params: Params$delete$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -52699,7 +52696,7 @@ export class Client { * Gets a new ownership challenge sent to your destination. */ public async post$accounts$account_identifier$logpush$ownership(params: Params$post$accounts$account_identifier$logpush$ownership, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/ownership\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52716,7 +52713,7 @@ export class Client { * Validates ownership challenge of the destination. */ public async post$accounts$account_identifier$logpush$ownership$validate(params: Params$post$accounts$account_identifier$logpush$ownership$validate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/ownership/validate\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52733,7 +52730,7 @@ export class Client { * Checks if there is an existing job with a destination. */ public async delete$accounts$account_identifier$logpush$validate$destination$exists(params: Params$delete$accounts$account_identifier$logpush$validate$destination$exists, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/validate/destination/exists\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/validate/destination/exists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52750,7 +52747,7 @@ export class Client { * Validates logpull origin with logpull_options. */ public async post$accounts$account_identifier$logpush$validate$origin(params: Params$post$accounts$account_identifier$logpush$validate$origin, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/validate/origin\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/validate/origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52767,7 +52764,7 @@ export class Client { * Gets CMB config. */ public async get$accounts$account_identifier$logs$control$cmb$config(params: Params$get$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { Accept: "application/json" }; @@ -52782,7 +52779,7 @@ export class Client { * Updates CMB config. */ public async put$accounts$account_identifier$logs$control$cmb$config(params: Params$put$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52799,7 +52796,7 @@ export class Client { * Deletes CMB config. */ public async delete$accounts$account_identifier$logs$control$cmb$config(params: Params$delete$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { Accept: "application/json" }; @@ -52814,7 +52811,7 @@ export class Client { * Fetch a list of all user projects. */ public async pages$project$get$projects(params: Params$pages$project$get$projects, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects`; const headers = { Accept: "application/json" }; @@ -52829,7 +52826,7 @@ export class Client { * Create a new project. */ public async pages$project$create$project(params: Params$pages$project$create$project, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52846,7 +52843,7 @@ export class Client { * Fetch a project by name. */ public async pages$project$get$project(params: Params$pages$project$get$project, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { Accept: "application/json" }; @@ -52861,7 +52858,7 @@ export class Client { * Delete a project by name. */ public async pages$project$delete$project(params: Params$pages$project$delete$project, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { Accept: "application/json" }; @@ -52876,7 +52873,7 @@ export class Client { * Set new attributes for an existing project. Modify environment variables. To delete an environment variable, set the key to null. */ public async pages$project$update$project(params: Params$pages$project$update$project, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52893,7 +52890,7 @@ export class Client { * Fetch a list of project deployments. */ public async pages$deployment$get$deployments(params: Params$pages$deployment$get$deployments, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments`; const headers = { Accept: "application/json" }; @@ -52908,7 +52905,7 @@ export class Client { * Start a new deployment from production. The repository and account must have already been authorized on the Cloudflare Pages dashboard. */ public async pages$deployment$create$deployment(params: Params$pages$deployment$create$deployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52925,7 +52922,7 @@ export class Client { * Fetch information about a deployment. */ public async pages$deployment$get$deployment$info(params: Params$pages$deployment$get$deployment$info, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -52940,7 +52937,7 @@ export class Client { * Delete a deployment. */ public async pages$deployment$delete$deployment(params: Params$pages$deployment$delete$deployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -52955,7 +52952,7 @@ export class Client { * Fetch deployment logs for a project. */ public async pages$deployment$get$deployment$logs(params: Params$pages$deployment$get$deployment$logs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/history/logs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/history/logs`; const headers = { Accept: "application/json" }; @@ -52970,7 +52967,7 @@ export class Client { * Retry a previous deployment. */ public async pages$deployment$retry$deployment(params: Params$pages$deployment$retry$deployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/retry\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/retry`; const headers = { Accept: "application/json" }; @@ -52985,7 +52982,7 @@ export class Client { * Rollback the production deployment to a previous deployment. You can only rollback to succesful builds on production. */ public async pages$deployment$rollback$deployment(params: Params$pages$deployment$rollback$deployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/rollback\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/rollback`; const headers = { Accept: "application/json" }; @@ -53000,7 +52997,7 @@ export class Client { * Fetch a list of all domains associated with a Pages project. */ public async pages$domains$get$domains(params: Params$pages$domains$get$domains, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains`; const headers = { Accept: "application/json" }; @@ -53015,7 +53012,7 @@ export class Client { * Add a new domain for the Pages project. */ public async pages$domains$add$domain(params: Params$pages$domains$add$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53032,7 +53029,7 @@ export class Client { * Fetch a single domain. */ public async pages$domains$get$domain(params: Params$pages$domains$get$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53047,7 +53044,7 @@ export class Client { * Delete a Pages project's domain. */ public async pages$domains$delete$domain(params: Params$pages$domains$delete$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53062,7 +53059,7 @@ export class Client { * Retry the validation status of a single domain. */ public async pages$domains$patch$domain(params: Params$pages$domains$patch$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53077,7 +53074,7 @@ export class Client { * Purge all cached build artifacts for a Pages project */ public async pages$purge$build$cache(params: Params$pages$purge$build$cache, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/purge_build_cache\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/purge_build_cache`; const headers = { Accept: "application/json" }; @@ -53092,7 +53089,7 @@ export class Client { * Lists all R2 buckets on your account */ public async r2$list$buckets(params: Params$r2$list$buckets, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets`; const headers = { Accept: "application/json" }; @@ -53116,7 +53113,7 @@ export class Client { * Creates a new R2 bucket. */ public async r2$create$bucket(params: Params$r2$create$bucket, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53133,7 +53130,7 @@ export class Client { * Gets metadata for an existing R2 bucket. */ public async r2$get$bucket(params: Params$r2$get$bucket, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}`; const headers = { Accept: "application/json" }; @@ -53148,7 +53145,7 @@ export class Client { * Deletes an existing R2 bucket. */ public async r2$delete$bucket(params: Params$r2$delete$bucket, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}`; const headers = { Accept: "application/json" }; @@ -53163,7 +53160,7 @@ export class Client { * Gets configuration for Sippy for an existing R2 bucket. */ public async r2$get$bucket$sippy$config(params: Params$r2$get$bucket$sippy$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { Accept: "application/json" }; @@ -53178,7 +53175,7 @@ export class Client { * Sets configuration for Sippy for an existing R2 bucket. */ public async r2$put$bucket$sippy$config(params: Params$r2$put$bucket$sippy$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53195,7 +53192,7 @@ export class Client { * Disables Sippy on this bucket */ public async r2$delete$bucket$sippy$config(params: Params$r2$delete$bucket$sippy$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { Accept: "application/json" }; @@ -53210,7 +53207,7 @@ export class Client { * List domains handled by Registrar. */ public async registrar$domains$list$domains(params: Params$registrar$domains$list$domains, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains`; const headers = { Accept: "application/json" }; @@ -53225,7 +53222,7 @@ export class Client { * Show individual domain. */ public async registrar$domains$get$domain(params: Params$registrar$domains$get$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53240,7 +53237,7 @@ export class Client { * Update individual domain. */ public async registrar$domains$update$domain(params: Params$registrar$domains$update$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53257,7 +53254,7 @@ export class Client { * Fetches all lists in the account. */ public async lists$get$lists(params: Params$lists$get$lists, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists`; const headers = { Accept: "application/json" }; @@ -53272,7 +53269,7 @@ export class Client { * Creates a new list of the specified type. */ public async lists$create$a$list(params: Params$lists$create$a$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53289,7 +53286,7 @@ export class Client { * Fetches the details of a list. */ public async lists$get$a$list(params: Params$lists$get$a$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -53304,7 +53301,7 @@ export class Client { * Updates the description of a list. */ public async lists$update$a$list(params: Params$lists$update$a$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53321,7 +53318,7 @@ export class Client { * Deletes a specific list and all its items. */ public async lists$delete$a$list(params: Params$lists$delete$a$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -53336,7 +53333,7 @@ export class Client { * Fetches all the items in the list. */ public async lists$get$list$items(params: Params$lists$get$list$items, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { Accept: "application/json" }; @@ -53356,10 +53353,10 @@ export class Client { * Update all list items * Removes all existing items from the list and adds the provided items to the list. * - * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned \`operation_id\`. + * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned `operation_id`. */ public async lists$update$all$list$items(params: Params$lists$update$all$list$items, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53375,10 +53372,10 @@ export class Client { * Create list items * Appends new items to the list. * - * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned \`operation_id\`. + * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned `operation_id`. */ public async lists$create$list$items(params: Params$lists$create$list$items, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53394,10 +53391,10 @@ export class Client { * Delete list items * Removes one or more items from a list. * - * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned \`operation_id\`. + * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned `operation_id`. */ public async lists$delete$list$items(params: Params$lists$delete$list$items, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53414,7 +53411,7 @@ export class Client { * Fetches all rulesets at the account level. */ public async listAccountRulesets(params: Params$listAccountRulesets, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets`; const headers = { Accept: "application/json" }; @@ -53429,7 +53426,7 @@ export class Client { * Creates a ruleset at the account level. */ public async createAccountRuleset(params: Params$createAccountRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53446,7 +53443,7 @@ export class Client { * Fetches the latest version of an account ruleset. */ public async getAccountRuleset(params: Params$getAccountRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { Accept: "application/json" }; @@ -53461,7 +53458,7 @@ export class Client { * Updates an account ruleset, creating a new version. */ public async updateAccountRuleset(params: Params$updateAccountRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53478,7 +53475,7 @@ export class Client { * Deletes all versions of an existing account ruleset. */ public async deleteAccountRuleset(params: Params$deleteAccountRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -53491,7 +53488,7 @@ export class Client { * Adds a new rule to an account ruleset. The rule will be added to the end of the existing list of rules in the ruleset by default. */ public async createAccountRulesetRule(params: Params$createAccountRulesetRule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53508,7 +53505,7 @@ export class Client { * Deletes an existing rule from an account ruleset. */ public async deleteAccountRulesetRule(params: Params$deleteAccountRulesetRule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -53523,7 +53520,7 @@ export class Client { * Updates an existing rule in an account ruleset. */ public async updateAccountRulesetRule(params: Params$updateAccountRulesetRule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53540,7 +53537,7 @@ export class Client { * Fetches the versions of an account ruleset. */ public async listAccountRulesetVersions(params: Params$listAccountRulesetVersions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions`; const headers = { Accept: "application/json" }; @@ -53555,7 +53552,7 @@ export class Client { * Fetches a specific version of an account ruleset. */ public async getAccountRulesetVersion(params: Params$getAccountRulesetVersion, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -53570,7 +53567,7 @@ export class Client { * Deletes an existing version of an account ruleset. */ public async deleteAccountRulesetVersion(params: Params$deleteAccountRulesetVersion, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -53583,7 +53580,7 @@ export class Client { * Fetches the rules of a managed account ruleset version for a given tag. */ public async listAccountRulesetVersionRulesByTag(params: Params$listAccountRulesetVersionRulesByTag, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}/by_tag/\${encodeURIComponent(params.parameter.rule_tag)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}/by_tag/${encodeURIComponent(params.parameter.rule_tag)}`; const headers = { Accept: "application/json" }; @@ -53598,7 +53595,7 @@ export class Client { * Fetches the latest version of the account entry point ruleset for a given phase. */ public async getAccountEntrypointRuleset(params: Params$getAccountEntrypointRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { Accept: "application/json" }; @@ -53613,7 +53610,7 @@ export class Client { * Updates an account entry point ruleset, creating a new version. */ public async updateAccountEntrypointRuleset(params: Params$updateAccountEntrypointRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53630,7 +53627,7 @@ export class Client { * Fetches the versions of an account entry point ruleset. */ public async listAccountEntrypointRulesetVersions(params: Params$listAccountEntrypointRulesetVersions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions`; const headers = { Accept: "application/json" }; @@ -53645,7 +53642,7 @@ export class Client { * Fetches a specific version of an account entry point ruleset. */ public async getAccountEntrypointRulesetVersion(params: Params$getAccountEntrypointRulesetVersion, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -53660,7 +53657,7 @@ export class Client { * Lists up to 1000 videos from a single request. For a specific range, refer to the optional parameters. */ public async stream$videos$list$videos(params: Params$stream$videos$list$videos, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream`; const headers = { Accept: "application/json" }; @@ -53683,10 +53680,10 @@ export class Client { } /** * Initiate video uploads using TUS - * Initiates a video upload using the TUS protocol. On success, the server responds with a status code 201 (created) and includes a \`location\` header to indicate where the content should be uploaded. Refer to https://tus.io for protocol details. + * Initiates a video upload using the TUS protocol. On success, the server responds with a status code 201 (created) and includes a `location` header to indicate where the content should be uploaded. Refer to https://tus.io for protocol details. */ public async stream$videos$initiate$video$uploads$using$tus(params: Params$stream$videos$initiate$video$uploads$using$tus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream`; const headers = { "Tus-Resumable": params.parameter["Tus-Resumable"], "Upload-Creator": params.parameter["Upload-Creator"], @@ -53704,7 +53701,7 @@ export class Client { * Fetches details for a single video. */ public async stream$videos$retrieve$video$details(params: Params$stream$videos$retrieve$video$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -53719,7 +53716,7 @@ export class Client { * Edit details for a single video. */ public async stream$videos$update$video$details(params: Params$stream$videos$update$video$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53736,7 +53733,7 @@ export class Client { * Deletes a video and its copies from Cloudflare Stream. */ public async stream$videos$delete$video(params: Params$stream$videos$delete$video, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -53749,7 +53746,7 @@ export class Client { * Lists additional audio tracks on a video. Note this API will not return information for audio attached to the video upload. */ public async list$audio$tracks(params: Params$list$audio$tracks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio`; const headers = { Accept: "application/json" }; @@ -53764,7 +53761,7 @@ export class Client { * Deletes additional audio tracks on a video. Deleting a default audio track is not allowed. You must assign another audio track as default prior to deletion. */ public async delete$audio$tracks(params: Params$delete$audio$tracks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/\${encodeURIComponent(params.parameter.audio_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/${encodeURIComponent(params.parameter.audio_identifier)}`; const headers = { Accept: "application/json" }; @@ -53776,10 +53773,10 @@ export class Client { } /** * Edit additional audio tracks on a video - * Edits additional audio tracks on a video. Editing the default status of an audio track to \`true\` will mark all other audio tracks on the video default status to \`false\`. + * Edits additional audio tracks on a video. Editing the default status of an audio track to `true` will mark all other audio tracks on the video default status to `false`. */ public async edit$audio$tracks(params: Params$edit$audio$tracks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/\${encodeURIComponent(params.parameter.audio_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/${encodeURIComponent(params.parameter.audio_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53796,7 +53793,7 @@ export class Client { * Adds an additional audio track to a video using the provided audio track URL. */ public async add$audio$track(params: Params$add$audio$track, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/copy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/copy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53813,7 +53810,7 @@ export class Client { * Lists the available captions or subtitles for a specific video. */ public async stream$subtitles$$captions$list$captions$or$subtitles(params: Params$stream$subtitles$$captions$list$captions$or$subtitles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions`; const headers = { Accept: "application/json" }; @@ -53828,7 +53825,7 @@ export class Client { * Uploads the caption or subtitle file to the endpoint for a specific BCP47 language. One caption or subtitle file per language is allowed. */ public async stream$subtitles$$captions$upload$captions$or$subtitles(params: Params$stream$subtitles$$captions$upload$captions$or$subtitles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions/\${encodeURIComponent(params.parameter.language)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions/${encodeURIComponent(params.parameter.language)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -53845,7 +53842,7 @@ export class Client { * Removes the captions or subtitles from a video. */ public async stream$subtitles$$captions$delete$captions$or$subtitles(params: Params$stream$subtitles$$captions$delete$captions$or$subtitles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions/\${encodeURIComponent(params.parameter.language)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions/${encodeURIComponent(params.parameter.language)}`; const headers = { Accept: "application/json" }; @@ -53860,7 +53857,7 @@ export class Client { * Lists the downloads created for a video. */ public async stream$m$p$4$downloads$list$downloads(params: Params$stream$m$p$4$downloads$list$downloads, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53875,7 +53872,7 @@ export class Client { * Creates a download for a video when a video is ready to view. */ public async stream$m$p$4$downloads$create$downloads(params: Params$stream$m$p$4$downloads$create$downloads, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53890,7 +53887,7 @@ export class Client { * Delete the downloads for a video. */ public async stream$m$p$4$downloads$delete$downloads(params: Params$stream$m$p$4$downloads$delete$downloads, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53905,7 +53902,7 @@ export class Client { * Fetches an HTML code snippet to embed a video in a web page delivered through Cloudflare. On success, returns an HTML fragment for use on web pages to display a video. On failure, returns a JSON response body. */ public async stream$videos$retreieve$embed$code$html(params: Params$stream$videos$retreieve$embed$code$html, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/embed\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/embed`; const headers = { Accept: "application/json" }; @@ -53920,7 +53917,7 @@ export class Client { * Creates a signed URL token for a video. If a body is not provided in the request, a token is created with default values. */ public async stream$videos$create$signed$url$tokens$for$videos(params: Params$stream$videos$create$signed$url$tokens$for$videos, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/token\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/token`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53937,7 +53934,7 @@ export class Client { * Clips a video based on the specified start and end times provided in seconds. */ public async stream$video$clipping$clip$videos$given$a$start$and$end$time(params: Params$stream$video$clipping$clip$videos$given$a$start$and$end$time, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/clip\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/clip`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53954,7 +53951,7 @@ export class Client { * Uploads a video to Stream from a provided URL. */ public async stream$videos$upload$videos$from$a$url(params: Params$stream$videos$upload$videos$from$a$url, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/copy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/copy`; const headers = { "Content-Type": "application/json", Accept: "application/json", @@ -53973,7 +53970,7 @@ export class Client { * Creates a direct upload that allows video uploads without an API key. */ public async stream$videos$upload$videos$via$direct$upload$ur$ls(params: Params$stream$videos$upload$videos$via$direct$upload$ur$ls, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/direct_upload\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/direct_upload`; const headers = { "Content-Type": "application/json", Accept: "application/json", @@ -53991,7 +53988,7 @@ export class Client { * Lists the video ID and creation date and time when a signing key was created. */ public async stream$signing$keys$list$signing$keys(params: Params$stream$signing$keys$list$signing$keys, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys`; const headers = { Accept: "application/json" }; @@ -54006,7 +54003,7 @@ export class Client { * Creates an RSA private key in PEM and JWK formats. Key files are only displayed once after creation. Keys are created, used, and deleted independently of videos, and every key can sign any video. */ public async stream$signing$keys$create$signing$keys(params: Params$stream$signing$keys$create$signing$keys, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys`; const headers = { Accept: "application/json" }; @@ -54021,7 +54018,7 @@ export class Client { * Deletes signing keys and revokes all signed URLs generated with the key. */ public async stream$signing$keys$delete$signing$keys(params: Params$stream$signing$keys$delete$signing$keys, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54036,7 +54033,7 @@ export class Client { * Lists the live inputs created for an account. To get the credentials needed to stream to a specific live input, request a single live input. */ public async stream$live$inputs$list$live$inputs(params: Params$stream$live$inputs$list$live$inputs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs`; const headers = { Accept: "application/json" }; @@ -54055,7 +54052,7 @@ export class Client { * Creates a live input, and returns credentials that you or your users can use to stream live video to Cloudflare Stream. */ public async stream$live$inputs$create$a$live$input(params: Params$stream$live$inputs$create$a$live$input, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54072,7 +54069,7 @@ export class Client { * Retrieves details of an existing live input. */ public async stream$live$inputs$retrieve$a$live$input(params: Params$stream$live$inputs$retrieve$a$live$input, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = { Accept: "application/json" }; @@ -54087,7 +54084,7 @@ export class Client { * Updates a specified live input. */ public async stream$live$inputs$update$a$live$input(params: Params$stream$live$inputs$update$a$live$input, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54104,7 +54101,7 @@ export class Client { * Prevents a live input from being streamed to and makes the live input inaccessible to any future API calls. */ public async stream$live$inputs$delete$a$live$input(params: Params$stream$live$inputs$delete$a$live$input, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -54117,7 +54114,7 @@ export class Client { * Retrieves all outputs associated with a specified live input. */ public async stream$live$inputs$list$all$outputs$associated$with$a$specified$live$input(params: Params$stream$live$inputs$list$all$outputs$associated$with$a$specified$live$input, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs`; const headers = { Accept: "application/json" }; @@ -54132,7 +54129,7 @@ export class Client { * Creates a new output that can be used to simulcast or restream live video to other RTMP or SRT destinations. Outputs are always linked to a specific live input — one live input can have many outputs. */ public async stream$live$inputs$create$a$new$output$$connected$to$a$live$input(params: Params$stream$live$inputs$create$a$new$output$$connected$to$a$live$input, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54149,7 +54146,7 @@ export class Client { * Updates the state of an output. */ public async stream$live$inputs$update$an$output(params: Params$stream$live$inputs$update$an$output, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/\${encodeURIComponent(params.parameter.output_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/${encodeURIComponent(params.parameter.output_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54166,7 +54163,7 @@ export class Client { * Deletes an output and removes it from the associated live input. */ public async stream$live$inputs$delete$an$output(params: Params$stream$live$inputs$delete$an$output, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/\${encodeURIComponent(params.parameter.output_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/${encodeURIComponent(params.parameter.output_identifier)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -54179,7 +54176,7 @@ export class Client { * Returns information about an account's storage use. */ public async stream$videos$storage$usage(params: Params$stream$videos$storage$usage, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/storage-usage\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/storage-usage`; const headers = { Accept: "application/json" }; @@ -54198,7 +54195,7 @@ export class Client { * Lists all watermark profiles for an account. */ public async stream$watermark$profile$list$watermark$profiles(params: Params$stream$watermark$profile$list$watermark$profiles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks`; const headers = { Accept: "application/json" }; @@ -54210,10 +54207,10 @@ export class Client { } /** * Create watermark profiles via basic upload - * Creates watermark profiles using a single \`HTTP POST multipart/form-data\` request. + * Creates watermark profiles using a single `HTTP POST multipart/form-data` request. */ public async stream$watermark$profile$create$watermark$profiles$via$basic$upload(params: Params$stream$watermark$profile$create$watermark$profiles$via$basic$upload, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -54230,7 +54227,7 @@ export class Client { * Retrieves details for a single watermark profile. */ public async stream$watermark$profile$watermark$profile$details(params: Params$stream$watermark$profile$watermark$profile$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54245,7 +54242,7 @@ export class Client { * Deletes a watermark profile. */ public async stream$watermark$profile$delete$watermark$profiles(params: Params$stream$watermark$profile$delete$watermark$profiles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54260,7 +54257,7 @@ export class Client { * Retrieves a list of webhooks. */ public async stream$webhook$view$webhooks(params: Params$stream$webhook$view$webhooks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { Accept: "application/json" }; @@ -54275,7 +54272,7 @@ export class Client { * Creates a webhook notification. */ public async stream$webhook$create$webhooks(params: Params$stream$webhook$create$webhooks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54292,7 +54289,7 @@ export class Client { * Deletes a webhook. */ public async stream$webhook$delete$webhooks(params: Params$stream$webhook$delete$webhooks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { Accept: "application/json" }; @@ -54307,7 +54304,7 @@ export class Client { * Lists and filters private network routes in an account. */ public async tunnel$route$list$tunnel$routes(params: Params$tunnel$route$list$tunnel$routes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes`; const headers = { Accept: "application/json" }; @@ -54336,7 +54333,7 @@ export class Client { * Routes a private network through a Cloudflare Tunnel. */ public async tunnel$route$create$a$tunnel$route(params: Params$tunnel$route$create$a$tunnel$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54353,7 +54350,7 @@ export class Client { * Deletes a private network route from an account. */ public async tunnel$route$delete$a$tunnel$route(params: Params$tunnel$route$delete$a$tunnel$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -54368,7 +54365,7 @@ export class Client { * Updates an existing private network route in an account. The fields that are meant to be updated should be provided in the body of the request. */ public async tunnel$route$update$a$tunnel$route(params: Params$tunnel$route$update$a$tunnel$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54385,7 +54382,7 @@ export class Client { * Fetches routes that contain the given IP address. */ public async tunnel$route$get$tunnel$route$by$ip(params: Params$tunnel$route$get$tunnel$route$by$ip, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/ip/\${encodeURIComponent(params.parameter.ip)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/ip/${encodeURIComponent(params.parameter.ip)}`; const headers = { Accept: "application/json" }; @@ -54402,10 +54399,10 @@ export class Client { /** * @deprecated * Create a tunnel route (CIDR Endpoint) - * Routes a private network through a Cloudflare Tunnel. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. + * Routes a private network through a Cloudflare Tunnel. The CIDR in `ip_network_encoded` must be written in URL-encoded format. */ public async tunnel$route$create$a$tunnel$route$with$cidr(params: Params$tunnel$route$create$a$tunnel$route$with$cidr, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54420,10 +54417,10 @@ export class Client { /** * @deprecated * Delete a tunnel route (CIDR Endpoint) - * Deletes a private network route from an account. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. If no virtual_network_id is provided it will delete the route from the default vnet. If no tun_type is provided it will fetch the type from the tunnel_id or if that is missing it will assume Cloudflare Tunnel as default. If tunnel_id is provided it will delete the route from that tunnel, otherwise it will delete the route based on the vnet and tun_type. + * Deletes a private network route from an account. The CIDR in `ip_network_encoded` must be written in URL-encoded format. If no virtual_network_id is provided it will delete the route from the default vnet. If no tun_type is provided it will fetch the type from the tunnel_id or if that is missing it will assume Cloudflare Tunnel as default. If tunnel_id is provided it will delete the route from that tunnel, otherwise it will delete the route based on the vnet and tun_type. */ public async tunnel$route$delete$a$tunnel$route$with$cidr(params: Params$tunnel$route$delete$a$tunnel$route$with$cidr, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { Accept: "application/json" }; @@ -54442,10 +54439,10 @@ export class Client { /** * @deprecated * Update a tunnel route (CIDR Endpoint) - * Updates an existing private network route in an account. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. + * Updates an existing private network route in an account. The CIDR in `ip_network_encoded` must be written in URL-encoded format. */ public async tunnel$route$update$a$tunnel$route$with$cidr(params: Params$tunnel$route$update$a$tunnel$route$with$cidr, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { Accept: "application/json" }; @@ -54460,7 +54457,7 @@ export class Client { * Lists and filters virtual networks in an account. */ public async tunnel$virtual$network$list$virtual$networks(params: Params$tunnel$virtual$network$list$virtual$networks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks`; const headers = { Accept: "application/json" }; @@ -54483,7 +54480,7 @@ export class Client { * Adds a new virtual network to an account. */ public async tunnel$virtual$network$create$a$virtual$network(params: Params$tunnel$virtual$network$create$a$virtual$network, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54500,7 +54497,7 @@ export class Client { * Deletes an existing virtual network. */ public async tunnel$virtual$network$delete$a$virtual$network(params: Params$tunnel$virtual$network$delete$a$virtual$network, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/\${encodeURIComponent(params.parameter.virtual_network_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/${encodeURIComponent(params.parameter.virtual_network_id)}`; const headers = { Accept: "application/json" }; @@ -54515,7 +54512,7 @@ export class Client { * Updates an existing virtual network. */ public async tunnel$virtual$network$update$a$virtual$network(params: Params$tunnel$virtual$network$update$a$virtual$network, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/\${encodeURIComponent(params.parameter.virtual_network_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/${encodeURIComponent(params.parameter.virtual_network_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54532,7 +54529,7 @@ export class Client { * Lists and filters all types of Tunnels in an account. */ public async cloudflare$tunnel$list$all$tunnels(params: Params$cloudflare$tunnel$list$all$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels`; const headers = { Accept: "application/json" }; @@ -54562,7 +54559,7 @@ export class Client { * Creates a new Argo Tunnel in an account. */ public async argo$tunnel$create$an$argo$tunnel(params: Params$argo$tunnel$create$an$argo$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54580,7 +54577,7 @@ export class Client { * Fetches a single Argo Tunnel. */ public async argo$tunnel$get$an$argo$tunnel(params: Params$argo$tunnel$get$an$argo$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -54596,7 +54593,7 @@ export class Client { * Deletes an Argo Tunnel from an account. */ public async argo$tunnel$delete$an$argo$tunnel(params: Params$argo$tunnel$delete$an$argo$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54614,7 +54611,7 @@ export class Client { * Removes connections that are in a disconnected or pending reconnect state. We recommend running this command after shutting down a tunnel. */ public async argo$tunnel$clean$up$argo$tunnel$connections(params: Params$argo$tunnel$clean$up$argo$tunnel$connections, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54631,7 +54628,7 @@ export class Client { * Lists and filters Warp Connector Tunnels in an account. */ public async cloudflare$tunnel$list$warp$connector$tunnels(params: Params$cloudflare$tunnel$list$warp$connector$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector`; const headers = { Accept: "application/json" }; @@ -54659,7 +54656,7 @@ export class Client { * Creates a new Warp Connector Tunnel in an account. */ public async cloudflare$tunnel$create$a$warp$connector$tunnel(params: Params$cloudflare$tunnel$create$a$warp$connector$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54676,7 +54673,7 @@ export class Client { * Fetches a single Warp Connector Tunnel. */ public async cloudflare$tunnel$get$a$warp$connector$tunnel(params: Params$cloudflare$tunnel$get$a$warp$connector$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -54691,7 +54688,7 @@ export class Client { * Deletes a Warp Connector Tunnel from an account. */ public async cloudflare$tunnel$delete$a$warp$connector$tunnel(params: Params$cloudflare$tunnel$delete$a$warp$connector$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54708,7 +54705,7 @@ export class Client { * Updates an existing Warp Connector Tunnel. */ public async cloudflare$tunnel$update$a$warp$connector$tunnel(params: Params$cloudflare$tunnel$update$a$warp$connector$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54725,7 +54722,7 @@ export class Client { * Gets the token used to associate warp device with a specific Warp Connector tunnel. */ public async cloudflare$tunnel$get$a$warp$connector$tunnel$token(params: Params$cloudflare$tunnel$get$a$warp$connector$tunnel$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}/token\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}/token`; const headers = { Accept: "application/json" }; @@ -54740,7 +54737,7 @@ export class Client { * Fetches Worker account settings for an account. */ public async worker$account$settings$fetch$worker$account$settings(params: Params$worker$account$settings$fetch$worker$account$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/account-settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/account-settings`; const headers = { Accept: "application/json" }; @@ -54755,7 +54752,7 @@ export class Client { * Creates Worker account settings for an account. */ public async worker$account$settings$create$worker$account$settings(params: Params$worker$account$settings$create$worker$account$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/account-settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/account-settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54769,7 +54766,7 @@ export class Client { } /** List Deployments */ public async worker$deployments$list$deployments(params: Params$worker$deployments$list$deployments, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/\${encodeURIComponent(params.parameter.script_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/${encodeURIComponent(params.parameter.script_id)}`; const headers = { Accept: "application/json" }; @@ -54781,7 +54778,7 @@ export class Client { } /** Get Deployment Detail */ public async worker$deployments$get$deployment$detail(params: Params$worker$deployments$get$deployment$detail, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/\${encodeURIComponent(params.parameter.script_id)}/detail/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/${encodeURIComponent(params.parameter.script_id)}/detail/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -54796,7 +54793,7 @@ export class Client { * Fetch information about a script uploaded to a Workers for Platforms namespace. */ public async namespace$worker$script$worker$details(params: Params$namespace$worker$script$worker$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { Accept: "application/json" }; @@ -54811,7 +54808,7 @@ export class Client { * Upload a worker module to a Workers for Platforms namespace. */ public async namespace$worker$script$upload$worker$module(params: Params$namespace$worker$script$upload$worker$module, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -54836,7 +54833,7 @@ export class Client { * Delete a worker from a Workers for Platforms namespace. This call has no response body on a successful delete. */ public async namespace$worker$script$delete$worker(params: Params$namespace$worker$script$delete$worker, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = {}; const queryParameters: QueryParameters = { force: { value: params.parameter.force, explode: false } @@ -54853,7 +54850,7 @@ export class Client { * Fetch script content from a script uploaded to a Workers for Platforms namespace. */ public async namespace$worker$get$script$content(params: Params$namespace$worker$get$script$content, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { Accept: "string" }; @@ -54868,7 +54865,7 @@ export class Client { * Put script content for a script uploaded to a Workers for Platforms namespace. */ public async namespace$worker$put$script$content(params: Params$namespace$worker$put$script$content, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -54895,7 +54892,7 @@ export class Client { * Get script settings from a script uploaded to a Workers for Platforms namespace. */ public async namespace$worker$get$script$settings(params: Params$namespace$worker$get$script$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { Accept: "application/json" }; @@ -54910,7 +54907,7 @@ export class Client { * Patch script metadata, such as bindings */ public async namespace$worker$patch$script$settings(params: Params$namespace$worker$patch$script$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54927,7 +54924,7 @@ export class Client { * Lists all Worker Domains for an account. */ public async worker$domain$list$domains(params: Params$worker$domain$list$domains, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains`; const headers = { Accept: "application/json" }; @@ -54950,7 +54947,7 @@ export class Client { * Attaches a Worker to a zone and hostname. */ public async worker$domain$attach$to$domain(params: Params$worker$domain$attach$to$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54967,7 +54964,7 @@ export class Client { * Gets a Worker domain. */ public async worker$domain$get$a$domain(params: Params$worker$domain$get$a$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains/\${encodeURIComponent(params.parameter.domain_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains/${encodeURIComponent(params.parameter.domain_id)}`; const headers = { Accept: "application/json" }; @@ -54982,7 +54979,7 @@ export class Client { * Detaches a Worker from a zone and hostname. */ public async worker$domain$detach$from$domain(params: Params$worker$domain$detach$from$domain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains/\${encodeURIComponent(params.parameter.domain_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains/${encodeURIComponent(params.parameter.domain_id)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -54995,7 +54992,7 @@ export class Client { * Returns the Durable Object namespaces owned by an account. */ public async durable$objects$namespace$list$namespaces(params: Params$durable$objects$namespace$list$namespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces`; const headers = { Accept: "application/json" }; @@ -55010,7 +55007,7 @@ export class Client { * Returns the Durable Objects in a given namespace. */ public async durable$objects$namespace$list$objects(params: Params$durable$objects$namespace$list$objects, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces/\${encodeURIComponent(params.parameter.id)}/objects\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces/${encodeURIComponent(params.parameter.id)}/objects`; const headers = { Accept: "application/json" }; @@ -55030,7 +55027,7 @@ export class Client { * Returns the queues owned by an account. */ public async queue$list$queues(params: Params$queue$list$queues, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues`; const headers = { Accept: "application/json" }; @@ -55045,7 +55042,7 @@ export class Client { * Creates a new queue. */ public async queue$create$queue(params: Params$queue$create$queue, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55062,7 +55059,7 @@ export class Client { * Get information about a specific queue. */ public async queue$queue$details(params: Params$queue$queue$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -55077,7 +55074,7 @@ export class Client { * Updates a queue. */ public async queue$update$queue(params: Params$queue$update$queue, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55094,7 +55091,7 @@ export class Client { * Deletes a queue. */ public async queue$delete$queue(params: Params$queue$delete$queue, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -55109,7 +55106,7 @@ export class Client { * Returns the consumers for a queue. */ public async queue$list$queue$consumers(params: Params$queue$list$queue$consumers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers`; const headers = { Accept: "application/json" }; @@ -55124,7 +55121,7 @@ export class Client { * Creates a new consumer for a queue. */ public async queue$create$queue$consumer(params: Params$queue$create$queue$consumer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55141,7 +55138,7 @@ export class Client { * Updates the consumer for a queue, or creates one if it does not exist. */ public async queue$update$queue$consumer(params: Params$queue$update$queue$consumer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers/\${encodeURIComponent(params.parameter.consumer_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers/${encodeURIComponent(params.parameter.consumer_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55158,7 +55155,7 @@ export class Client { * Deletes the consumer for a queue. */ public async queue$delete$queue$consumer(params: Params$queue$delete$queue$consumer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers/\${encodeURIComponent(params.parameter.consumer_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers/${encodeURIComponent(params.parameter.consumer_name)}`; const headers = { Accept: "application/json" }; @@ -55173,7 +55170,7 @@ export class Client { * Fetch a list of uploaded workers. */ public async worker$script$list$workers(params: Params$worker$script$list$workers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts`; const headers = { Accept: "application/json" }; @@ -55188,7 +55185,7 @@ export class Client { * Fetch raw script content for your worker. Note this is the original script content, not JSON encoded. */ public async worker$script$download$worker(params: Params$worker$script$download$worker, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { Accept: "undefined" }; @@ -55203,7 +55200,7 @@ export class Client { * Upload a worker module. */ public async worker$script$upload$worker$module(params: Params$worker$script$upload$worker$module, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -55232,7 +55229,7 @@ export class Client { * Delete your worker. This call has no response body on a successful delete. */ public async worker$script$delete$worker(params: Params$worker$script$delete$worker, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = {}; const queryParameters: QueryParameters = { force: { value: params.parameter.force, explode: false } @@ -55249,7 +55246,7 @@ export class Client { * Put script content without touching config or metadata */ public async worker$script$put$content(params: Params$worker$script$put$content, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -55276,7 +55273,7 @@ export class Client { * Fetch script content only */ public async worker$script$get$content(params: Params$worker$script$get$content, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/content/v2\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/content/v2`; const headers = { Accept: "string" }; @@ -55291,7 +55288,7 @@ export class Client { * Fetches Cron Triggers for a Worker. */ public async worker$cron$trigger$get$cron$triggers(params: Params$worker$cron$trigger$get$cron$triggers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/schedules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/schedules`; const headers = { Accept: "application/json" }; @@ -55306,7 +55303,7 @@ export class Client { * Updates Cron Triggers for a Worker. */ public async worker$cron$trigger$update$cron$triggers(params: Params$worker$cron$trigger$update$cron$triggers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/schedules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/schedules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55323,7 +55320,7 @@ export class Client { * Get script metadata and config, such as bindings or usage model */ public async worker$script$get$settings(params: Params$worker$script$get$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { Accept: "application/json" }; @@ -55338,7 +55335,7 @@ export class Client { * Patch script metadata or config, such as bindings or usage model */ public async worker$script$patch$settings(params: Params$worker$script$patch$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -55355,7 +55352,7 @@ export class Client { * Get list of tails currently deployed on a Worker. */ public async worker$tail$logs$list$tails(params: Params$worker$tail$logs$list$tails, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails`; const headers = { Accept: "application/json" }; @@ -55370,7 +55367,7 @@ export class Client { * Starts a tail that receives logs and exception from a Worker. */ public async worker$tail$logs$start$tail(params: Params$worker$tail$logs$start$tail, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails`; const headers = { Accept: "application/json" }; @@ -55385,7 +55382,7 @@ export class Client { * Deletes a tail from a Worker. */ public async worker$tail$logs$delete$tail(params: Params$worker$tail$logs$delete$tail, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -55400,7 +55397,7 @@ export class Client { * Fetches the Usage Model for a given Worker. */ public async worker$script$fetch$usage$model(params: Params$worker$script$fetch$usage$model, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/usage-model\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/usage-model`; const headers = { Accept: "application/json" }; @@ -55415,7 +55412,7 @@ export class Client { * Updates the Usage Model for a given Worker. Requires a Workers Paid subscription. */ public async worker$script$update$usage$model(params: Params$worker$script$update$usage$model, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/usage-model\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/usage-model`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55432,7 +55429,7 @@ export class Client { * Get script content from a worker with an environment */ public async worker$environment$get$script$content(params: Params$worker$environment$get$script$content, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/content\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/content`; const headers = { Accept: "string" }; @@ -55447,7 +55444,7 @@ export class Client { * Put script content from a worker with an environment */ public async worker$environment$put$script$content(params: Params$worker$environment$put$script$content, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/content\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -55474,7 +55471,7 @@ export class Client { * Get script settings from a worker with an environment */ public async worker$script$environment$get$settings(params: Params$worker$script$environment$get$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/settings`; const headers = { Accept: "application/json" }; @@ -55489,7 +55486,7 @@ export class Client { * Patch script metadata, such as bindings */ public async worker$script$environment$patch$settings(params: Params$worker$script$environment$patch$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55506,7 +55503,7 @@ export class Client { * Returns a Workers subdomain for an account. */ public async worker$subdomain$get$subdomain(params: Params$worker$subdomain$get$subdomain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/subdomain\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/subdomain`; const headers = { Accept: "application/json" }; @@ -55521,7 +55518,7 @@ export class Client { * Creates a Workers subdomain for an account. */ public async worker$subdomain$create$subdomain(params: Params$worker$subdomain$create$subdomain, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/subdomain\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/subdomain`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55538,7 +55535,7 @@ export class Client { * Gets the Zero Trust Connectivity Settings for the given account. */ public async zero$trust$accounts$get$connectivity$settings(params: Params$zero$trust$accounts$get$connectivity$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings`; const headers = { Accept: "application/json" }; @@ -55553,7 +55550,7 @@ export class Client { * Updates the Zero Trust Connectivity Settings for the given account. */ public async zero$trust$accounts$patch$connectivity$settings(params: Params$zero$trust$accounts$patch$connectivity$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55570,7 +55567,7 @@ export class Client { * List all address maps owned by the account. */ public async ip$address$management$address$maps$list$address$maps(params: Params$ip$address$management$address$maps$list$address$maps, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps`; const headers = { Accept: "application/json" }; @@ -55585,7 +55582,7 @@ export class Client { * Create a new address map under the account. */ public async ip$address$management$address$maps$create$address$map(params: Params$ip$address$management$address$maps$create$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55602,7 +55599,7 @@ export class Client { * Show a particular address map owned by the account. */ public async ip$address$management$address$maps$address$map$details(params: Params$ip$address$management$address$maps$address$map$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { Accept: "application/json" }; @@ -55617,7 +55614,7 @@ export class Client { * Delete a particular address map owned by the account. An Address Map must be disabled before it can be deleted. */ public async ip$address$management$address$maps$delete$address$map(params: Params$ip$address$management$address$maps$delete$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { Accept: "application/json" }; @@ -55632,7 +55629,7 @@ export class Client { * Modify properties of an address map owned by the account. */ public async ip$address$management$address$maps$update$address$map(params: Params$ip$address$management$address$maps$update$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55649,7 +55646,7 @@ export class Client { * Add an IP from a prefix owned by the account to a particular address map. */ public async ip$address$management$address$maps$add$an$ip$to$an$address$map(params: Params$ip$address$management$address$maps$add$an$ip$to$an$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/ips/\${encodeURIComponent(params.parameter.ip_address)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/ips/${encodeURIComponent(params.parameter.ip_address)}`; const headers = { Accept: "application/json" }; @@ -55664,7 +55661,7 @@ export class Client { * Remove an IP from a particular address map. */ public async ip$address$management$address$maps$remove$an$ip$from$an$address$map(params: Params$ip$address$management$address$maps$remove$an$ip$from$an$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/ips/\${encodeURIComponent(params.parameter.ip_address)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/ips/${encodeURIComponent(params.parameter.ip_address)}`; const headers = { Accept: "application/json" }; @@ -55679,7 +55676,7 @@ export class Client { * Add a zone as a member of a particular address map. */ public async ip$address$management$address$maps$add$a$zone$membership$to$an$address$map(params: Params$ip$address$management$address$maps$add$a$zone$membership$to$an$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/zones/\${encodeURIComponent(params.parameter.zone_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/zones/${encodeURIComponent(params.parameter.zone_identifier)}`; const headers = { Accept: "application/json" }; @@ -55694,7 +55691,7 @@ export class Client { * Remove a zone as a member of a particular address map. */ public async ip$address$management$address$maps$remove$a$zone$membership$from$an$address$map(params: Params$ip$address$management$address$maps$remove$a$zone$membership$from$an$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/zones/\${encodeURIComponent(params.parameter.zone_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/zones/${encodeURIComponent(params.parameter.zone_identifier)}`; const headers = { Accept: "application/json" }; @@ -55709,7 +55706,7 @@ export class Client { * Submit LOA document (pdf format) under the account. */ public async ip$address$management$prefixes$upload$loa$document(params: Params$ip$address$management$prefixes$upload$loa$document, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -55726,7 +55723,7 @@ export class Client { * Download specified LOA document under the account. */ public async ip$address$management$prefixes$download$loa$document(params: Params$ip$address$management$prefixes$download$loa$document, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents/\${encodeURIComponent(params.parameter.loa_document_identifier)}/download\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents/${encodeURIComponent(params.parameter.loa_document_identifier)}/download`; const headers = { Accept: "application/json" }; @@ -55741,7 +55738,7 @@ export class Client { * List all prefixes owned by the account. */ public async ip$address$management$prefixes$list$prefixes(params: Params$ip$address$management$prefixes$list$prefixes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes`; const headers = { Accept: "application/json" }; @@ -55756,7 +55753,7 @@ export class Client { * Add a new prefix under the account. */ public async ip$address$management$prefixes$add$prefix(params: Params$ip$address$management$prefixes$add$prefix, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55773,7 +55770,7 @@ export class Client { * List a particular prefix owned by the account. */ public async ip$address$management$prefixes$prefix$details(params: Params$ip$address$management$prefixes$prefix$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55788,7 +55785,7 @@ export class Client { * Delete an unapproved prefix owned by the account. */ public async ip$address$management$prefixes$delete$prefix(params: Params$ip$address$management$prefixes$delete$prefix, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55803,7 +55800,7 @@ export class Client { * Modify the description for a prefix owned by the account. */ public async ip$address$management$prefixes$update$prefix$description(params: Params$ip$address$management$prefixes$update$prefix$description, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55820,7 +55817,7 @@ export class Client { * List all BGP Prefixes within the specified IP Prefix. BGP Prefixes are used to control which specific subnets are advertised to the Internet. It is possible to advertise subnets more specific than an IP Prefix by creating more specific BGP Prefixes. */ public async ip$address$management$prefixes$list$bgp$prefixes(params: Params$ip$address$management$prefixes$list$bgp$prefixes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes`; const headers = { Accept: "application/json" }; @@ -55835,7 +55832,7 @@ export class Client { * Retrieve a single BGP Prefix according to its identifier */ public async ip$address$management$prefixes$fetch$bgp$prefix(params: Params$ip$address$management$prefixes$fetch$bgp$prefix, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/\${encodeURIComponent(params.parameter.bgp_prefix_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/${encodeURIComponent(params.parameter.bgp_prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55850,7 +55847,7 @@ export class Client { * Update the properties of a BGP Prefix, such as the on demand advertisement status (advertised or withdrawn). */ public async ip$address$management$prefixes$update$bgp$prefix(params: Params$ip$address$management$prefixes$update$bgp$prefix, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/\${encodeURIComponent(params.parameter.bgp_prefix_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/${encodeURIComponent(params.parameter.bgp_prefix_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55867,7 +55864,7 @@ export class Client { * List the current advertisement state for a prefix. */ public async ip$address$management$dynamic$advertisement$get$advertisement$status(params: Params$ip$address$management$dynamic$advertisement$get$advertisement$status, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status`; const headers = { Accept: "application/json" }; @@ -55882,7 +55879,7 @@ export class Client { * Advertise or withdraw BGP route for a prefix. */ public async ip$address$management$dynamic$advertisement$update$prefix$dynamic$advertisement$status(params: Params$ip$address$management$dynamic$advertisement$update$prefix$dynamic$advertisement$status, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55897,10 +55894,10 @@ export class Client { /** * List Service Bindings * List the Cloudflare services this prefix is currently bound to. Traffic sent to an address within an IP prefix will be routed to the Cloudflare service of the most-specific Service Binding matching the address. - * **Example:** binding \`192.0.2.0/24\` to Cloudflare Magic Transit and \`192.0.2.1/32\` to the Cloudflare CDN would route traffic for \`192.0.2.1\` to the CDN, and traffic for all other IPs in the prefix to Cloudflare Magic Transit. + * **Example:** binding `192.0.2.0/24` to Cloudflare Magic Transit and `192.0.2.1/32` to the Cloudflare CDN would route traffic for `192.0.2.1` to the CDN, and traffic for all other IPs in the prefix to Cloudflare Magic Transit. */ public async ip$address$management$service$bindings$list$service$bindings(params: Params$ip$address$management$service$bindings$list$service$bindings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings`; const headers = { Accept: "application/json" }; @@ -55916,7 +55913,7 @@ export class Client { * **Note:** This API may only be used on prefixes currently configured with a Magic Transit service binding, and only allows creating service bindings for the Cloudflare CDN or Cloudflare Spectrum. */ public async ip$address$management$service$bindings$create$service$binding(params: Params$ip$address$management$service$bindings$create$service$binding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55933,7 +55930,7 @@ export class Client { * Fetch a single Service Binding */ public async ip$address$management$service$bindings$get$service$binding(params: Params$ip$address$management$service$bindings$get$service$binding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/\${encodeURIComponent(params.parameter.binding_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/${encodeURIComponent(params.parameter.binding_identifier)}`; const headers = { Accept: "application/json" }; @@ -55948,7 +55945,7 @@ export class Client { * Delete a Service Binding */ public async ip$address$management$service$bindings$delete$service$binding(params: Params$ip$address$management$service$bindings$delete$service$binding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/\${encodeURIComponent(params.parameter.binding_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/${encodeURIComponent(params.parameter.binding_identifier)}`; const headers = { Accept: "application/json" }; @@ -55963,7 +55960,7 @@ export class Client { * List all delegations for a given account IP prefix. */ public async ip$address$management$prefix$delegation$list$prefix$delegations(params: Params$ip$address$management$prefix$delegation$list$prefix$delegations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations`; const headers = { Accept: "application/json" }; @@ -55978,7 +55975,7 @@ export class Client { * Create a new account delegation for a given IP prefix. */ public async ip$address$management$prefix$delegation$create$prefix$delegation(params: Params$ip$address$management$prefix$delegation$create$prefix$delegation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55995,7 +55992,7 @@ export class Client { * Delete an account delegation for a given IP prefix. */ public async ip$address$management$prefix$delegation$delete$prefix$delegation(params: Params$ip$address$management$prefix$delegation$delete$prefix$delegation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations/\${encodeURIComponent(params.parameter.delegation_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations/${encodeURIComponent(params.parameter.delegation_identifier)}`; const headers = { Accept: "application/json" }; @@ -56010,7 +56007,7 @@ export class Client { * Bring-Your-Own IP (BYOIP) prefixes onboarded to Cloudflare must be bound to a service running on the Cloudflare network to enable a Cloudflare product on the IP addresses. This endpoint can be used as a reference of available services on the Cloudflare network, and their service IDs. */ public async ip$address$management$service$bindings$list$services(params: Params$ip$address$management$service$bindings$list$services, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/services\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/services`; const headers = { Accept: "application/json" }; @@ -56028,7 +56025,7 @@ export class Client { * model. The endpoint supports various AI model types, ensuring flexibility and adaptability for diverse use cases. */ public async workers$ai$post$run$model(params: Params$workers$ai$post$run$model, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/ai/run/\${encodeURIComponent(params.parameter.model_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/ai/run/${encodeURIComponent(params.parameter.model_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -56045,7 +56042,7 @@ export class Client { * Gets a list of audit logs for an account. Can be filtered by who made the change, on which zone, and the timeframe of the change. */ public async audit$logs$get$account$audit$logs(params: Params$audit$logs$get$account$audit$logs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/audit_logs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/audit_logs`; const headers = { Accept: "application/json" }; @@ -56076,7 +56073,7 @@ export class Client { * Gets the current billing profile for the account. */ public async account$billing$profile$$$deprecated$$billing$profile$details(params: Params$account$billing$profile$$$deprecated$$billing$profile$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/billing/profile\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/billing/profile`; const headers = { Accept: "application/json" }; @@ -56091,7 +56088,7 @@ export class Client { * Lists all turnstile widgets of an account. */ public async accounts$turnstile$widgets$list(params: Params$accounts$turnstile$widgets$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets`; const headers = { Accept: "application/json" }; @@ -56113,7 +56110,7 @@ export class Client { * Lists challenge widgets. */ public async accounts$turnstile$widget$create(params: Params$accounts$turnstile$widget$create, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56137,7 +56134,7 @@ export class Client { * Show a single challenge widget configuration. */ public async accounts$turnstile$widget$get(params: Params$accounts$turnstile$widget$get, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { Accept: "application/json" }; @@ -56152,7 +56149,7 @@ export class Client { * Update the configuration of a widget. */ public async accounts$turnstile$widget$update(params: Params$accounts$turnstile$widget$update, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56169,7 +56166,7 @@ export class Client { * Destroy a Turnstile Widget. */ public async accounts$turnstile$widget$delete(params: Params$accounts$turnstile$widget$delete, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { Accept: "application/json" }; @@ -56181,13 +56178,13 @@ export class Client { } /** * Rotate Secret for a Turnstile Widget - * Generate a new secret key for this widget. If \`invalidate_immediately\` - * is set to \`false\`, the previous secret remains valid for 2 hours. + * Generate a new secret key for this widget. If `invalidate_immediately` + * is set to `false`, the previous secret remains valid for 2 hours. * * Note that secrets cannot be rotated again during the grace period. */ public async accounts$turnstile$widget$rotate$secret(params: Params$accounts$turnstile$widget$rotate$secret, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}/rotate_secret\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}/rotate_secret`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56204,7 +56201,7 @@ export class Client { * Fetches all the custom pages at the account level. */ public async custom$pages$for$an$account$list$custom$pages(params: Params$custom$pages$for$an$account$list$custom$pages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages`; const headers = { Accept: "application/json" }; @@ -56219,7 +56216,7 @@ export class Client { * Fetches the details of a custom page. */ public async custom$pages$for$an$account$get$a$custom$page(params: Params$custom$pages$for$an$account$get$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56234,7 +56231,7 @@ export class Client { * Updates the configuration of an existing custom page. */ public async custom$pages$for$an$account$update$a$custom$page(params: Params$custom$pages$for$an$account$update$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56251,7 +56248,7 @@ export class Client { * Returns the specified D1 database. */ public async cloudflare$d1$get$database(params: Params$cloudflare$d1$get$database, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}`; const headers = { Accept: "application/json" }; @@ -56266,7 +56263,7 @@ export class Client { * Deletes the specified D1 database. */ public async cloudflare$d1$delete$database(params: Params$cloudflare$d1$delete$database, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}`; const headers = { Accept: "application/json" }; @@ -56281,7 +56278,7 @@ export class Client { * Returns the query result. */ public async cloudflare$d1$query$database(params: Params$cloudflare$d1$query$database, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}/query\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}/query`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56298,7 +56295,7 @@ export class Client { * Run traceroutes from Cloudflare colos. */ public async diagnostics$traceroute(params: Params$diagnostics$traceroute, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/diagnostics/traceroute\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/diagnostics/traceroute`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56317,7 +56314,7 @@ export class Client { * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ public async dns$firewall$analytics$table(params: Params$dns$firewall$analytics$table, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report`; const headers = { Accept: "application/json" }; @@ -56344,7 +56341,7 @@ export class Client { * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ public async dns$firewall$analytics$by$time(params: Params$dns$firewall$analytics$by$time, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime`; const headers = { Accept: "application/json" }; @@ -56370,7 +56367,7 @@ export class Client { * Lists existing destination addresses. */ public async email$routing$destination$addresses$list$destination$addresses(params: Params$email$routing$destination$addresses$list$destination$addresses, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses`; const headers = { Accept: "application/json" }; @@ -56392,7 +56389,7 @@ export class Client { * Create a destination address to forward your emails to. Destination addresses need to be verified before they can be used. */ public async email$routing$destination$addresses$create$a$destination$address(params: Params$email$routing$destination$addresses$create$a$destination$address, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56409,7 +56406,7 @@ export class Client { * Gets information for a specific destination email already created. */ public async email$routing$destination$addresses$get$a$destination$address(params: Params$email$routing$destination$addresses$get$a$destination$address, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/\${encodeURIComponent(params.parameter.destination_address_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/${encodeURIComponent(params.parameter.destination_address_identifier)}`; const headers = { Accept: "application/json" }; @@ -56424,7 +56421,7 @@ export class Client { * Deletes a specific destination address. */ public async email$routing$destination$addresses$delete$destination$address(params: Params$email$routing$destination$addresses$delete$destination$address, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/\${encodeURIComponent(params.parameter.destination_address_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/${encodeURIComponent(params.parameter.destination_address_identifier)}`; const headers = { Accept: "application/json" }; @@ -56439,7 +56436,7 @@ export class Client { * Fetches IP Access rules of an account. These rules apply to all the zones in the account. You can filter the results using several optional parameters. */ public async ip$access$rules$for$an$account$list$ip$access$rules(params: Params$ip$access$rules$for$an$account$list$ip$access$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -56465,7 +56462,7 @@ export class Client { * Note: To create an IP Access rule that applies to a single zone, refer to the [IP Access rules for a zone](#ip-access-rules-for-a-zone) endpoints. */ public async ip$access$rules$for$an$account$create$an$ip$access$rule(params: Params$ip$access$rules$for$an$account$create$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56482,7 +56479,7 @@ export class Client { * Fetches the details of an IP Access rule defined at the account level. */ public async ip$access$rules$for$an$account$get$an$ip$access$rule(params: Params$ip$access$rules$for$an$account$get$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56499,7 +56496,7 @@ export class Client { * Note: This operation will affect all zones in the account. */ public async ip$access$rules$for$an$account$delete$an$ip$access$rule(params: Params$ip$access$rules$for$an$account$delete$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56516,7 +56513,7 @@ export class Client { * Note: This operation will affect all zones in the account. */ public async ip$access$rules$for$an$account$update$an$ip$access$rule(params: Params$ip$access$rules$for$an$account$update$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56530,7 +56527,7 @@ export class Client { } /** Get indicator feeds owned by this account */ public async custom$indicator$feeds$get$indicator$feeds(params: Params$custom$indicator$feeds$get$indicator$feeds, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds`; const headers = { Accept: "application/json" }; @@ -56542,7 +56539,7 @@ export class Client { } /** Create new indicator feed */ public async custom$indicator$feeds$create$indicator$feeds(params: Params$custom$indicator$feeds$create$indicator$feeds, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56556,7 +56553,7 @@ export class Client { } /** Get indicator feed metadata */ public async custom$indicator$feeds$get$indicator$feed$metadata(params: Params$custom$indicator$feeds$get$indicator$feed$metadata, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}`; const headers = { Accept: "application/json" }; @@ -56568,7 +56565,7 @@ export class Client { } /** Get indicator feed data */ public async custom$indicator$feeds$get$indicator$feed$data(params: Params$custom$indicator$feeds$get$indicator$feed$data, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}/data\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}/data`; const headers = { Accept: "text/csv" }; @@ -56580,7 +56577,7 @@ export class Client { } /** Update indicator feed data */ public async custom$indicator$feeds$update$indicator$feed$data(params: Params$custom$indicator$feeds$update$indicator$feed$data, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}/snapshot\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}/snapshot`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -56594,7 +56591,7 @@ export class Client { } /** Grant permission to indicator feed */ public async custom$indicator$feeds$add$permission(params: Params$custom$indicator$feeds$add$permission, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/add\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/add`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56608,7 +56605,7 @@ export class Client { } /** Revoke permission to indicator feed */ public async custom$indicator$feeds$remove$permission(params: Params$custom$indicator$feeds$remove$permission, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/remove\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/remove`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56622,7 +56619,7 @@ export class Client { } /** List indicator feed permissions */ public async custom$indicator$feeds$view$permissions(params: Params$custom$indicator$feeds$view$permissions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/view\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/view`; const headers = { Accept: "application/json" }; @@ -56634,7 +56631,7 @@ export class Client { } /** List sinkholes owned by this account */ public async sinkhole$config$get$sinkholes(params: Params$sinkhole$config$get$sinkholes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/sinkholes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/sinkholes`; const headers = { Accept: "application/json" }; @@ -56649,7 +56646,7 @@ export class Client { * List configured monitors for an account. */ public async account$load$balancer$monitors$list$monitors(params: Params$account$load$balancer$monitors$list$monitors, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors`; const headers = { Accept: "application/json" }; @@ -56664,7 +56661,7 @@ export class Client { * Create a configured monitor. */ public async account$load$balancer$monitors$create$monitor(params: Params$account$load$balancer$monitors$create$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56681,7 +56678,7 @@ export class Client { * List a single configured monitor for an account. */ public async account$load$balancer$monitors$monitor$details(params: Params$account$load$balancer$monitors$monitor$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56696,7 +56693,7 @@ export class Client { * Modify a configured monitor. */ public async account$load$balancer$monitors$update$monitor(params: Params$account$load$balancer$monitors$update$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56713,7 +56710,7 @@ export class Client { * Delete a configured monitor. */ public async account$load$balancer$monitors$delete$monitor(params: Params$account$load$balancer$monitors$delete$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56728,7 +56725,7 @@ export class Client { * Apply changes to an existing monitor, overwriting the supplied properties. */ public async account$load$balancer$monitors$patch$monitor(params: Params$account$load$balancer$monitors$patch$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56745,7 +56742,7 @@ export class Client { * Preview pools using the specified monitor with provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ public async account$load$balancer$monitors$preview$monitor(params: Params$account$load$balancer$monitors$preview$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56762,7 +56759,7 @@ export class Client { * Get the list of resources that reference the provided monitor. */ public async account$load$balancer$monitors$list$monitor$references(params: Params$account$load$balancer$monitors$list$monitor$references, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -56777,7 +56774,7 @@ export class Client { * List configured pools. */ public async account$load$balancer$pools$list$pools(params: Params$account$load$balancer$pools$list$pools, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { Accept: "application/json" }; @@ -56796,7 +56793,7 @@ export class Client { * Create a new pool. */ public async account$load$balancer$pools$create$pool(params: Params$account$load$balancer$pools$create$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56810,10 +56807,10 @@ export class Client { } /** * Patch Pools - * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending \`name\`. Returns the list of affected pools. Supports the standard pagination query parameters, either \`limit\`/\`offset\` or \`per_page\`/\`page\`. + * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending `name`. Returns the list of affected pools. Supports the standard pagination query parameters, either `limit`/`offset` or `per_page`/`page`. */ public async account$load$balancer$pools$patch$pools(params: Params$account$load$balancer$pools$patch$pools, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56830,7 +56827,7 @@ export class Client { * Fetch a single configured pool. */ public async account$load$balancer$pools$pool$details(params: Params$account$load$balancer$pools$pool$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56845,7 +56842,7 @@ export class Client { * Modify a configured pool. */ public async account$load$balancer$pools$update$pool(params: Params$account$load$balancer$pools$update$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56862,7 +56859,7 @@ export class Client { * Delete a configured pool. */ public async account$load$balancer$pools$delete$pool(params: Params$account$load$balancer$pools$delete$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56877,7 +56874,7 @@ export class Client { * Apply changes to an existing pool, overwriting the supplied properties. */ public async account$load$balancer$pools$patch$pool(params: Params$account$load$balancer$pools$patch$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56894,7 +56891,7 @@ export class Client { * Fetch the latest pool health status for a single pool. */ public async account$load$balancer$pools$pool$health$details(params: Params$account$load$balancer$pools$pool$health$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/health\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/health`; const headers = { Accept: "application/json" }; @@ -56909,7 +56906,7 @@ export class Client { * Preview pool health using provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ public async account$load$balancer$pools$preview$pool(params: Params$account$load$balancer$pools$preview$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56926,7 +56923,7 @@ export class Client { * Get the list of resources that reference the provided pool. */ public async account$load$balancer$pools$list$pool$references(params: Params$account$load$balancer$pools$list$pool$references, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -56941,7 +56938,7 @@ export class Client { * Get the result of a previous preview operation using the provided preview_id. */ public async account$load$balancer$monitors$preview$result(params: Params$account$load$balancer$monitors$preview$result, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/preview/\${encodeURIComponent(params.parameter.preview_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/preview/${encodeURIComponent(params.parameter.preview_id)}`; const headers = { Accept: "application/json" }; @@ -56956,7 +56953,7 @@ export class Client { * List all region mappings. */ public async load$balancer$regions$list$regions(params: Params$load$balancer$regions$list$regions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions`; const headers = { Accept: "application/json" }; @@ -56977,7 +56974,7 @@ export class Client { * Get a single region mapping. */ public async load$balancer$regions$get$region(params: Params$load$balancer$regions$get$region, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions/\${encodeURIComponent(params.parameter.region_code)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions/${encodeURIComponent(params.parameter.region_code)}`; const headers = { Accept: "application/json" }; @@ -56992,7 +56989,7 @@ export class Client { * Search for Load Balancing resources. */ public async account$load$balancer$search$search$resources(params: Params$account$load$balancer$search$search$resources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/search\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/search`; const headers = { Accept: "application/json" }; @@ -57013,7 +57010,7 @@ export class Client { * Lists interconnects associated with an account. */ public async magic$interconnects$list$interconnects(params: Params$magic$interconnects$list$interconnects, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects`; const headers = { Accept: "application/json" }; @@ -57025,10 +57022,10 @@ export class Client { } /** * Update multiple interconnects - * Updates multiple interconnects associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates multiple interconnects associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$interconnects$update$multiple$interconnects(params: Params$magic$interconnects$update$multiple$interconnects, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57045,7 +57042,7 @@ export class Client { * Lists details for a specific interconnect. */ public async magic$interconnects$list$interconnect$details(params: Params$magic$interconnects$list$interconnect$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57057,10 +57054,10 @@ export class Client { } /** * Update interconnect - * Updates a specific interconnect associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific interconnect associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$interconnects$update$interconnect(params: Params$magic$interconnects$update$interconnect, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57077,7 +57074,7 @@ export class Client { * Lists GRE tunnels associated with an account. */ public async magic$gre$tunnels$list$gre$tunnels(params: Params$magic$gre$tunnels$list$gre$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { Accept: "application/json" }; @@ -57089,10 +57086,10 @@ export class Client { } /** * Update multiple GRE tunnels - * Updates multiple GRE tunnels. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates multiple GRE tunnels. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$gre$tunnels$update$multiple$gre$tunnels(params: Params$magic$gre$tunnels$update$multiple$gre$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57106,10 +57103,10 @@ export class Client { } /** * Create GRE tunnels - * Creates new GRE tunnels. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Creates new GRE tunnels. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$gre$tunnels$create$gre$tunnels(params: Params$magic$gre$tunnels$create$gre$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57126,7 +57123,7 @@ export class Client { * Lists informtion for a specific GRE tunnel. */ public async magic$gre$tunnels$list$gre$tunnel$details(params: Params$magic$gre$tunnels$list$gre$tunnel$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57138,10 +57135,10 @@ export class Client { } /** * Update GRE Tunnel - * Updates a specific GRE tunnel. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific GRE tunnel. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$gre$tunnels$update$gre$tunnel(params: Params$magic$gre$tunnels$update$gre$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57155,10 +57152,10 @@ export class Client { } /** * Delete GRE Tunnel - * Disables and removes a specific static GRE tunnel. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Disables and removes a specific static GRE tunnel. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$gre$tunnels$delete$gre$tunnel(params: Params$magic$gre$tunnels$delete$gre$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57173,7 +57170,7 @@ export class Client { * Lists IPsec tunnels associated with an account. */ public async magic$ipsec$tunnels$list$ipsec$tunnels(params: Params$magic$ipsec$tunnels$list$ipsec$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { Accept: "application/json" }; @@ -57185,10 +57182,10 @@ export class Client { } /** * Update multiple IPsec tunnels - * Update multiple IPsec tunnels associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Update multiple IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$ipsec$tunnels$update$multiple$ipsec$tunnels(params: Params$magic$ipsec$tunnels$update$multiple$ipsec$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57202,10 +57199,10 @@ export class Client { } /** * Create IPsec tunnels - * Creates new IPsec tunnels associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Creates new IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$ipsec$tunnels$create$ipsec$tunnels(params: Params$magic$ipsec$tunnels$create$ipsec$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57222,7 +57219,7 @@ export class Client { * Lists details for a specific IPsec tunnel. */ public async magic$ipsec$tunnels$list$ipsec$tunnel$details(params: Params$magic$ipsec$tunnels$list$ipsec$tunnel$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57234,10 +57231,10 @@ export class Client { } /** * Update IPsec Tunnel - * Updates a specific IPsec tunnel associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific IPsec tunnel associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$ipsec$tunnels$update$ipsec$tunnel(params: Params$magic$ipsec$tunnels$update$ipsec$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57251,10 +57248,10 @@ export class Client { } /** * Delete IPsec Tunnel - * Disables and removes a specific static IPsec Tunnel associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Disables and removes a specific static IPsec Tunnel associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ public async magic$ipsec$tunnels$delete$ipsec$tunnel(params: Params$magic$ipsec$tunnels$delete$ipsec$tunnel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57266,10 +57263,10 @@ export class Client { } /** * Generate Pre Shared Key (PSK) for IPsec tunnels - * Generates a Pre Shared Key for a specific IPsec tunnel used in the IKE session. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. After a PSK is generated, the PSK is immediately persisted to Cloudflare's edge and cannot be retrieved later. Note the PSK in a safe place. + * Generates a Pre Shared Key for a specific IPsec tunnel used in the IKE session. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. After a PSK is generated, the PSK is immediately persisted to Cloudflare's edge and cannot be retrieved later. Note the PSK in a safe place. */ public async magic$ipsec$tunnels$generate$pre$shared$key$$$psk$$for$ipsec$tunnels(params: Params$magic$ipsec$tunnels$generate$pre$shared$key$$$psk$$for$ipsec$tunnels, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}/psk_generate\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}/psk_generate`; const headers = { Accept: "application/json" }; @@ -57284,7 +57281,7 @@ export class Client { * List all Magic static routes. */ public async magic$static$routes$list$routes(params: Params$magic$static$routes$list$routes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { Accept: "application/json" }; @@ -57296,10 +57293,10 @@ export class Client { } /** * Update Many Routes - * Update multiple Magic static routes. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. Only fields for a route that need to be changed need be provided. + * Update multiple Magic static routes. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. Only fields for a route that need to be changed need be provided. */ public async magic$static$routes$update$many$routes(params: Params$magic$static$routes$update$many$routes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57313,10 +57310,10 @@ export class Client { } /** * Create Routes - * Creates a new Magic static route. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. + * Creates a new Magic static route. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. */ public async magic$static$routes$create$routes(params: Params$magic$static$routes$create$routes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57333,7 +57330,7 @@ export class Client { * Delete multiple Magic static routes. */ public async magic$static$routes$delete$many$routes(params: Params$magic$static$routes$delete$many$routes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57350,7 +57347,7 @@ export class Client { * Get a specific Magic static route. */ public async magic$static$routes$route$details(params: Params$magic$static$routes$route$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { Accept: "application/json" }; @@ -57362,10 +57359,10 @@ export class Client { } /** * Update Route - * Update a specific Magic static route. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. + * Update a specific Magic static route. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. */ public async magic$static$routes$update$route(params: Params$magic$static$routes$update$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57382,7 +57379,7 @@ export class Client { * Disable and remove a specific Magic static route. */ public async magic$static$routes$delete$route(params: Params$magic$static$routes$delete$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { Accept: "application/json" }; @@ -57397,7 +57394,7 @@ export class Client { * List all members of an account. */ public async account$members$list$members(params: Params$account$members$list$members, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members`; const headers = { Accept: "application/json" }; @@ -57420,7 +57417,7 @@ export class Client { * Add a user to the list of members for this account. */ public async account$members$add$member(params: Params$account$members$add$member, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57437,7 +57434,7 @@ export class Client { * Get information about a specific member of an account. */ public async account$members$member$details(params: Params$account$members$member$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57452,7 +57449,7 @@ export class Client { * Modify an account member. */ public async account$members$update$member(params: Params$account$members$update$member, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57469,7 +57466,7 @@ export class Client { * Remove a member from an account. */ public async account$members$remove$member(params: Params$account$members$remove$member, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57484,7 +57481,7 @@ export class Client { * Lists default sampling and router IPs for account. */ public async magic$network$monitoring$configuration$list$account$configuration(params: Params$magic$network$monitoring$configuration$list$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57499,7 +57496,7 @@ export class Client { * Update an existing network monitoring configuration, requires the entire configuration to be updated at once. */ public async magic$network$monitoring$configuration$update$an$entire$account$configuration(params: Params$magic$network$monitoring$configuration$update$an$entire$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57514,7 +57511,7 @@ export class Client { * Create a new network monitoring configuration. */ public async magic$network$monitoring$configuration$create$account$configuration(params: Params$magic$network$monitoring$configuration$create$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57529,7 +57526,7 @@ export class Client { * Delete an existing network monitoring configuration. */ public async magic$network$monitoring$configuration$delete$account$configuration(params: Params$magic$network$monitoring$configuration$delete$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57544,7 +57541,7 @@ export class Client { * Update fields in an existing network monitoring configuration. */ public async magic$network$monitoring$configuration$update$account$configuration$fields(params: Params$magic$network$monitoring$configuration$update$account$configuration$fields, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57559,7 +57556,7 @@ export class Client { * Lists default sampling, router IPs, and rules for account. */ public async magic$network$monitoring$configuration$list$rules$and$account$configuration(params: Params$magic$network$monitoring$configuration$list$rules$and$account$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config/full\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config/full`; const headers = { Accept: "application/json" }; @@ -57574,7 +57571,7 @@ export class Client { * Lists network monitoring rules for account. */ public async magic$network$monitoring$rules$list$rules(params: Params$magic$network$monitoring$rules$list$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57589,7 +57586,7 @@ export class Client { * Update network monitoring rules for account. */ public async magic$network$monitoring$rules$update$rules(params: Params$magic$network$monitoring$rules$update$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57604,7 +57601,7 @@ export class Client { * Create network monitoring rules for account. Currently only supports creating a single rule per API request. */ public async magic$network$monitoring$rules$create$rules(params: Params$magic$network$monitoring$rules$create$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57619,7 +57616,7 @@ export class Client { * List a single network monitoring rule for account. */ public async magic$network$monitoring$rules$get$rule(params: Params$magic$network$monitoring$rules$get$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57634,7 +57631,7 @@ export class Client { * Delete a network monitoring rule for account. */ public async magic$network$monitoring$rules$delete$rule(params: Params$magic$network$monitoring$rules$delete$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57649,7 +57646,7 @@ export class Client { * Update a network monitoring rule for account. */ public async magic$network$monitoring$rules$update$rule(params: Params$magic$network$monitoring$rules$update$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57664,7 +57661,7 @@ export class Client { * Update advertisement for rule. */ public async magic$network$monitoring$rules$update$advertisement$for$rule(params: Params$magic$network$monitoring$rules$update$advertisement$for$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}/advertisement\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}/advertisement`; const headers = { Accept: "application/json" }; @@ -57679,7 +57676,7 @@ export class Client { * Lists all mTLS certificates. */ public async m$tls$certificate$management$list$m$tls$certificates(params: Params$m$tls$certificate$management$list$m$tls$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates`; const headers = { Accept: "application/json" }; @@ -57694,7 +57691,7 @@ export class Client { * Upload a certificate that you want to use with mTLS-enabled Cloudflare services. */ public async m$tls$certificate$management$upload$m$tls$certificate(params: Params$m$tls$certificate$management$upload$m$tls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57711,7 +57708,7 @@ export class Client { * Fetches a single mTLS certificate. */ public async m$tls$certificate$management$get$m$tls$certificate(params: Params$m$tls$certificate$management$get$m$tls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57726,7 +57723,7 @@ export class Client { * Deletes the mTLS certificate unless the certificate is in use by one or more Cloudflare services. */ public async m$tls$certificate$management$delete$m$tls$certificate(params: Params$m$tls$certificate$management$delete$m$tls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57741,7 +57738,7 @@ export class Client { * Lists all active associations between the certificate and Cloudflare services. */ public async m$tls$certificate$management$list$m$tls$certificate$associations(params: Params$m$tls$certificate$management$list$m$tls$certificate$associations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}/associations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}/associations`; const headers = { Accept: "application/json" }; @@ -57756,7 +57753,7 @@ export class Client { * Lists all packet capture requests for an account. */ public async magic$pcap$collection$list$packet$capture$requests(params: Params$magic$pcap$collection$list$packet$capture$requests, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps`; const headers = { Accept: "application/json" }; @@ -57771,7 +57768,7 @@ export class Client { * Create new PCAP request for account. */ public async magic$pcap$collection$create$pcap$request(params: Params$magic$pcap$collection$create$pcap$request, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57788,7 +57785,7 @@ export class Client { * Get information for a PCAP request by id. */ public async magic$pcap$collection$get$pcap$request(params: Params$magic$pcap$collection$get$pcap$request, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57803,7 +57800,7 @@ export class Client { * Download PCAP information into a file. Response is a binary PCAP file. */ public async magic$pcap$collection$download$simple$pcap(params: Params$magic$pcap$collection$download$simple$pcap, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/\${encodeURIComponent(params.parameter.identifier)}/download\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/${encodeURIComponent(params.parameter.identifier)}/download`; const headers = {}; return this.apiClient.request({ httpMethod: "GET", @@ -57816,7 +57813,7 @@ export class Client { * List all buckets configured for use with PCAPs API. */ public async magic$pcap$collection$list$pca$ps$bucket$ownership(params: Params$magic$pcap$collection$list$pca$ps$bucket$ownership, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership`; const headers = { Accept: "application/json" }; @@ -57831,7 +57828,7 @@ export class Client { * Adds an AWS or GCP bucket to use with full packet captures. */ public async magic$pcap$collection$add$buckets$for$full$packet$captures(params: Params$magic$pcap$collection$add$buckets$for$full$packet$captures, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57848,7 +57845,7 @@ export class Client { * Deletes buckets added to the packet captures API. */ public async magic$pcap$collection$delete$buckets$for$full$packet$captures(params: Params$magic$pcap$collection$delete$buckets$for$full$packet$captures, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/${encodeURIComponent(params.parameter.identifier)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -57861,7 +57858,7 @@ export class Client { * Validates buckets added to the packet captures API. */ public async magic$pcap$collection$validate$buckets$for$full$packet$captures(params: Params$magic$pcap$collection$validate$buckets$for$full$packet$captures, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/validate\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57875,7 +57872,7 @@ export class Client { } /** Request Trace */ public async account$request$tracer$request$trace(params: Params$account$request$tracer$request$trace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/request-tracer/trace\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/request-tracer/trace`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57892,7 +57889,7 @@ export class Client { * Get all available roles for an account. */ public async account$roles$list$roles(params: Params$account$roles$list$roles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/roles\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/roles`; const headers = { Accept: "application/json" }; @@ -57907,7 +57904,7 @@ export class Client { * Get information about a specific role for an account. */ public async account$roles$role$details(params: Params$account$roles$role$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/roles/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/roles/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57922,7 +57919,7 @@ export class Client { * Fetches a list item in the list. */ public async lists$get$a$list$item(params: Params$lists$get$a$list$item, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items/\${encodeURIComponent(params.parameter.item_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items/${encodeURIComponent(params.parameter.item_id)}`; const headers = { Accept: "application/json" }; @@ -57936,10 +57933,10 @@ export class Client { * Get bulk operation status * Gets the current status of an asynchronous operation on a list. * - * The \`status\` property can have one of the following values: \`pending\`, \`running\`, \`completed\`, or \`failed\`. If the status is \`failed\`, the \`error\` property will contain a message describing the error. + * The `status` property can have one of the following values: `pending`, `running`, `completed`, or `failed`. If the status is `failed`, the `error` property will contain a message describing the error. */ public async lists$get$bulk$operation$status(params: Params$lists$get$bulk$operation$status, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/bulk_operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/bulk_operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -57954,7 +57951,7 @@ export class Client { * Creates a new Web Analytics site. */ public async web$analytics$create$site(params: Params$web$analytics$create$site, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57971,7 +57968,7 @@ export class Client { * Retrieves a Web Analytics site. */ public async web$analytics$get$site(params: Params$web$analytics$get$site, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { Accept: "application/json" }; @@ -57986,7 +57983,7 @@ export class Client { * Updates an existing Web Analytics site. */ public async web$analytics$update$site(params: Params$web$analytics$update$site, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58003,7 +58000,7 @@ export class Client { * Deletes an existing Web Analytics site. */ public async web$analytics$delete$site(params: Params$web$analytics$delete$site, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { Accept: "application/json" }; @@ -58018,7 +58015,7 @@ export class Client { * Lists all Web Analytics sites of an account. */ public async web$analytics$list$sites(params: Params$web$analytics$list$sites, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/list\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/list`; const headers = { Accept: "application/json" }; @@ -58039,7 +58036,7 @@ export class Client { * Creates a new rule in a Web Analytics ruleset. */ public async web$analytics$create$rule(params: Params$web$analytics$create$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58056,7 +58053,7 @@ export class Client { * Updates a rule in a Web Analytics ruleset. */ public async web$analytics$update$rule(params: Params$web$analytics$update$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58073,7 +58070,7 @@ export class Client { * Deletes an existing rule from a Web Analytics ruleset. */ public async web$analytics$delete$rule(params: Params$web$analytics$delete$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -58088,7 +58085,7 @@ export class Client { * Lists all the rules in a Web Analytics ruleset. */ public async web$analytics$list$rules(params: Params$web$analytics$list$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rules`; const headers = { Accept: "application/json" }; @@ -58103,7 +58100,7 @@ export class Client { * Modifies one or more rules in a Web Analytics ruleset with a single request. */ public async web$analytics$modify$rules(params: Params$web$analytics$modify$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rules\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58120,7 +58117,7 @@ export class Client { * List ACLs. */ public async secondary$dns$$$acl$$list$ac$ls(params: Params$secondary$dns$$$acl$$list$ac$ls, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls`; const headers = { Accept: "application/json" }; @@ -58135,7 +58132,7 @@ export class Client { * Create ACL. */ public async secondary$dns$$$acl$$create$acl(params: Params$secondary$dns$$$acl$$create$acl, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58152,7 +58149,7 @@ export class Client { * Get ACL. */ public async secondary$dns$$$acl$$acl$details(params: Params$secondary$dns$$$acl$$acl$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58167,7 +58164,7 @@ export class Client { * Modify ACL. */ public async secondary$dns$$$acl$$update$acl(params: Params$secondary$dns$$$acl$$update$acl, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58184,7 +58181,7 @@ export class Client { * Delete ACL. */ public async secondary$dns$$$acl$$delete$acl(params: Params$secondary$dns$$$acl$$delete$acl, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58199,7 +58196,7 @@ export class Client { * List Peers. */ public async secondary$dns$$$peer$$list$peers(params: Params$secondary$dns$$$peer$$list$peers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers`; const headers = { Accept: "application/json" }; @@ -58214,7 +58211,7 @@ export class Client { * Create Peer. */ public async secondary$dns$$$peer$$create$peer(params: Params$secondary$dns$$$peer$$create$peer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58231,7 +58228,7 @@ export class Client { * Get Peer. */ public async secondary$dns$$$peer$$peer$details(params: Params$secondary$dns$$$peer$$peer$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58246,7 +58243,7 @@ export class Client { * Modify Peer. */ public async secondary$dns$$$peer$$update$peer(params: Params$secondary$dns$$$peer$$update$peer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58263,7 +58260,7 @@ export class Client { * Delete Peer. */ public async secondary$dns$$$peer$$delete$peer(params: Params$secondary$dns$$$peer$$delete$peer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58278,7 +58275,7 @@ export class Client { * List TSIGs. */ public async secondary$dns$$$tsig$$list$tsi$gs(params: Params$secondary$dns$$$tsig$$list$tsi$gs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs`; const headers = { Accept: "application/json" }; @@ -58293,7 +58290,7 @@ export class Client { * Create TSIG. */ public async secondary$dns$$$tsig$$create$tsig(params: Params$secondary$dns$$$tsig$$create$tsig, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58310,7 +58307,7 @@ export class Client { * Get TSIG. */ public async secondary$dns$$$tsig$$tsig$details(params: Params$secondary$dns$$$tsig$$tsig$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58325,7 +58322,7 @@ export class Client { * Modify TSIG. */ public async secondary$dns$$$tsig$$update$tsig(params: Params$secondary$dns$$$tsig$$update$tsig, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58342,7 +58339,7 @@ export class Client { * Delete TSIG. */ public async secondary$dns$$$tsig$$delete$tsig(params: Params$secondary$dns$$$tsig$$delete$tsig, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58357,7 +58354,7 @@ export class Client { * Retrieves Workers KV request metrics for the given account. */ public async workers$kv$request$analytics$query$request$analytics(params: Params$workers$kv$request$analytics$query$request$analytics, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics`; const headers = { Accept: "application/json" }; @@ -58376,7 +58373,7 @@ export class Client { * Retrieves Workers KV stored data metrics for the given account. */ public async workers$kv$stored$data$analytics$query$stored$data$analytics(params: Params$workers$kv$stored$data$analytics$query$stored$data$analytics, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics/stored\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics/stored`; const headers = { Accept: "application/json" }; @@ -58395,7 +58392,7 @@ export class Client { * Returns the namespaces owned by an account. */ public async workers$kv$namespace$list$namespaces(params: Params$workers$kv$namespace$list$namespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces`; const headers = { Accept: "application/json" }; @@ -58414,10 +58411,10 @@ export class Client { } /** * Create a Namespace - * Creates a namespace under the given title. A \`400\` is returned if the account already owns a namespace with this title. A namespace must be explicitly deleted to be replaced. + * Creates a namespace under the given title. A `400` is returned if the account already owns a namespace with this title. A namespace must be explicitly deleted to be replaced. */ public async workers$kv$namespace$create$a$namespace(params: Params$workers$kv$namespace$create$a$namespace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58434,7 +58431,7 @@ export class Client { * Modifies a namespace's title. */ public async workers$kv$namespace$rename$a$namespace(params: Params$workers$kv$namespace$rename$a$namespace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58451,7 +58448,7 @@ export class Client { * Deletes the namespace corresponding to the given ID. */ public async workers$kv$namespace$remove$a$namespace(params: Params$workers$kv$namespace$remove$a$namespace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}`; const headers = { Accept: "application/json" }; @@ -58463,10 +58460,10 @@ export class Client { } /** * Write multiple key-value pairs - * Write multiple keys and values at once. Body should be an array of up to 10,000 key-value pairs to be stored, along with optional expiration information. Existing values and expirations will be overwritten. If neither \`expiration\` nor \`expiration_ttl\` is specified, the key-value pair will never expire. If both are set, \`expiration_ttl\` is used and \`expiration\` is ignored. The entire request size must be 100 megabytes or less. + * Write multiple keys and values at once. Body should be an array of up to 10,000 key-value pairs to be stored, along with optional expiration information. Existing values and expirations will be overwritten. If neither `expiration` nor `expiration_ttl` is specified, the key-value pair will never expire. If both are set, `expiration_ttl` is used and `expiration` is ignored. The entire request size must be 100 megabytes or less. */ public async workers$kv$namespace$write$multiple$key$value$pairs(params: Params$workers$kv$namespace$write$multiple$key$value$pairs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/bulk\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/bulk`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58483,7 +58480,7 @@ export class Client { * Remove multiple KV pairs from the namespace. Body should be an array of up to 10,000 keys to be removed. */ public async workers$kv$namespace$delete$multiple$key$value$pairs(params: Params$workers$kv$namespace$delete$multiple$key$value$pairs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/bulk\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/bulk`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58500,7 +58497,7 @@ export class Client { * Lists a namespace's keys. */ public async workers$kv$namespace$list$a$namespace$$s$keys(params: Params$workers$kv$namespace$list$a$namespace$$s$keys, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/keys\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/keys`; const headers = { Accept: "application/json" }; @@ -58518,10 +58515,10 @@ export class Client { } /** * Read the metadata for a key - * Returns the metadata associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. + * Returns the metadata associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. */ public async workers$kv$namespace$read$the$metadata$for$a$key(params: Params$workers$kv$namespace$read$the$metadata$for$a$key, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/metadata/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/metadata/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58533,10 +58530,10 @@ export class Client { } /** * Read key-value pair - * Returns the value associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. If the KV-pair is set to expire at some point, the expiration time as measured in seconds since the UNIX epoch will be returned in the \`expiration\` response header. + * Returns the value associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. If the KV-pair is set to expire at some point, the expiration time as measured in seconds since the UNIX epoch will be returned in the `expiration` response header. */ public async workers$kv$namespace$read$key$value$pair(params: Params$workers$kv$namespace$read$key$value$pair, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58548,10 +58545,10 @@ export class Client { } /** * Write key-value pair with metadata - * Write a value identified by a key. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. Body should be the value to be stored along with JSON metadata to be associated with the key/value pair. Existing values, expirations, and metadata will be overwritten. If neither \`expiration\` nor \`expiration_ttl\` is specified, the key-value pair will never expire. If both are set, \`expiration_ttl\` is used and \`expiration\` is ignored. + * Write a value identified by a key. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. Body should be the value to be stored along with JSON metadata to be associated with the key/value pair. Existing values, expirations, and metadata will be overwritten. If neither `expiration` nor `expiration_ttl` is specified, the key-value pair will never expire. If both are set, `expiration_ttl` is used and `expiration` is ignored. */ public async workers$kv$namespace$write$key$value$pair$with$metadata(params: Params$workers$kv$namespace$write$key$value$pair$with$metadata, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -58565,10 +58562,10 @@ export class Client { } /** * Delete key-value pair - * Remove a KV pair from the namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. + * Remove a KV pair from the namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. */ public async workers$kv$namespace$delete$key$value$pair(params: Params$workers$kv$namespace$delete$key$value$pair, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58583,7 +58580,7 @@ export class Client { * Lists all of an account's subscriptions. */ public async account$subscriptions$list$subscriptions(params: Params$account$subscriptions$list$subscriptions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions`; const headers = { Accept: "application/json" }; @@ -58598,7 +58595,7 @@ export class Client { * Creates an account subscription. */ public async account$subscriptions$create$subscription(params: Params$account$subscriptions$create$subscription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58615,7 +58612,7 @@ export class Client { * Updates an account subscription. */ public async account$subscriptions$update$subscription(params: Params$account$subscriptions$update$subscription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/\${encodeURIComponent(params.parameter.subscription_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/${encodeURIComponent(params.parameter.subscription_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58632,7 +58629,7 @@ export class Client { * Deletes an account's subscription. */ public async account$subscriptions$delete$subscription(params: Params$account$subscriptions$delete$subscription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/\${encodeURIComponent(params.parameter.subscription_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/${encodeURIComponent(params.parameter.subscription_identifier)}`; const headers = { Accept: "application/json" }; @@ -58647,7 +58644,7 @@ export class Client { * Returns a list of Vectorize Indexes */ public async vectorize$list$vectorize$indexes(params: Params$vectorize$list$vectorize$indexes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes`; const headers = { Accept: "application/json" }; @@ -58662,7 +58659,7 @@ export class Client { * Creates and returns a new Vectorize Index. */ public async vectorize$create$vectorize$index(params: Params$vectorize$create$vectorize$index, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58679,7 +58676,7 @@ export class Client { * Returns the specified Vectorize Index. */ public async vectorize$get$vectorize$index(params: Params$vectorize$get$vectorize$index, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { Accept: "application/json" }; @@ -58694,7 +58691,7 @@ export class Client { * Updates and returns the specified Vectorize Index. */ public async vectorize$update$vectorize$index(params: Params$vectorize$update$vectorize$index, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58711,7 +58708,7 @@ export class Client { * Deletes the specified Vectorize Index. */ public async vectorize$delete$vectorize$index(params: Params$vectorize$delete$vectorize$index, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { Accept: "application/json" }; @@ -58726,7 +58723,7 @@ export class Client { * Delete a set of vectors from an index by their vector identifiers. */ public async vectorize$delete$vectors$by$id(params: Params$vectorize$delete$vectors$by$id, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/delete-by-ids\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/delete-by-ids`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58743,7 +58740,7 @@ export class Client { * Get a set of vectors from an index by their vector identifiers. */ public async vectorize$get$vectors$by$id(params: Params$vectorize$get$vectors$by$id, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/get-by-ids\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/get-by-ids`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58760,7 +58757,7 @@ export class Client { * Inserts vectors into the specified index and returns the count of the vectors successfully inserted. */ public async vectorize$insert$vector(params: Params$vectorize$insert$vector, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/insert\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/insert`; const headers = { "Content-Type": "application/x-ndjson", Accept: "application/json" @@ -58777,7 +58774,7 @@ export class Client { * Finds vectors closest to a given vector in an index. */ public async vectorize$query$vector(params: Params$vectorize$query$vector, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/query\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/query`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58794,7 +58791,7 @@ export class Client { * Upserts vectors into the specified index, creating them if they do not exist and returns the count of values and ids successfully inserted. */ public async vectorize$upsert$vector(params: Params$vectorize$upsert$vector, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/upsert\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/upsert`; const headers = { "Content-Type": "application/x-ndjson", Accept: "application/json" @@ -58811,7 +58808,7 @@ export class Client { * Add an account as a member of a particular address map. */ public async ip$address$management$address$maps$add$an$account$membership$to$an$address$map(params: Params$ip$address$management$address$maps$add$an$account$membership$to$an$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/\${encodeURIComponent(params.parameter.account_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/${encodeURIComponent(params.parameter.account_identifier)}`; const headers = { Accept: "application/json" }; @@ -58826,7 +58823,7 @@ export class Client { * Remove an account as a member of a particular address map. */ public async ip$address$management$address$maps$remove$an$account$membership$from$an$address$map(params: Params$ip$address$management$address$maps$remove$an$account$membership$from$an$address$map, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/\${encodeURIComponent(params.parameter.account_identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/${encodeURIComponent(params.parameter.account_identifier)}`; const headers = { Accept: "application/json" }; @@ -58838,10 +58835,10 @@ export class Client { } /** * Search URL scans - * Search scans by date and webpages' requests, including full URL (after redirects), hostname, and path.
A successful scan will appear in search results a few minutes after finishing but may take much longer if the system in under load. By default, only successfully completed scans will appear in search results, unless searching by \`scanId\`. Please take into account that older scans may be removed from the search index at an unspecified time. + * Search scans by date and webpages' requests, including full URL (after redirects), hostname, and path.
A successful scan will appear in search results a few minutes after finishing but may take much longer if the system in under load. By default, only successfully completed scans will appear in search results, unless searching by `scanId`. Please take into account that older scans may be removed from the search index at an unspecified time. */ public async urlscanner$search$scans(params: Params$urlscanner$search$scans, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan`; const headers = { Accept: "application/json" }; @@ -58871,7 +58868,7 @@ export class Client { * Submit a URL to scan. You can also set some options, like the visibility level and custom headers. Accounts are limited to 1 new scan every 10 seconds and 8000 per month. If you need more, please reach out. */ public async urlscanner$create$scan(params: Params$urlscanner$create$scan, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58888,7 +58885,7 @@ export class Client { * Get URL scan by uuid */ public async urlscanner$get$scan(params: Params$urlscanner$get$scan, option?: RequestOption): Promise<(Response$urlscanner$get$scan$Status$200 | Response$urlscanner$get$scan$Status$202)["application/json"]> { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}`; const headers = { Accept: "application/json" }; @@ -58903,7 +58900,7 @@ export class Client { * Get a URL scan's HAR file. See HAR spec at http://www.softwareishard.com/blog/har-12-spec/. */ public async urlscanner$get$scan$har(params: Params$urlscanner$get$scan$har, option?: RequestOption): Promise<(Response$urlscanner$get$scan$har$Status$200 | Response$urlscanner$get$scan$har$Status$202)["application/json"]> { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}/har\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}/har`; const headers = { Accept: "application/json" }; @@ -58918,7 +58915,7 @@ export class Client { * Get scan's screenshot by resolution (desktop/mobile/tablet). */ public async urlscanner$get$scan$screenshot(params: Params$urlscanner$get$scan$screenshot, option?: RequestOption): Promise<(Response$urlscanner$get$scan$screenshot$Status$200 | Response$urlscanner$get$scan$screenshot$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}/screenshot\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}/screenshot`; const headers = { Accept: params.headers.Accept }; @@ -58937,7 +58934,7 @@ export class Client { * Get information about a specific account that you are a member of. */ public async accounts$account$details(params: Params$accounts$account$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58952,7 +58949,7 @@ export class Client { * Update an existing account. */ public async accounts$update$account(params: Params$accounts$update$account, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58969,7 +58966,7 @@ export class Client { * Lists all Access applications in an account. */ public async access$applications$list$access$applications(params: Params$access$applications$list$access$applications, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { Accept: "application/json" }; @@ -58984,7 +58981,7 @@ export class Client { * Adds a new application to Access. */ public async access$applications$add$an$application(params: Params$access$applications$add$an$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59001,7 +58998,7 @@ export class Client { * Fetches information about an Access application. */ public async access$applications$get$an$access$application(params: Params$access$applications$get$an$access$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -59016,7 +59013,7 @@ export class Client { * Updates an Access application. */ public async access$applications$update$a$bookmark$application(params: Params$access$applications$update$a$bookmark$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59033,7 +59030,7 @@ export class Client { * Deletes an application from Access. */ public async access$applications$delete$an$access$application(params: Params$access$applications$delete$an$access$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -59048,7 +59045,7 @@ export class Client { * Revokes all tokens issued for an application. */ public async access$applications$revoke$service$tokens(params: Params$access$applications$revoke$service$tokens, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/revoke_tokens\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/revoke_tokens`; const headers = { Accept: "application/json" }; @@ -59063,7 +59060,7 @@ export class Client { * Tests if a specific user has permission to access an application. */ public async access$applications$test$access$policies(params: Params$access$applications$test$access$policies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/user_policy_checks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/user_policy_checks`; const headers = { Accept: "application/json" }; @@ -59078,7 +59075,7 @@ export class Client { * Fetches a short-lived certificate CA and its public key. */ public async access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca(params: Params$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59093,7 +59090,7 @@ export class Client { * Generates a new short-lived certificate CA and public key. */ public async access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca(params: Params$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59108,7 +59105,7 @@ export class Client { * Deletes a short-lived certificate CA. */ public async access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca(params: Params$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59123,7 +59120,7 @@ export class Client { * Lists Access policies configured for an application. */ public async access$policies$list$access$policies(params: Params$access$policies$list$access$policies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { Accept: "application/json" }; @@ -59138,7 +59135,7 @@ export class Client { * Create a new Access policy for an application. */ public async access$policies$create$an$access$policy(params: Params$access$policies$create$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59155,7 +59152,7 @@ export class Client { * Fetches a single Access policy. */ public async access$policies$get$an$access$policy(params: Params$access$policies$get$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59170,7 +59167,7 @@ export class Client { * Update a configured Access policy. */ public async access$policies$update$an$access$policy(params: Params$access$policies$update$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59187,7 +59184,7 @@ export class Client { * Delete an Access policy. */ public async access$policies$delete$an$access$policy(params: Params$access$policies$delete$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59202,7 +59199,7 @@ export class Client { * Lists short-lived certificate CAs and their public keys. */ public async access$short$lived$certificate$c$as$list$short$lived$certificate$c$as(params: Params$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/ca\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/ca`; const headers = { Accept: "application/json" }; @@ -59218,7 +59215,7 @@ export class Client { * Lists Bookmark applications. */ public async access$bookmark$applications$$$deprecated$$list$bookmark$applications(params: Params$access$bookmark$applications$$$deprecated$$list$bookmark$applications, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks`; const headers = { Accept: "application/json" }; @@ -59234,7 +59231,7 @@ export class Client { * Fetches a single Bookmark application. */ public async access$bookmark$applications$$$deprecated$$get$a$bookmark$application(params: Params$access$bookmark$applications$$$deprecated$$get$a$bookmark$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59250,7 +59247,7 @@ export class Client { * Updates a configured Bookmark application. */ public async access$bookmark$applications$$$deprecated$$update$a$bookmark$application(params: Params$access$bookmark$applications$$$deprecated$$update$a$bookmark$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59266,7 +59263,7 @@ export class Client { * Create a new Bookmark application. */ public async access$bookmark$applications$$$deprecated$$create$a$bookmark$application(params: Params$access$bookmark$applications$$$deprecated$$create$a$bookmark$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59282,7 +59279,7 @@ export class Client { * Deletes a Bookmark application. */ public async access$bookmark$applications$$$deprecated$$delete$a$bookmark$application(params: Params$access$bookmark$applications$$$deprecated$$delete$a$bookmark$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59297,7 +59294,7 @@ export class Client { * Lists all mTLS root certificates. */ public async access$mtls$authentication$list$mtls$certificates(params: Params$access$mtls$authentication$list$mtls$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { Accept: "application/json" }; @@ -59312,7 +59309,7 @@ export class Client { * Adds a new mTLS root certificate to Access. */ public async access$mtls$authentication$add$an$mtls$certificate(params: Params$access$mtls$authentication$add$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59329,7 +59326,7 @@ export class Client { * Fetches a single mTLS certificate. */ public async access$mtls$authentication$get$an$mtls$certificate(params: Params$access$mtls$authentication$get$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59344,7 +59341,7 @@ export class Client { * Updates a configured mTLS certificate. */ public async access$mtls$authentication$update$an$mtls$certificate(params: Params$access$mtls$authentication$update$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59361,7 +59358,7 @@ export class Client { * Deletes an mTLS certificate. */ public async access$mtls$authentication$delete$an$mtls$certificate(params: Params$access$mtls$authentication$delete$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59376,7 +59373,7 @@ export class Client { * List all mTLS hostname settings for this account. */ public async access$mtls$authentication$list$mtls$certificates$hostname$settings(params: Params$access$mtls$authentication$list$mtls$certificates$hostname$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { Accept: "application/json" }; @@ -59391,7 +59388,7 @@ export class Client { * Updates an mTLS certificate's hostname settings. */ public async access$mtls$authentication$update$an$mtls$certificate$settings(params: Params$access$mtls$authentication$update$an$mtls$certificate$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59408,7 +59405,7 @@ export class Client { * List custom pages */ public async access$custom$pages$list$custom$pages(params: Params$access$custom$pages$list$custom$pages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages`; const headers = { Accept: "application/json" }; @@ -59423,7 +59420,7 @@ export class Client { * Create a custom page */ public async access$custom$pages$create$a$custom$page(params: Params$access$custom$pages$create$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59440,7 +59437,7 @@ export class Client { * Fetches a custom page and also returns its HTML. */ public async access$custom$pages$get$a$custom$page(params: Params$access$custom$pages$get$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59455,7 +59452,7 @@ export class Client { * Update a custom page */ public async access$custom$pages$update$a$custom$page(params: Params$access$custom$pages$update$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59472,7 +59469,7 @@ export class Client { * Delete a custom page */ public async access$custom$pages$delete$a$custom$page(params: Params$access$custom$pages$delete$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59487,7 +59484,7 @@ export class Client { * Lists all Access groups. */ public async access$groups$list$access$groups(params: Params$access$groups$list$access$groups, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { Accept: "application/json" }; @@ -59502,7 +59499,7 @@ export class Client { * Creates a new Access group. */ public async access$groups$create$an$access$group(params: Params$access$groups$create$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59519,7 +59516,7 @@ export class Client { * Fetches a single Access group. */ public async access$groups$get$an$access$group(params: Params$access$groups$get$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59534,7 +59531,7 @@ export class Client { * Updates a configured Access group. */ public async access$groups$update$an$access$group(params: Params$access$groups$update$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59551,7 +59548,7 @@ export class Client { * Deletes an Access group. */ public async access$groups$delete$an$access$group(params: Params$access$groups$delete$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59566,7 +59563,7 @@ export class Client { * Lists all configured identity providers. */ public async access$identity$providers$list$access$identity$providers(params: Params$access$identity$providers$list$access$identity$providers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { Accept: "application/json" }; @@ -59581,7 +59578,7 @@ export class Client { * Adds a new identity provider to Access. */ public async access$identity$providers$add$an$access$identity$provider(params: Params$access$identity$providers$add$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59598,7 +59595,7 @@ export class Client { * Fetches a configured identity provider. */ public async access$identity$providers$get$an$access$identity$provider(params: Params$access$identity$providers$get$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59613,7 +59610,7 @@ export class Client { * Updates a configured identity provider. */ public async access$identity$providers$update$an$access$identity$provider(params: Params$access$identity$providers$update$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59630,7 +59627,7 @@ export class Client { * Deletes an identity provider from Access. */ public async access$identity$providers$delete$an$access$identity$provider(params: Params$access$identity$providers$delete$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59645,7 +59642,7 @@ export class Client { * Gets the Access key rotation settings for an account. */ public async access$key$configuration$get$the$access$key$configuration(params: Params$access$key$configuration$get$the$access$key$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys`; const headers = { Accept: "application/json" }; @@ -59660,7 +59657,7 @@ export class Client { * Updates the Access key rotation settings for an account. */ public async access$key$configuration$update$the$access$key$configuration(params: Params$access$key$configuration$update$the$access$key$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59677,7 +59674,7 @@ export class Client { * Perfoms a key rotation for an account. */ public async access$key$configuration$rotate$access$keys(params: Params$access$key$configuration$rotate$access$keys, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys/rotate\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys/rotate`; const headers = { Accept: "application/json" }; @@ -59692,7 +59689,7 @@ export class Client { * Gets a list of Access authentication audit logs for an account. */ public async access$authentication$logs$get$access$authentication$logs(params: Params$access$authentication$logs$get$access$authentication$logs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/logs/access_requests\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/logs/access_requests`; const headers = { Accept: "application/json" }; @@ -59707,7 +59704,7 @@ export class Client { * Returns the configuration for your Zero Trust organization. */ public async zero$trust$organization$get$your$zero$trust$organization(params: Params$zero$trust$organization$get$your$zero$trust$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { Accept: "application/json" }; @@ -59722,7 +59719,7 @@ export class Client { * Updates the configuration for your Zero Trust organization. */ public async zero$trust$organization$update$your$zero$trust$organization(params: Params$zero$trust$organization$update$your$zero$trust$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59739,7 +59736,7 @@ export class Client { * Sets up a Zero Trust organization for your account. */ public async zero$trust$organization$create$your$zero$trust$organization(params: Params$zero$trust$organization$create$your$zero$trust$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59756,7 +59753,7 @@ export class Client { * Revokes a user's access across all applications. */ public async zero$trust$organization$revoke$all$access$tokens$for$a$user(params: Params$zero$trust$organization$revoke$all$access$tokens$for$a$user, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59770,10 +59767,10 @@ export class Client { } /** * Update a user seat - * Removes a user from a Zero Trust seat when both \`access_seat\` and \`gateway_seat\` are set to false. + * Removes a user from a Zero Trust seat when both `access_seat` and `gateway_seat` are set to false. */ public async zero$trust$seats$update$a$user$seat(params: Params$zero$trust$seats$update$a$user$seat, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/seats\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/seats`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59790,7 +59787,7 @@ export class Client { * Lists all service tokens. */ public async access$service$tokens$list$service$tokens(params: Params$access$service$tokens$list$service$tokens, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { Accept: "application/json" }; @@ -59805,7 +59802,7 @@ export class Client { * Generates a new service token. **Note:** This is the only time you can get the Client Secret. If you lose the Client Secret, you will have to rotate the Client Secret or create a new service token. */ public async access$service$tokens$create$a$service$token(params: Params$access$service$tokens$create$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59822,7 +59819,7 @@ export class Client { * Updates a configured service token. */ public async access$service$tokens$update$a$service$token(params: Params$access$service$tokens$update$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59839,7 +59836,7 @@ export class Client { * Deletes a service token. */ public async access$service$tokens$delete$a$service$token(params: Params$access$service$tokens$delete$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59854,7 +59851,7 @@ export class Client { * Refreshes the expiration of a service token. */ public async access$service$tokens$refresh$a$service$token(params: Params$access$service$tokens$refresh$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}/refresh\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}/refresh`; const headers = { Accept: "application/json" }; @@ -59869,7 +59866,7 @@ export class Client { * Generates a new Client Secret for a service token and revokes the old one. */ public async access$service$tokens$rotate$a$service$token(params: Params$access$service$tokens$rotate$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}/rotate\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}/rotate`; const headers = { Accept: "application/json" }; @@ -59884,7 +59881,7 @@ export class Client { * List tags */ public async access$tags$list$tags(params: Params$access$tags$list$tags, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags`; const headers = { Accept: "application/json" }; @@ -59899,7 +59896,7 @@ export class Client { * Create a tag */ public async access$tags$create$tag(params: Params$access$tags$create$tag, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59916,7 +59913,7 @@ export class Client { * Get a tag */ public async access$tags$get$a$tag(params: Params$access$tags$get$a$tag, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -59931,7 +59928,7 @@ export class Client { * Update a tag */ public async access$tags$update$a$tag(params: Params$access$tags$update$a$tag, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59948,7 +59945,7 @@ export class Client { * Delete a tag */ public async access$tags$delete$a$tag(params: Params$access$tags$delete$a$tag, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -59963,7 +59960,7 @@ export class Client { * Gets a list of users for an account. */ public async zero$trust$users$get$users(params: Params$zero$trust$users$get$users, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users`; const headers = { Accept: "application/json" }; @@ -59978,7 +59975,7 @@ export class Client { * Get active sessions for a single user. */ public async zero$trust$users$get$active$sessions(params: Params$zero$trust$users$get$active$sessions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/active_sessions\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/active_sessions`; const headers = { Accept: "application/json" }; @@ -59993,7 +59990,7 @@ export class Client { * Get an active session for a single user. */ public async zero$trust$users$get$active$session(params: Params$zero$trust$users$get$active$session, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/active_sessions/\${encodeURIComponent(params.parameter.nonce)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/active_sessions/${encodeURIComponent(params.parameter.nonce)}`; const headers = { Accept: "application/json" }; @@ -60008,7 +60005,7 @@ export class Client { * Get all failed login attempts for a single user. */ public async zero$trust$users$get$failed$logins(params: Params$zero$trust$users$get$failed$logins, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/failed_logins\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/failed_logins`; const headers = { Accept: "application/json" }; @@ -60023,7 +60020,7 @@ export class Client { * Get last seen identity for a single user. */ public async zero$trust$users$get$last$seen$identity(params: Params$zero$trust$users$get$last$seen$identity, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/last_seen_identity\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/last_seen_identity`; const headers = { Accept: "application/json" }; @@ -60038,7 +60035,7 @@ export class Client { * Fetches a list of enrolled devices. */ public async devices$list$devices(params: Params$devices$list$devices, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices`; const headers = { Accept: "application/json" }; @@ -60053,7 +60050,7 @@ export class Client { * Fetches details for a single device. */ public async devices$device$details(params: Params$devices$device$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60068,7 +60065,7 @@ export class Client { * Fetches a one-time use admin override code for a device. This relies on the **Admin Override** setting being enabled in your device configuration. */ public async devices$list$admin$override$code$for$device(params: Params$devices$list$admin$override$code$for$device, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/\${encodeURIComponent(params.parameter.uuid)}/override_codes\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/${encodeURIComponent(params.parameter.uuid)}/override_codes`; const headers = { Accept: "application/json" }; @@ -60083,7 +60080,7 @@ export class Client { * Fetch all DEX tests. */ public async device$dex$test$details(params: Params$device$dex$test$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests`; const headers = { Accept: "application/json" }; @@ -60098,7 +60095,7 @@ export class Client { * Create a DEX test. */ public async device$dex$test$create$device$dex$test(params: Params$device$dex$test$create$device$dex$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60115,7 +60112,7 @@ export class Client { * Fetch a single DEX test. */ public async device$dex$test$get$device$dex$test(params: Params$device$dex$test$get$device$dex$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60130,7 +60127,7 @@ export class Client { * Update a DEX test. */ public async device$dex$test$update$device$dex$test(params: Params$device$dex$test$update$device$dex$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60147,7 +60144,7 @@ export class Client { * Delete a Device DEX test. Returns the remaining device dex tests for the account. */ public async device$dex$test$delete$device$dex$test(params: Params$device$dex$test$delete$device$dex$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60162,7 +60159,7 @@ export class Client { * Fetches a list of managed networks for an account. */ public async device$managed$networks$list$device$managed$networks(params: Params$device$managed$networks$list$device$managed$networks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks`; const headers = { Accept: "application/json" }; @@ -60177,7 +60174,7 @@ export class Client { * Creates a new device managed network. */ public async device$managed$networks$create$device$managed$network(params: Params$device$managed$networks$create$device$managed$network, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60194,7 +60191,7 @@ export class Client { * Fetches details for a single managed network. */ public async device$managed$networks$device$managed$network$details(params: Params$device$managed$networks$device$managed$network$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60209,7 +60206,7 @@ export class Client { * Updates a configured device managed network. */ public async device$managed$networks$update$device$managed$network(params: Params$device$managed$networks$update$device$managed$network, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60226,7 +60223,7 @@ export class Client { * Deletes a device managed network and fetches a list of the remaining device managed networks for an account. */ public async device$managed$networks$delete$device$managed$network(params: Params$device$managed$networks$delete$device$managed$network, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60241,7 +60238,7 @@ export class Client { * Fetches a list of the device settings profiles for an account. */ public async devices$list$device$settings$policies(params: Params$devices$list$device$settings$policies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policies\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policies`; const headers = { Accept: "application/json" }; @@ -60256,7 +60253,7 @@ export class Client { * Fetches the default device settings profile for an account. */ public async devices$get$default$device$settings$policy(params: Params$devices$get$default$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { Accept: "application/json" }; @@ -60271,7 +60268,7 @@ export class Client { * Creates a device settings profile to be applied to certain devices matching the criteria. */ public async devices$create$device$settings$policy(params: Params$devices$create$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60288,7 +60285,7 @@ export class Client { * Updates the default device settings profile for an account. */ public async devices$update$default$device$settings$policy(params: Params$devices$update$default$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60305,7 +60302,7 @@ export class Client { * Fetches a device settings profile by ID. */ public async devices$get$device$settings$policy$by$id(params: Params$devices$get$device$settings$policy$by$id, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60320,7 +60317,7 @@ export class Client { * Deletes a device settings profile and fetches a list of the remaining profiles for an account. */ public async devices$delete$device$settings$policy(params: Params$devices$delete$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60335,7 +60332,7 @@ export class Client { * Updates a configured device settings profile. */ public async devices$update$device$settings$policy(params: Params$devices$update$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60352,7 +60349,7 @@ export class Client { * Fetches the list of routes excluded from the WARP client's tunnel for a specific device settings profile. */ public async devices$get$split$tunnel$exclude$list$for$a$device$settings$policy(params: Params$devices$get$split$tunnel$exclude$list$for$a$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/exclude\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/exclude`; const headers = { Accept: "application/json" }; @@ -60367,7 +60364,7 @@ export class Client { * Sets the list of routes excluded from the WARP client's tunnel for a specific device settings profile. */ public async devices$set$split$tunnel$exclude$list$for$a$device$settings$policy(params: Params$devices$set$split$tunnel$exclude$list$for$a$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/exclude\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60384,7 +60381,7 @@ export class Client { * Fetches the list of domains to bypass Gateway DNS resolution from a specified device settings profile. These domains will use the specified local DNS resolver instead. */ public async devices$get$local$domain$fallback$list$for$a$device$settings$policy(params: Params$devices$get$local$domain$fallback$list$for$a$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/fallback_domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/fallback_domains`; const headers = { Accept: "application/json" }; @@ -60399,7 +60396,7 @@ export class Client { * Sets the list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. This will only apply to the specified device settings profile. */ public async devices$set$local$domain$fallback$list$for$a$device$settings$policy(params: Params$devices$set$local$domain$fallback$list$for$a$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/fallback_domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/fallback_domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60416,7 +60413,7 @@ export class Client { * Fetches the list of routes included in the WARP client's tunnel for a specific device settings profile. */ public async devices$get$split$tunnel$include$list$for$a$device$settings$policy(params: Params$devices$get$split$tunnel$include$list$for$a$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/include\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/include`; const headers = { Accept: "application/json" }; @@ -60431,7 +60428,7 @@ export class Client { * Sets the list of routes included in the WARP client's tunnel for a specific device settings profile. */ public async devices$set$split$tunnel$include$list$for$a$device$settings$policy(params: Params$devices$set$split$tunnel$include$list$for$a$device$settings$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/include\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/include`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60448,7 +60445,7 @@ export class Client { * Fetches the list of routes excluded from the WARP client's tunnel. */ public async devices$get$split$tunnel$exclude$list(params: Params$devices$get$split$tunnel$exclude$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude`; const headers = { Accept: "application/json" }; @@ -60463,7 +60460,7 @@ export class Client { * Sets the list of routes excluded from the WARP client's tunnel. */ public async devices$set$split$tunnel$exclude$list(params: Params$devices$set$split$tunnel$exclude$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60480,7 +60477,7 @@ export class Client { * Fetches a list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. */ public async devices$get$local$domain$fallback$list(params: Params$devices$get$local$domain$fallback$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains`; const headers = { Accept: "application/json" }; @@ -60495,7 +60492,7 @@ export class Client { * Sets the list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. */ public async devices$set$local$domain$fallback$list(params: Params$devices$set$local$domain$fallback$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60512,7 +60509,7 @@ export class Client { * Fetches the list of routes included in the WARP client's tunnel. */ public async devices$get$split$tunnel$include$list(params: Params$devices$get$split$tunnel$include$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/include\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/include`; const headers = { Accept: "application/json" }; @@ -60527,7 +60524,7 @@ export class Client { * Sets the list of routes included in the WARP client's tunnel. */ public async devices$set$split$tunnel$include$list(params: Params$devices$set$split$tunnel$include$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/include\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/include`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60544,7 +60541,7 @@ export class Client { * Fetches device posture rules for a Zero Trust account. */ public async device$posture$rules$list$device$posture$rules(params: Params$device$posture$rules$list$device$posture$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture`; const headers = { Accept: "application/json" }; @@ -60559,7 +60556,7 @@ export class Client { * Creates a new device posture rule. */ public async device$posture$rules$create$device$posture$rule(params: Params$device$posture$rules$create$device$posture$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60576,7 +60573,7 @@ export class Client { * Fetches a single device posture rule. */ public async device$posture$rules$device$posture$rules$details(params: Params$device$posture$rules$device$posture$rules$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60591,7 +60588,7 @@ export class Client { * Updates a device posture rule. */ public async device$posture$rules$update$device$posture$rule(params: Params$device$posture$rules$update$device$posture$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60608,7 +60605,7 @@ export class Client { * Deletes a device posture rule. */ public async device$posture$rules$delete$device$posture$rule(params: Params$device$posture$rules$delete$device$posture$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60623,7 +60620,7 @@ export class Client { * Fetches the list of device posture integrations for an account. */ public async device$posture$integrations$list$device$posture$integrations(params: Params$device$posture$integrations$list$device$posture$integrations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration`; const headers = { Accept: "application/json" }; @@ -60638,7 +60635,7 @@ export class Client { * Create a new device posture integration. */ public async device$posture$integrations$create$device$posture$integration(params: Params$device$posture$integrations$create$device$posture$integration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60655,7 +60652,7 @@ export class Client { * Fetches details for a single device posture integration. */ public async device$posture$integrations$device$posture$integration$details(params: Params$device$posture$integrations$device$posture$integration$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60670,7 +60667,7 @@ export class Client { * Delete a configured device posture integration. */ public async device$posture$integrations$delete$device$posture$integration(params: Params$device$posture$integrations$delete$device$posture$integration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60685,7 +60682,7 @@ export class Client { * Updates a configured device posture integration. */ public async device$posture$integrations$update$device$posture$integration(params: Params$device$posture$integrations$update$device$posture$integration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60702,7 +60699,7 @@ export class Client { * Revokes a list of devices. */ public async devices$revoke$devices(params: Params$devices$revoke$devices, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/revoke\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/revoke`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60719,7 +60716,7 @@ export class Client { * Describes the current device settings for a Zero Trust account. */ public async zero$trust$accounts$get$device$settings$for$zero$trust$account(params: Params$zero$trust$accounts$get$device$settings$for$zero$trust$account, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/settings`; const headers = { Accept: "application/json" }; @@ -60734,7 +60731,7 @@ export class Client { * Updates the current device settings for a Zero Trust account. */ public async zero$trust$accounts$update$device$settings$for$the$zero$trust$account(params: Params$zero$trust$accounts$update$device$settings$for$the$zero$trust$account, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/settings\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60751,7 +60748,7 @@ export class Client { * Unrevokes a list of devices. */ public async devices$unrevoke$devices(params: Params$devices$unrevoke$devices, option?: RequestOption): Promise { - const url = this.baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/unrevoke\`; + const url = this.baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/unrevoke`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60768,7 +60765,7 @@ export class Client { * List all existing Origin CA certificates for a given zone. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ public async origin$ca$list$certificates(params: Params$origin$ca$list$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/certificates\`; + const url = this.baseUrl + `/certificates`; const headers = { Accept: "application/json" }; @@ -60787,7 +60784,7 @@ export class Client { * Create an Origin CA certificate. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ public async origin$ca$create$certificate(params: Params$origin$ca$create$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/certificates\`; + const url = this.baseUrl + `/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60804,7 +60801,7 @@ export class Client { * Get an existing Origin CA certificate by its serial number. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ public async origin$ca$get$certificate(params: Params$origin$ca$get$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60819,7 +60816,7 @@ export class Client { * Revoke an existing Origin CA certificate by its serial number. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ public async origin$ca$revoke$certificate(params: Params$origin$ca$revoke$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60834,7 +60831,7 @@ export class Client { * Get IPs used on the Cloudflare/JD Cloud network, see https://www.cloudflare.com/ips for Cloudflare IPs or https://developers.cloudflare.com/china-network/reference/infrastructure/ for JD Cloud IPs. */ public async cloudflare$i$ps$cloudflare$ip$details(params: Params$cloudflare$i$ps$cloudflare$ip$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/ips\`; + const url = this.baseUrl + `/ips`; const headers = { Accept: "application/json" }; @@ -60853,7 +60850,7 @@ export class Client { * List memberships of accounts the user can access. */ public async user$$s$account$memberships$list$memberships(params: Params$user$$s$account$memberships$list$memberships, option?: RequestOption): Promise { - const url = this.baseUrl + \`/memberships\`; + const url = this.baseUrl + `/memberships`; const headers = { Accept: "application/json" }; @@ -60878,7 +60875,7 @@ export class Client { * Get a specific membership. */ public async user$$s$account$memberships$membership$details(params: Params$user$$s$account$memberships$membership$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60893,7 +60890,7 @@ export class Client { * Accept or reject this account invitation. */ public async user$$s$account$memberships$update$membership(params: Params$user$$s$account$memberships$update$membership, option?: RequestOption): Promise { - const url = this.baseUrl + \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60910,7 +60907,7 @@ export class Client { * Remove the associated member from an account. */ public async user$$s$account$memberships$delete$membership(params: Params$user$$s$account$memberships$delete$membership, option?: RequestOption): Promise { - const url = this.baseUrl + \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60926,7 +60923,7 @@ export class Client { * Get information about a specific organization that you are a member of. */ public async organizations$$$deprecated$$organization$details(params: Params$organizations$$$deprecated$$organization$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60942,7 +60939,7 @@ export class Client { * Update an existing Organization. */ public async organizations$$$deprecated$$edit$organization(params: Params$organizations$$$deprecated$$edit$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60960,7 +60957,7 @@ export class Client { * Gets a list of audit logs for an organization. Can be filtered by who made the change, on which zone, and the timeframe of the change. */ public async audit$logs$get$organization$audit$logs(params: Params$audit$logs$get$organization$audit$logs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/audit_logs\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/audit_logs`; const headers = { Accept: "application/json" }; @@ -60991,7 +60988,7 @@ export class Client { * List all invitations associated with an organization. */ public async organization$invites$list$invitations(params: Params$organization$invites$list$invitations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites`; const headers = { Accept: "application/json" }; @@ -61007,7 +61004,7 @@ export class Client { * Invite a User to become a Member of an Organization. */ public async organization$invites$create$invitation(params: Params$organization$invites$create$invitation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61025,7 +61022,7 @@ export class Client { * Get the details of an invitation. */ public async organization$invites$invitation$details(params: Params$organization$invites$invitation$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61041,7 +61038,7 @@ export class Client { * Cancel an existing invitation. */ public async organization$invites$cancel$invitation(params: Params$organization$invites$cancel$invitation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61057,7 +61054,7 @@ export class Client { * Change the Roles of a Pending Invite. */ public async organization$invites$edit$invitation$roles(params: Params$organization$invites$edit$invitation$roles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61075,7 +61072,7 @@ export class Client { * List all members of a organization. */ public async organization$members$list$members(params: Params$organization$members$list$members, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members`; const headers = { Accept: "application/json" }; @@ -61091,7 +61088,7 @@ export class Client { * Get information about a specific member of an organization. */ public async organization$members$member$details(params: Params$organization$members$member$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61107,7 +61104,7 @@ export class Client { * Remove a member from an organization. */ public async organization$members$remove$member(params: Params$organization$members$remove$member, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61123,7 +61120,7 @@ export class Client { * Change the Roles of an Organization's Member. */ public async organization$members$edit$member$roles(params: Params$organization$members$edit$member$roles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61141,7 +61138,7 @@ export class Client { * Get all available roles for an organization. */ public async organization$roles$list$roles(params: Params$organization$roles$list$roles, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/roles\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/roles`; const headers = { Accept: "application/json" }; @@ -61157,7 +61154,7 @@ export class Client { * Get information about a specific role for an organization. */ public async organization$roles$role$details(params: Params$organization$roles$role$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/roles/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/roles/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61169,7 +61166,7 @@ export class Client { } /** Get latest Internet outages and anomalies. */ public async radar$get$annotations$outages(params: Params$radar$get$annotations$outages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/annotations/outages\`; + const url = this.baseUrl + `/radar/annotations/outages`; const headers = { Accept: "application/json" }; @@ -61192,7 +61189,7 @@ export class Client { } /** Get the number of outages for locations. */ public async radar$get$annotations$outages$top(params: Params$radar$get$annotations$outages$top, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/annotations/outages/locations\`; + const url = this.baseUrl + `/radar/annotations/outages/locations`; const headers = { Accept: "application/json" }; @@ -61215,7 +61212,7 @@ export class Client { * Percentage distribution of DNS queries to AS112 by DNSSEC support. */ public async radar$get$dns$as112$timeseries$by$dnssec(params: Params$radar$get$dns$as112$timeseries$by$dnssec, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/summary/dnssec\`; + const url = this.baseUrl + `/radar/as112/summary/dnssec`; const headers = { Accept: "application/json" }; @@ -61240,7 +61237,7 @@ export class Client { * Percentage distribution of DNS queries, to AS112, by EDNS support. */ public async radar$get$dns$as112$timeseries$by$edns(params: Params$radar$get$dns$as112$timeseries$by$edns, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/summary/edns\`; + const url = this.baseUrl + `/radar/as112/summary/edns`; const headers = { Accept: "application/json" }; @@ -61265,7 +61262,7 @@ export class Client { * Percentage distribution of DNS queries to AS112 per IP Version. */ public async radar$get$dns$as112$timeseries$by$ip$version(params: Params$radar$get$dns$as112$timeseries$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/summary/ip_version\`; + const url = this.baseUrl + `/radar/as112/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -61290,7 +61287,7 @@ export class Client { * Percentage distribution of DNS queries to AS112 per protocol. */ public async radar$get$dns$as112$timeseries$by$protocol(params: Params$radar$get$dns$as112$timeseries$by$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/summary/protocol\`; + const url = this.baseUrl + `/radar/as112/summary/protocol`; const headers = { Accept: "application/json" }; @@ -61315,7 +61312,7 @@ export class Client { * Percentage distribution of DNS queries to AS112 by Query Type. */ public async radar$get$dns$as112$timeseries$by$query$type(params: Params$radar$get$dns$as112$timeseries$by$query$type, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/summary/query_type\`; + const url = this.baseUrl + `/radar/as112/summary/query_type`; const headers = { Accept: "application/json" }; @@ -61340,7 +61337,7 @@ export class Client { * Percentage distribution of AS112 dns requests classified per Response Codes. */ public async radar$get$dns$as112$timeseries$by$response$codes(params: Params$radar$get$dns$as112$timeseries$by$response$codes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/summary/response_codes\`; + const url = this.baseUrl + `/radar/as112/summary/response_codes`; const headers = { Accept: "application/json" }; @@ -61365,7 +61362,7 @@ export class Client { * Get AS112 queries change over time. */ public async radar$get$dns$as112$timeseries(params: Params$radar$get$dns$as112$timeseries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/timeseries\`; + const url = this.baseUrl + `/radar/as112/timeseries`; const headers = { Accept: "application/json" }; @@ -61391,7 +61388,7 @@ export class Client { * Percentage distribution of DNS AS112 queries by DNSSEC support over time. */ public async radar$get$dns$as112$timeseries$group$by$dnssec(params: Params$radar$get$dns$as112$timeseries$group$by$dnssec, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/timeseries_groups/dnssec\`; + const url = this.baseUrl + `/radar/as112/timeseries_groups/dnssec`; const headers = { Accept: "application/json" }; @@ -61417,7 +61414,7 @@ export class Client { * Percentage distribution of AS112 DNS queries by EDNS support over time. */ public async radar$get$dns$as112$timeseries$group$by$edns(params: Params$radar$get$dns$as112$timeseries$group$by$edns, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/timeseries_groups/edns\`; + const url = this.baseUrl + `/radar/as112/timeseries_groups/edns`; const headers = { Accept: "application/json" }; @@ -61443,7 +61440,7 @@ export class Client { * Percentage distribution of AS112 DNS queries by IP Version over time. */ public async radar$get$dns$as112$timeseries$group$by$ip$version(params: Params$radar$get$dns$as112$timeseries$group$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/timeseries_groups/ip_version\`; + const url = this.baseUrl + `/radar/as112/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -61469,7 +61466,7 @@ export class Client { * Percentage distribution of AS112 dns requests classified per Protocol over time. */ public async radar$get$dns$as112$timeseries$group$by$protocol(params: Params$radar$get$dns$as112$timeseries$group$by$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/timeseries_groups/protocol\`; + const url = this.baseUrl + `/radar/as112/timeseries_groups/protocol`; const headers = { Accept: "application/json" }; @@ -61495,7 +61492,7 @@ export class Client { * Percentage distribution of AS112 DNS queries by Query Type over time. */ public async radar$get$dns$as112$timeseries$group$by$query$type(params: Params$radar$get$dns$as112$timeseries$group$by$query$type, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/timeseries_groups/query_type\`; + const url = this.baseUrl + `/radar/as112/timeseries_groups/query_type`; const headers = { Accept: "application/json" }; @@ -61521,7 +61518,7 @@ export class Client { * Percentage distribution of AS112 dns requests classified per Response Codes over time. */ public async radar$get$dns$as112$timeseries$group$by$response$codes(params: Params$radar$get$dns$as112$timeseries$group$by$response$codes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/timeseries_groups/response_codes\`; + const url = this.baseUrl + `/radar/as112/timeseries_groups/response_codes`; const headers = { Accept: "application/json" }; @@ -61547,7 +61544,7 @@ export class Client { * Get the top locations by AS112 DNS queries. Values are a percentage out of the total queries. */ public async radar$get$dns$as112$top$locations(params: Params$radar$get$dns$as112$top$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/top/locations\`; + const url = this.baseUrl + `/radar/as112/top/locations`; const headers = { Accept: "application/json" }; @@ -61573,7 +61570,7 @@ export class Client { * Get the top locations by DNS queries DNSSEC support to AS112. */ public async radar$get$dns$as112$top$locations$by$dnssec(params: Params$radar$get$dns$as112$top$locations$by$dnssec, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/top/locations/dnssec/\${encodeURIComponent(params.parameter.dnssec)}\`; + const url = this.baseUrl + `/radar/as112/top/locations/dnssec/${encodeURIComponent(params.parameter.dnssec)}`; const headers = { Accept: "application/json" }; @@ -61599,7 +61596,7 @@ export class Client { * Get the top locations, by DNS queries EDNS support to AS112. */ public async radar$get$dns$as112$top$locations$by$edns(params: Params$radar$get$dns$as112$top$locations$by$edns, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/top/locations/edns/\${encodeURIComponent(params.parameter.edns)}\`; + const url = this.baseUrl + `/radar/as112/top/locations/edns/${encodeURIComponent(params.parameter.edns)}`; const headers = { Accept: "application/json" }; @@ -61625,7 +61622,7 @@ export class Client { * Get the top locations by DNS queries IP version to AS112. */ public async radar$get$dns$as112$top$locations$by$ip$version(params: Params$radar$get$dns$as112$top$locations$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/as112/top/locations/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const url = this.baseUrl + `/radar/as112/top/locations/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -61652,7 +61649,7 @@ export class Client { * Percentage distribution of network protocols in layer 3/4 attacks over a given time period. */ public async radar$get$attacks$layer3$summary(params: Params$radar$get$attacks$layer3$summary, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/summary\`; + const url = this.baseUrl + `/radar/attacks/layer3/summary`; const headers = { Accept: "application/json" }; @@ -61677,7 +61674,7 @@ export class Client { * Percentage distribution of attacks by bitrate. */ public async radar$get$attacks$layer3$summary$by$bitrate(params: Params$radar$get$attacks$layer3$summary$by$bitrate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/summary/bitrate\`; + const url = this.baseUrl + `/radar/attacks/layer3/summary/bitrate`; const headers = { Accept: "application/json" }; @@ -61704,7 +61701,7 @@ export class Client { * Percentage distribution of attacks by duration. */ public async radar$get$attacks$layer3$summary$by$duration(params: Params$radar$get$attacks$layer3$summary$by$duration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/summary/duration\`; + const url = this.baseUrl + `/radar/attacks/layer3/summary/duration`; const headers = { Accept: "application/json" }; @@ -61731,7 +61728,7 @@ export class Client { * Percentage distribution of attacks by ip version used. */ public async radar$get$attacks$layer3$summary$by$ip$version(params: Params$radar$get$attacks$layer3$summary$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/summary/ip_version\`; + const url = this.baseUrl + `/radar/attacks/layer3/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -61757,7 +61754,7 @@ export class Client { * Percentage distribution of attacks by protocol used. */ public async radar$get$attacks$layer3$summary$by$protocol(params: Params$radar$get$attacks$layer3$summary$by$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/summary/protocol\`; + const url = this.baseUrl + `/radar/attacks/layer3/summary/protocol`; const headers = { Accept: "application/json" }; @@ -61783,7 +61780,7 @@ export class Client { * Percentage distribution of attacks by vector. */ public async radar$get$attacks$layer3$summary$by$vector(params: Params$radar$get$attacks$layer3$summary$by$vector, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/summary/vector\`; + const url = this.baseUrl + `/radar/attacks/layer3/summary/vector`; const headers = { Accept: "application/json" }; @@ -61810,7 +61807,7 @@ export class Client { * Get attacks change over time by bytes. */ public async radar$get$attacks$layer3$timeseries$by$bytes(params: Params$radar$get$attacks$layer3$timeseries$by$bytes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries`; const headers = { Accept: "application/json" }; @@ -61842,7 +61839,7 @@ export class Client { * Get a timeseries of the percentage distribution of network protocols in Layer 3/4 attacks. */ public async radar$get$attacks$layer3$timeseries$groups(params: Params$radar$get$attacks$layer3$timeseries$groups, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -61868,7 +61865,7 @@ export class Client { * Percentage distribution of attacks by bitrate over time. */ public async radar$get$attacks$layer3$timeseries$group$by$bitrate(params: Params$radar$get$attacks$layer3$timeseries$group$by$bitrate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups/bitrate\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups/bitrate`; const headers = { Accept: "application/json" }; @@ -61897,7 +61894,7 @@ export class Client { * Percentage distribution of attacks by duration over time. */ public async radar$get$attacks$layer3$timeseries$group$by$duration(params: Params$radar$get$attacks$layer3$timeseries$group$by$duration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups/duration\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups/duration`; const headers = { Accept: "application/json" }; @@ -61926,7 +61923,7 @@ export class Client { * Percentage distribution of attacks by industry used over time. */ public async radar$get$attacks$layer3$timeseries$group$by$industry(params: Params$radar$get$attacks$layer3$timeseries$group$by$industry, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups/industry\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups/industry`; const headers = { Accept: "application/json" }; @@ -61955,7 +61952,7 @@ export class Client { * Percentage distribution of attacks by ip version used over time. */ public async radar$get$attacks$layer3$timeseries$group$by$ip$version(params: Params$radar$get$attacks$layer3$timeseries$group$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups/ip_version\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -61983,7 +61980,7 @@ export class Client { * Percentage distribution of attacks by protocol used over time. */ public async radar$get$attacks$layer3$timeseries$group$by$protocol(params: Params$radar$get$attacks$layer3$timeseries$group$by$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups/protocol\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups/protocol`; const headers = { Accept: "application/json" }; @@ -62011,7 +62008,7 @@ export class Client { * Percentage distribution of attacks by vector used over time. */ public async radar$get$attacks$layer3$timeseries$group$by$vector(params: Params$radar$get$attacks$layer3$timeseries$group$by$vector, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups/vector\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups/vector`; const headers = { Accept: "application/json" }; @@ -62041,7 +62038,7 @@ export class Client { * Percentage distribution of attacks by vertical used over time. */ public async radar$get$attacks$layer3$timeseries$group$by$vertical(params: Params$radar$get$attacks$layer3$timeseries$group$by$vertical, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/timeseries_groups/vertical\`; + const url = this.baseUrl + `/radar/attacks/layer3/timeseries_groups/vertical`; const headers = { Accept: "application/json" }; @@ -62070,7 +62067,7 @@ export class Client { * Get the top attacks from origin to target location. Values are a percentage out of the total layer 3 attacks (with billing country). You can optionally limit the number of attacks per origin/target location (useful if all the top attacks are from or to the same location). */ public async radar$get$attacks$layer3$top$attacks(params: Params$radar$get$attacks$layer3$top$attacks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/top/attacks\`; + const url = this.baseUrl + `/radar/attacks/layer3/top/attacks`; const headers = { Accept: "application/json" }; @@ -62099,7 +62096,7 @@ export class Client { * Get the Industry of attacks. */ public async radar$get$attacks$layer3$top$industries(params: Params$radar$get$attacks$layer3$top$industries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/top/industry\`; + const url = this.baseUrl + `/radar/attacks/layer3/top/industry`; const headers = { Accept: "application/json" }; @@ -62126,7 +62123,7 @@ export class Client { * Get the origin locations of attacks. */ public async radar$get$attacks$layer3$top$origin$locations(params: Params$radar$get$attacks$layer3$top$origin$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/top/locations/origin\`; + const url = this.baseUrl + `/radar/attacks/layer3/top/locations/origin`; const headers = { Accept: "application/json" }; @@ -62153,7 +62150,7 @@ export class Client { * Get the target locations of attacks. */ public async radar$get$attacks$layer3$top$target$locations(params: Params$radar$get$attacks$layer3$top$target$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/top/locations/target\`; + const url = this.baseUrl + `/radar/attacks/layer3/top/locations/target`; const headers = { Accept: "application/json" }; @@ -62180,7 +62177,7 @@ export class Client { * Get the Verticals of attacks. */ public async radar$get$attacks$layer3$top$verticals(params: Params$radar$get$attacks$layer3$top$verticals, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer3/top/vertical\`; + const url = this.baseUrl + `/radar/attacks/layer3/top/vertical`; const headers = { Accept: "application/json" }; @@ -62208,7 +62205,7 @@ export class Client { * Percentage distribution of mitigation techniques in Layer 7 attacks. */ public async radar$get$attacks$layer7$summary(params: Params$radar$get$attacks$layer7$summary, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/summary\`; + const url = this.baseUrl + `/radar/attacks/layer7/summary`; const headers = { Accept: "application/json" }; @@ -62233,7 +62230,7 @@ export class Client { * Percentage distribution of attacks by http method used. */ public async radar$get$attacks$layer7$summary$by$http$method(params: Params$radar$get$attacks$layer7$summary$by$http$method, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/summary/http_method\`; + const url = this.baseUrl + `/radar/attacks/layer7/summary/http_method`; const headers = { Accept: "application/json" }; @@ -62261,7 +62258,7 @@ export class Client { * Percentage distribution of attacks by http version used. */ public async radar$get$attacks$layer7$summary$by$http$version(params: Params$radar$get$attacks$layer7$summary$by$http$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/summary/http_version\`; + const url = this.baseUrl + `/radar/attacks/layer7/summary/http_version`; const headers = { Accept: "application/json" }; @@ -62289,7 +62286,7 @@ export class Client { * Percentage distribution of attacks by ip version used. */ public async radar$get$attacks$layer7$summary$by$ip$version(params: Params$radar$get$attacks$layer7$summary$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/summary/ip_version\`; + const url = this.baseUrl + `/radar/attacks/layer7/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -62317,7 +62314,7 @@ export class Client { * Percentage distribution of attacks by managed rules used. */ public async radar$get$attacks$layer7$summary$by$managed$rules(params: Params$radar$get$attacks$layer7$summary$by$managed$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/summary/managed_rules\`; + const url = this.baseUrl + `/radar/attacks/layer7/summary/managed_rules`; const headers = { Accept: "application/json" }; @@ -62346,7 +62343,7 @@ export class Client { * Percentage distribution of attacks by mitigation product used. */ public async radar$get$attacks$layer7$summary$by$mitigation$product(params: Params$radar$get$attacks$layer7$summary$by$mitigation$product, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/summary/mitigation_product\`; + const url = this.baseUrl + `/radar/attacks/layer7/summary/mitigation_product`; const headers = { Accept: "application/json" }; @@ -62374,7 +62371,7 @@ export class Client { * Get a timeseries of Layer 7 attacks. Values represent HTTP requests and are normalized using min-max by default. */ public async radar$get$attacks$layer7$timeseries(params: Params$radar$get$attacks$layer7$timeseries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries`; const headers = { Accept: "application/json" }; @@ -62403,7 +62400,7 @@ export class Client { * Get a time series of the percentual distribution of mitigation techniques, over time. */ public async radar$get$attacks$layer7$timeseries$group(params: Params$radar$get$attacks$layer7$timeseries$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -62429,7 +62426,7 @@ export class Client { * Percentage distribution of attacks by http method used over time. */ public async radar$get$attacks$layer7$timeseries$group$by$http$method(params: Params$radar$get$attacks$layer7$timeseries$group$by$http$method, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups/http_method\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups/http_method`; const headers = { Accept: "application/json" }; @@ -62459,7 +62456,7 @@ export class Client { * Percentage distribution of attacks by http version used over time. */ public async radar$get$attacks$layer7$timeseries$group$by$http$version(params: Params$radar$get$attacks$layer7$timeseries$group$by$http$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups/http_version\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups/http_version`; const headers = { Accept: "application/json" }; @@ -62489,7 +62486,7 @@ export class Client { * Percentage distribution of attacks by industry used over time. */ public async radar$get$attacks$layer7$timeseries$group$by$industry(params: Params$radar$get$attacks$layer7$timeseries$group$by$industry, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups/industry\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups/industry`; const headers = { Accept: "application/json" }; @@ -62521,7 +62518,7 @@ export class Client { * Percentage distribution of attacks by ip version used over time. */ public async radar$get$attacks$layer7$timeseries$group$by$ip$version(params: Params$radar$get$attacks$layer7$timeseries$group$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups/ip_version\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -62551,7 +62548,7 @@ export class Client { * Percentage distribution of attacks by managed rules used over time. */ public async radar$get$attacks$layer7$timeseries$group$by$managed$rules(params: Params$radar$get$attacks$layer7$timeseries$group$by$managed$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups/managed_rules\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups/managed_rules`; const headers = { Accept: "application/json" }; @@ -62582,7 +62579,7 @@ export class Client { * Percentage distribution of attacks by mitigation product used over time. */ public async radar$get$attacks$layer7$timeseries$group$by$mitigation$product(params: Params$radar$get$attacks$layer7$timeseries$group$by$mitigation$product, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups/mitigation_product\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups/mitigation_product`; const headers = { Accept: "application/json" }; @@ -62612,7 +62609,7 @@ export class Client { * Percentage distribution of attacks by vertical used over time. */ public async radar$get$attacks$layer7$timeseries$group$by$vertical(params: Params$radar$get$attacks$layer7$timeseries$group$by$vertical, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/timeseries_groups/vertical\`; + const url = this.baseUrl + `/radar/attacks/layer7/timeseries_groups/vertical`; const headers = { Accept: "application/json" }; @@ -62644,7 +62641,7 @@ export class Client { * Get the top origin Autonomous Systems of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The origin Autonomous Systems is determined by the client IP. */ public async radar$get$attacks$layer7$top$origin$as(params: Params$radar$get$attacks$layer7$top$origin$as, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/top/ases/origin\`; + const url = this.baseUrl + `/radar/attacks/layer7/top/ases/origin`; const headers = { Accept: "application/json" }; @@ -62669,7 +62666,7 @@ export class Client { * Get the top attacks from origin to target location. Values are a percentage out of the total layer 7 attacks (with billing country). The attack magnitude can be defined by the number of mitigated requests or by the number of zones affected. You can optionally limit the number of attacks per origin/target location (useful if all the top attacks are from or to the same location). */ public async radar$get$attacks$layer7$top$attacks(params: Params$radar$get$attacks$layer7$top$attacks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/top/attacks\`; + const url = this.baseUrl + `/radar/attacks/layer7/top/attacks`; const headers = { Accept: "application/json" }; @@ -62698,7 +62695,7 @@ export class Client { * Get the Industry of attacks. */ public async radar$get$attacks$layer7$top$industries(params: Params$radar$get$attacks$layer7$top$industries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/top/industry\`; + const url = this.baseUrl + `/radar/attacks/layer7/top/industry`; const headers = { Accept: "application/json" }; @@ -62724,7 +62721,7 @@ export class Client { * Get the top origin locations of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The origin location is determined by the client IP. */ public async radar$get$attacks$layer7$top$origin$location(params: Params$radar$get$attacks$layer7$top$origin$location, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/top/locations/origin\`; + const url = this.baseUrl + `/radar/attacks/layer7/top/locations/origin`; const headers = { Accept: "application/json" }; @@ -62749,7 +62746,7 @@ export class Client { * Get the top target locations of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The target location is determined by the attacked zone's billing country, when available. */ public async radar$get$attacks$layer7$top$target$location(params: Params$radar$get$attacks$layer7$top$target$location, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/top/locations/target\`; + const url = this.baseUrl + `/radar/attacks/layer7/top/locations/target`; const headers = { Accept: "application/json" }; @@ -62773,7 +62770,7 @@ export class Client { * Get the Verticals of attacks. */ public async radar$get$attacks$layer7$top$verticals(params: Params$radar$get$attacks$layer7$top$verticals, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/attacks/layer7/top/vertical\`; + const url = this.baseUrl + `/radar/attacks/layer7/top/vertical`; const headers = { Accept: "application/json" }; @@ -62799,7 +62796,7 @@ export class Client { * Get the BGP hijack events. (Beta) */ public async radar$get$bgp$hijacks$events(params: Params$radar$get$bgp$hijacks$events, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/hijacks/events\`; + const url = this.baseUrl + `/radar/bgp/hijacks/events`; const headers = { Accept: "application/json" }; @@ -62833,7 +62830,7 @@ export class Client { * Get the BGP route leak events (Beta). */ public async radar$get$bgp$route$leak$events(params: Params$radar$get$bgp$route$leak$events, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/leaks/events\`; + const url = this.baseUrl + `/radar/bgp/leaks/events`; const headers = { Accept: "application/json" }; @@ -62863,7 +62860,7 @@ export class Client { * List all Multi-origin AS (MOAS) prefixes on the global routing tables. */ public async radar$get$bgp$pfx2as$moas(params: Params$radar$get$bgp$pfx2as$moas, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/routes/moas\`; + const url = this.baseUrl + `/radar/bgp/routes/moas`; const headers = { Accept: "application/json" }; @@ -62885,7 +62882,7 @@ export class Client { * Lookup prefix-to-origin mapping on global routing tables. */ public async radar$get$bgp$pfx2as(params: Params$radar$get$bgp$pfx2as, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/routes/pfx2as\`; + const url = this.baseUrl + `/radar/bgp/routes/pfx2as`; const headers = { Accept: "application/json" }; @@ -62907,7 +62904,7 @@ export class Client { * Get the BGP routing table stats (Beta). */ public async radar$get$bgp$routes$stats(params: Params$radar$get$bgp$routes$stats, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/routes/stats\`; + const url = this.baseUrl + `/radar/bgp/routes/stats`; const headers = { Accept: "application/json" }; @@ -62928,7 +62925,7 @@ export class Client { * Gets BGP updates change over time. Raw values are returned. When requesting updates of an autonomous system (AS), only BGP updates of type announcement are returned. */ public async radar$get$bgp$timeseries(params: Params$radar$get$bgp$timeseries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/timeseries\`; + const url = this.baseUrl + `/radar/bgp/timeseries`; const headers = { Accept: "application/json" }; @@ -62955,7 +62952,7 @@ export class Client { * Get the top autonomous systems (AS) by BGP updates (announcements only). Values are a percentage out of the total updates. */ public async radar$get$bgp$top$ases(params: Params$radar$get$bgp$top$ases, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/top/ases\`; + const url = this.baseUrl + `/radar/bgp/top/ases`; const headers = { Accept: "application/json" }; @@ -62982,7 +62979,7 @@ export class Client { * Get the full list of autonomous systems on the global routing table ordered by announced prefixes count. The data comes from public BGP MRT data archives and updates every 2 hours. */ public async radar$get$bgp$top$asns$by$prefixes(params: Params$radar$get$bgp$top$asns$by$prefixes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/top/ases/prefixes\`; + const url = this.baseUrl + `/radar/bgp/top/ases/prefixes`; const headers = { Accept: "application/json" }; @@ -63003,7 +63000,7 @@ export class Client { * Get the top network prefixes by BGP updates. Values are a percentage out of the total BGP updates. */ public async radar$get$bgp$top$prefixes(params: Params$radar$get$bgp$top$prefixes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/bgp/top/prefixes\`; + const url = this.baseUrl + `/radar/bgp/top/prefixes`; const headers = { Accept: "application/json" }; @@ -63029,7 +63026,7 @@ export class Client { * Distribution of connection tampering types over a given time period. */ public async radar$get$connection$tampering$summary(params: Params$radar$get$connection$tampering$summary, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/connection_tampering/summary\`; + const url = this.baseUrl + `/radar/connection_tampering/summary`; const headers = { Accept: "application/json" }; @@ -63054,7 +63051,7 @@ export class Client { * Distribution of connection tampering types over time. */ public async radar$get$connection$tampering$timeseries$group(params: Params$radar$get$connection$tampering$timeseries$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/connection_tampering/timeseries_groups\`; + const url = this.baseUrl + `/radar/connection_tampering/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -63080,7 +63077,7 @@ export class Client { * Get a list of datasets. */ public async radar$get$reports$datasets(params: Params$radar$get$reports$datasets, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/datasets\`; + const url = this.baseUrl + `/radar/datasets`; const headers = { Accept: "application/json" }; @@ -63102,7 +63099,7 @@ export class Client { * Get the csv content of a given dataset by alias or id. When getting the content by alias the latest dataset is returned, optionally filtered by the latest available at a given date. */ public async radar$get$reports$dataset$download(params: Params$radar$get$reports$dataset$download, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/datasets/\${encodeURIComponent(params.parameter.alias)}\`; + const url = this.baseUrl + `/radar/datasets/${encodeURIComponent(params.parameter.alias)}`; const headers = { Accept: "text/csv" }; @@ -63121,7 +63118,7 @@ export class Client { * Get a url to download a single dataset. */ public async radar$post$reports$dataset$download$url(params: Params$radar$post$reports$dataset$download$url, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/datasets/download\`; + const url = this.baseUrl + `/radar/datasets/download`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -63142,7 +63139,7 @@ export class Client { * Get top autonomous systems by DNS queries made to Cloudflare's public DNS resolver. */ public async radar$get$dns$top$ases(params: Params$radar$get$dns$top$ases, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/dns/top/ases\`; + const url = this.baseUrl + `/radar/dns/top/ases`; const headers = { Accept: "application/json" }; @@ -63169,7 +63166,7 @@ export class Client { * Get top locations by DNS queries made to Cloudflare's public DNS resolver. */ public async radar$get$dns$top$locations(params: Params$radar$get$dns$top$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/dns/top/locations\`; + const url = this.baseUrl + `/radar/dns/top/locations`; const headers = { Accept: "application/json" }; @@ -63196,7 +63193,7 @@ export class Client { * Percentage distribution of emails classified per ARC validation. */ public async radar$get$email$security$summary$by$arc(params: Params$radar$get$email$security$summary$by$arc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/summary/arc\`; + const url = this.baseUrl + `/radar/email/security/summary/arc`; const headers = { Accept: "application/json" }; @@ -63224,7 +63221,7 @@ export class Client { * Percentage distribution of emails classified per DKIM validation. */ public async radar$get$email$security$summary$by$dkim(params: Params$radar$get$email$security$summary$by$dkim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/summary/dkim\`; + const url = this.baseUrl + `/radar/email/security/summary/dkim`; const headers = { Accept: "application/json" }; @@ -63252,7 +63249,7 @@ export class Client { * Percentage distribution of emails classified per DMARC validation. */ public async radar$get$email$security$summary$by$dmarc(params: Params$radar$get$email$security$summary$by$dmarc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/summary/dmarc\`; + const url = this.baseUrl + `/radar/email/security/summary/dmarc`; const headers = { Accept: "application/json" }; @@ -63280,7 +63277,7 @@ export class Client { * Percentage distribution of emails classified as MALICIOUS. */ public async radar$get$email$security$summary$by$malicious(params: Params$radar$get$email$security$summary$by$malicious, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/summary/malicious\`; + const url = this.baseUrl + `/radar/email/security/summary/malicious`; const headers = { Accept: "application/json" }; @@ -63309,7 +63306,7 @@ export class Client { * Proportion of emails categorized as either spam or legitimate (non-spam). */ public async radar$get$email$security$summary$by$spam(params: Params$radar$get$email$security$summary$by$spam, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/summary/spam\`; + const url = this.baseUrl + `/radar/email/security/summary/spam`; const headers = { Accept: "application/json" }; @@ -63338,7 +63335,7 @@ export class Client { * Percentage distribution of emails classified per SPF validation. */ public async radar$get$email$security$summary$by$spf(params: Params$radar$get$email$security$summary$by$spf, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/summary/spf\`; + const url = this.baseUrl + `/radar/email/security/summary/spf`; const headers = { Accept: "application/json" }; @@ -63366,7 +63363,7 @@ export class Client { * Percentage distribution of emails classified in Threat Categories. */ public async radar$get$email$security$summary$by$threat$category(params: Params$radar$get$email$security$summary$by$threat$category, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/summary/threat_category\`; + const url = this.baseUrl + `/radar/email/security/summary/threat_category`; const headers = { Accept: "application/json" }; @@ -63395,7 +63392,7 @@ export class Client { * Percentage distribution of emails classified per Arc validation over time. */ public async radar$get$email$security$timeseries$group$by$arc(params: Params$radar$get$email$security$timeseries$group$by$arc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/timeseries_groups/arc\`; + const url = this.baseUrl + `/radar/email/security/timeseries_groups/arc`; const headers = { Accept: "application/json" }; @@ -63424,7 +63421,7 @@ export class Client { * Percentage distribution of emails classified per DKIM validation over time. */ public async radar$get$email$security$timeseries$group$by$dkim(params: Params$radar$get$email$security$timeseries$group$by$dkim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/timeseries_groups/dkim\`; + const url = this.baseUrl + `/radar/email/security/timeseries_groups/dkim`; const headers = { Accept: "application/json" }; @@ -63453,7 +63450,7 @@ export class Client { * Percentage distribution of emails classified per DMARC validation over time. */ public async radar$get$email$security$timeseries$group$by$dmarc(params: Params$radar$get$email$security$timeseries$group$by$dmarc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/timeseries_groups/dmarc\`; + const url = this.baseUrl + `/radar/email/security/timeseries_groups/dmarc`; const headers = { Accept: "application/json" }; @@ -63482,7 +63479,7 @@ export class Client { * Percentage distribution of emails classified as MALICIOUS over time. */ public async radar$get$email$security$timeseries$group$by$malicious(params: Params$radar$get$email$security$timeseries$group$by$malicious, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/timeseries_groups/malicious\`; + const url = this.baseUrl + `/radar/email/security/timeseries_groups/malicious`; const headers = { Accept: "application/json" }; @@ -63512,7 +63509,7 @@ export class Client { * Percentage distribution of emails classified as SPAM over time. */ public async radar$get$email$security$timeseries$group$by$spam(params: Params$radar$get$email$security$timeseries$group$by$spam, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/timeseries_groups/spam\`; + const url = this.baseUrl + `/radar/email/security/timeseries_groups/spam`; const headers = { Accept: "application/json" }; @@ -63542,7 +63539,7 @@ export class Client { * Percentage distribution of emails classified per SPF validation over time. */ public async radar$get$email$security$timeseries$group$by$spf(params: Params$radar$get$email$security$timeseries$group$by$spf, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/timeseries_groups/spf\`; + const url = this.baseUrl + `/radar/email/security/timeseries_groups/spf`; const headers = { Accept: "application/json" }; @@ -63571,7 +63568,7 @@ export class Client { * Percentage distribution of emails classified in Threat Categories over time. */ public async radar$get$email$security$timeseries$group$by$threat$category(params: Params$radar$get$email$security$timeseries$group$by$threat$category, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/timeseries_groups/threat_category\`; + const url = this.baseUrl + `/radar/email/security/timeseries_groups/threat_category`; const headers = { Accept: "application/json" }; @@ -63601,7 +63598,7 @@ export class Client { * Get the top autonomous systems (AS) by email messages. Values are a percentage out of the total emails. */ public async radar$get$email$security$top$ases$by$messages(params: Params$radar$get$email$security$top$ases$by$messages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/ases\`; + const url = this.baseUrl + `/radar/email/security/top/ases`; const headers = { Accept: "application/json" }; @@ -63631,7 +63628,7 @@ export class Client { * Get the top autonomous systems (AS) by emails ARC validation. */ public async radar$get$email$security$top$ases$by$arc(params: Params$radar$get$email$security$top$ases$by$arc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/ases/arc/\${encodeURIComponent(params.parameter.arc)}\`; + const url = this.baseUrl + `/radar/email/security/top/ases/arc/${encodeURIComponent(params.parameter.arc)}`; const headers = { Accept: "application/json" }; @@ -63660,7 +63657,7 @@ export class Client { * Get the top autonomous systems (AS), by email DKIM validation. */ public async radar$get$email$security$top$ases$by$dkim(params: Params$radar$get$email$security$top$ases$by$dkim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/ases/dkim/\${encodeURIComponent(params.parameter.dkim)}\`; + const url = this.baseUrl + `/radar/email/security/top/ases/dkim/${encodeURIComponent(params.parameter.dkim)}`; const headers = { Accept: "application/json" }; @@ -63689,7 +63686,7 @@ export class Client { * Get the top autonomous systems (AS) by emails DMARC validation. */ public async radar$get$email$security$top$ases$by$dmarc(params: Params$radar$get$email$security$top$ases$by$dmarc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/ases/dmarc/\${encodeURIComponent(params.parameter.dmarc)}\`; + const url = this.baseUrl + `/radar/email/security/top/ases/dmarc/${encodeURIComponent(params.parameter.dmarc)}`; const headers = { Accept: "application/json" }; @@ -63718,7 +63715,7 @@ export class Client { * Get the top autonomous systems (AS), by emails classified as Malicious or not. */ public async radar$get$email$security$top$ases$by$malicious(params: Params$radar$get$email$security$top$ases$by$malicious, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/ases/malicious/\${encodeURIComponent(params.parameter.malicious)}\`; + const url = this.baseUrl + `/radar/email/security/top/ases/malicious/${encodeURIComponent(params.parameter.malicious)}`; const headers = { Accept: "application/json" }; @@ -63748,7 +63745,7 @@ export class Client { * Get the top autonomous systems (AS), by emails classified, of Spam validations. */ public async radar$get$email$security$top$ases$by$spam(params: Params$radar$get$email$security$top$ases$by$spam, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/ases/spam/\${encodeURIComponent(params.parameter.spam)}\`; + const url = this.baseUrl + `/radar/email/security/top/ases/spam/${encodeURIComponent(params.parameter.spam)}`; const headers = { Accept: "application/json" }; @@ -63778,7 +63775,7 @@ export class Client { * Get the top autonomous systems (AS) by email SPF validation. */ public async radar$get$email$security$top$ases$by$spf(params: Params$radar$get$email$security$top$ases$by$spf, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/ases/spf/\${encodeURIComponent(params.parameter.spf)}\`; + const url = this.baseUrl + `/radar/email/security/top/ases/spf/${encodeURIComponent(params.parameter.spf)}`; const headers = { Accept: "application/json" }; @@ -63807,7 +63804,7 @@ export class Client { * Get the top locations by email messages. Values are a percentage out of the total emails. */ public async radar$get$email$security$top$locations$by$messages(params: Params$radar$get$email$security$top$locations$by$messages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/locations\`; + const url = this.baseUrl + `/radar/email/security/top/locations`; const headers = { Accept: "application/json" }; @@ -63837,7 +63834,7 @@ export class Client { * Get the locations, by emails ARC validation. */ public async radar$get$email$security$top$locations$by$arc(params: Params$radar$get$email$security$top$locations$by$arc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/locations/arc/\${encodeURIComponent(params.parameter.arc)}\`; + const url = this.baseUrl + `/radar/email/security/top/locations/arc/${encodeURIComponent(params.parameter.arc)}`; const headers = { Accept: "application/json" }; @@ -63866,7 +63863,7 @@ export class Client { * Get the locations, by email DKIM validation. */ public async radar$get$email$security$top$locations$by$dkim(params: Params$radar$get$email$security$top$locations$by$dkim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/locations/dkim/\${encodeURIComponent(params.parameter.dkim)}\`; + const url = this.baseUrl + `/radar/email/security/top/locations/dkim/${encodeURIComponent(params.parameter.dkim)}`; const headers = { Accept: "application/json" }; @@ -63895,7 +63892,7 @@ export class Client { * Get the locations by email DMARC validation. */ public async radar$get$email$security$top$locations$by$dmarc(params: Params$radar$get$email$security$top$locations$by$dmarc, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/locations/dmarc/\${encodeURIComponent(params.parameter.dmarc)}\`; + const url = this.baseUrl + `/radar/email/security/top/locations/dmarc/${encodeURIComponent(params.parameter.dmarc)}`; const headers = { Accept: "application/json" }; @@ -63924,7 +63921,7 @@ export class Client { * Get the locations by emails classified as malicious or not. */ public async radar$get$email$security$top$locations$by$malicious(params: Params$radar$get$email$security$top$locations$by$malicious, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/locations/malicious/\${encodeURIComponent(params.parameter.malicious)}\`; + const url = this.baseUrl + `/radar/email/security/top/locations/malicious/${encodeURIComponent(params.parameter.malicious)}`; const headers = { Accept: "application/json" }; @@ -63954,7 +63951,7 @@ export class Client { * Get the top locations by emails classified as Spam or not. */ public async radar$get$email$security$top$locations$by$spam(params: Params$radar$get$email$security$top$locations$by$spam, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/locations/spam/\${encodeURIComponent(params.parameter.spam)}\`; + const url = this.baseUrl + `/radar/email/security/top/locations/spam/${encodeURIComponent(params.parameter.spam)}`; const headers = { Accept: "application/json" }; @@ -63984,7 +63981,7 @@ export class Client { * Get the top locations by email SPF validation. */ public async radar$get$email$security$top$locations$by$spf(params: Params$radar$get$email$security$top$locations$by$spf, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/email/security/top/locations/spf/\${encodeURIComponent(params.parameter.spf)}\`; + const url = this.baseUrl + `/radar/email/security/top/locations/spf/${encodeURIComponent(params.parameter.spf)}`; const headers = { Accept: "application/json" }; @@ -64013,7 +64010,7 @@ export class Client { * Gets a list of autonomous systems (AS). */ public async radar$get$entities$asn$list(params: Params$radar$get$entities$asn$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/entities/asns\`; + const url = this.baseUrl + `/radar/entities/asns`; const headers = { Accept: "application/json" }; @@ -64034,10 +64031,10 @@ export class Client { } /** * Get autonomous system information by AS number - * Get the requested autonomous system information. A confidence level below \`5\` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). + * Get the requested autonomous system information. A confidence level below `5` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). */ public async radar$get$entities$asn$by$id(params: Params$radar$get$entities$asn$by$id, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/entities/asns/\${encodeURIComponent(params.parameter.asn)}\`; + const url = this.baseUrl + `/radar/entities/asns/${encodeURIComponent(params.parameter.asn)}`; const headers = { Accept: "application/json" }; @@ -64056,7 +64053,7 @@ export class Client { * Get AS-level relationship for given networks. */ public async radar$get$asns$rel(params: Params$radar$get$asns$rel, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/entities/asns/\${encodeURIComponent(params.parameter.asn)}/rel\`; + const url = this.baseUrl + `/radar/entities/asns/${encodeURIComponent(params.parameter.asn)}/rel`; const headers = { Accept: "application/json" }; @@ -64076,7 +64073,7 @@ export class Client { * Get the requested autonomous system information based on IP address. Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). */ public async radar$get$entities$asn$by$ip(params: Params$radar$get$entities$asn$by$ip, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/entities/asns/ip\`; + const url = this.baseUrl + `/radar/entities/asns/ip`; const headers = { Accept: "application/json" }; @@ -64096,7 +64093,7 @@ export class Client { * Get IP address information. */ public async radar$get$entities$ip(params: Params$radar$get$entities$ip, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/entities/ip\`; + const url = this.baseUrl + `/radar/entities/ip`; const headers = { Accept: "application/json" }; @@ -64116,7 +64113,7 @@ export class Client { * Get a list of locations. */ public async radar$get$entities$locations(params: Params$radar$get$entities$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/entities/locations\`; + const url = this.baseUrl + `/radar/entities/locations`; const headers = { Accept: "application/json" }; @@ -64135,10 +64132,10 @@ export class Client { } /** * Get location - * Get the requested location information. A confidence level below \`5\` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this location). + * Get the requested location information. A confidence level below `5` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this location). */ public async radar$get$entities$location$by$alpha2(params: Params$radar$get$entities$location$by$alpha2, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/entities/locations/\${encodeURIComponent(params.parameter.location)}\`; + const url = this.baseUrl + `/radar/entities/locations/${encodeURIComponent(params.parameter.location)}`; const headers = { Accept: "application/json" }; @@ -64157,7 +64154,7 @@ export class Client { * Percentage distribution of bot-generated traffic to genuine human traffic, as classified by Cloudflare. Visit https://developers.cloudflare.com/radar/concepts/bot-classes/ for more information. */ public async radar$get$http$summary$by$bot$class(params: Params$radar$get$http$summary$by$bot$class, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/summary/bot_class\`; + const url = this.baseUrl + `/radar/http/summary/bot_class`; const headers = { Accept: "application/json" }; @@ -64188,7 +64185,7 @@ export class Client { * Percentage of Internet traffic generated by mobile, desktop, and other types of devices, over a given time period. */ public async radar$get$http$summary$by$device$type(params: Params$radar$get$http$summary$by$device$type, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/summary/device_type\`; + const url = this.baseUrl + `/radar/http/summary/device_type`; const headers = { Accept: "application/json" }; @@ -64219,7 +64216,7 @@ export class Client { * Percentage distribution of traffic per HTTP protocol over a given time period. */ public async radar$get$http$summary$by$http$protocol(params: Params$radar$get$http$summary$by$http$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/summary/http_protocol\`; + const url = this.baseUrl + `/radar/http/summary/http_protocol`; const headers = { Accept: "application/json" }; @@ -64250,7 +64247,7 @@ export class Client { * Percentage distribution of traffic per HTTP protocol version over a given time period. */ public async radar$get$http$summary$by$http$version(params: Params$radar$get$http$summary$by$http$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/summary/http_version\`; + const url = this.baseUrl + `/radar/http/summary/http_version`; const headers = { Accept: "application/json" }; @@ -64281,7 +64278,7 @@ export class Client { * Percentage distribution of Internet traffic based on IP protocol versions, such as IPv4 and IPv6, over a given time period. */ public async radar$get$http$summary$by$ip$version(params: Params$radar$get$http$summary$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/summary/ip_version\`; + const url = this.baseUrl + `/radar/http/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -64312,7 +64309,7 @@ export class Client { * Percentage distribution of Internet traffic generated by different operating systems like Windows, macOS, Android, iOS, and others, over a given time period. */ public async radar$get$http$summary$by$operating$system(params: Params$radar$get$http$summary$by$operating$system, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/summary/os\`; + const url = this.baseUrl + `/radar/http/summary/os`; const headers = { Accept: "application/json" }; @@ -64343,7 +64340,7 @@ export class Client { * Percentage distribution of traffic per TLS protocol version, over a given time period. */ public async radar$get$http$summary$by$tls$version(params: Params$radar$get$http$summary$by$tls$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/summary/tls_version\`; + const url = this.baseUrl + `/radar/http/summary/tls_version`; const headers = { Accept: "application/json" }; @@ -64374,7 +64371,7 @@ export class Client { * Get a time series of the percentage distribution of traffic classified as automated or human. Visit https://developers.cloudflare.com/radar/concepts/bot-classes/ for more information. */ public async radar$get$http$timeseries$group$by$bot$class(params: Params$radar$get$http$timeseries$group$by$bot$class, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/bot_class\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/bot_class`; const headers = { Accept: "application/json" }; @@ -64406,7 +64403,7 @@ export class Client { * Get a time series of the percentage distribution of traffic of the top user agents. */ public async radar$get$http$timeseries$group$by$browsers(params: Params$radar$get$http$timeseries$group$by$browsers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/browser\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/browser`; const headers = { Accept: "application/json" }; @@ -64440,7 +64437,7 @@ export class Client { * Get a time series of the percentage distribution of traffic of the top user agents aggregated in families. */ public async radar$get$http$timeseries$group$by$browser$families(params: Params$radar$get$http$timeseries$group$by$browser$families, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/browser_family\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/browser_family`; const headers = { Accept: "application/json" }; @@ -64473,7 +64470,7 @@ export class Client { * Get a time series of the percentage distribution of traffic per device type. */ public async radar$get$http$timeseries$group$by$device$type(params: Params$radar$get$http$timeseries$group$by$device$type, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/device_type\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/device_type`; const headers = { Accept: "application/json" }; @@ -64505,7 +64502,7 @@ export class Client { * Get a time series of the percentage distribution of traffic per HTTP protocol. */ public async radar$get$http$timeseries$group$by$http$protocol(params: Params$radar$get$http$timeseries$group$by$http$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/http_protocol\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/http_protocol`; const headers = { Accept: "application/json" }; @@ -64537,7 +64534,7 @@ export class Client { * Get a time series of the percentage distribution of traffic per HTTP protocol version. */ public async radar$get$http$timeseries$group$by$http$version(params: Params$radar$get$http$timeseries$group$by$http$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/http_version\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/http_version`; const headers = { Accept: "application/json" }; @@ -64569,7 +64566,7 @@ export class Client { * Get a time series of the percentage distribution of traffic per IP protocol version. */ public async radar$get$http$timeseries$group$by$ip$version(params: Params$radar$get$http$timeseries$group$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/ip_version\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -64601,7 +64598,7 @@ export class Client { * Get a time series of the percentage distribution of traffic of the top operating systems. */ public async radar$get$http$timeseries$group$by$operating$system(params: Params$radar$get$http$timeseries$group$by$operating$system, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/os\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/os`; const headers = { Accept: "application/json" }; @@ -64633,7 +64630,7 @@ export class Client { * Get a time series of the percentage distribution of traffic per TLS protocol version. */ public async radar$get$http$timeseries$group$by$tls$version(params: Params$radar$get$http$timeseries$group$by$tls$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/timeseries_groups/tls_version\`; + const url = this.baseUrl + `/radar/http/timeseries_groups/tls_version`; const headers = { Accept: "application/json" }; @@ -64665,7 +64662,7 @@ export class Client { * Get the top autonomous systems by HTTP traffic. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$http$requests(params: Params$radar$get$http$top$ases$by$http$requests, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases\`; + const url = this.baseUrl + `/radar/http/top/ases`; const headers = { Accept: "application/json" }; @@ -64698,7 +64695,7 @@ export class Client { * Get the top autonomous systems (AS), by HTTP traffic, of the requested bot class. These two categories use Cloudflare's bot score - refer to [Bot Scores](https://developers.cloudflare.com/bots/concepts/bot-score) for more information. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$bot$class(params: Params$radar$get$http$top$ases$by$bot$class, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases/bot_class/\${encodeURIComponent(params.parameter.bot_class)}\`; + const url = this.baseUrl + `/radar/http/top/ases/bot_class/${encodeURIComponent(params.parameter.bot_class)}`; const headers = { Accept: "application/json" }; @@ -64730,7 +64727,7 @@ export class Client { * Get the top autonomous systems (AS), by HTTP traffic, of the requested device type. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$device$type(params: Params$radar$get$http$top$ases$by$device$type, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases/device_type/\${encodeURIComponent(params.parameter.device_type)}\`; + const url = this.baseUrl + `/radar/http/top/ases/device_type/${encodeURIComponent(params.parameter.device_type)}`; const headers = { Accept: "application/json" }; @@ -64762,7 +64759,7 @@ export class Client { * Get the top autonomous systems (AS), by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$http$protocol(params: Params$radar$get$http$top$ases$by$http$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases/http_protocol/\${encodeURIComponent(params.parameter.http_protocol)}\`; + const url = this.baseUrl + `/radar/http/top/ases/http_protocol/${encodeURIComponent(params.parameter.http_protocol)}`; const headers = { Accept: "application/json" }; @@ -64794,7 +64791,7 @@ export class Client { * Get the top autonomous systems (AS), by HTTP traffic, of the requested HTTP protocol version. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$http$version(params: Params$radar$get$http$top$ases$by$http$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases/http_version/\${encodeURIComponent(params.parameter.http_version)}\`; + const url = this.baseUrl + `/radar/http/top/ases/http_version/${encodeURIComponent(params.parameter.http_version)}`; const headers = { Accept: "application/json" }; @@ -64826,7 +64823,7 @@ export class Client { * Get the top autonomous systems, by HTTP traffic, of the requested IP protocol version. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$ip$version(params: Params$radar$get$http$top$ases$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const url = this.baseUrl + `/radar/http/top/ases/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -64858,7 +64855,7 @@ export class Client { * Get the top autonomous systems, by HTTP traffic, of the requested operating systems. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$operating$system(params: Params$radar$get$http$top$ases$by$operating$system, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases/os/\${encodeURIComponent(params.parameter.os)}\`; + const url = this.baseUrl + `/radar/http/top/ases/os/${encodeURIComponent(params.parameter.os)}`; const headers = { Accept: "application/json" }; @@ -64890,7 +64887,7 @@ export class Client { * Get the top autonomous systems (AS), by HTTP traffic, of the requested TLS protocol version. Values are a percentage out of the total traffic. */ public async radar$get$http$top$ases$by$tls$version(params: Params$radar$get$http$top$ases$by$tls$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/ases/tls_version/\${encodeURIComponent(params.parameter.tls_version)}\`; + const url = this.baseUrl + `/radar/http/top/ases/tls_version/${encodeURIComponent(params.parameter.tls_version)}`; const headers = { Accept: "application/json" }; @@ -64922,7 +64919,7 @@ export class Client { * Get the top user agents aggregated in families by HTTP traffic. Values are a percentage out of the total traffic. */ public async radar$get$http$top$browser$families(params: Params$radar$get$http$top$browser$families, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/browser_families\`; + const url = this.baseUrl + `/radar/http/top/browser_families`; const headers = { Accept: "application/json" }; @@ -64955,7 +64952,7 @@ export class Client { * Get the top user agents by HTTP traffic. Values are a percentage out of the total traffic. */ public async radar$get$http$top$browsers(params: Params$radar$get$http$top$browsers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/browsers\`; + const url = this.baseUrl + `/radar/http/top/browsers`; const headers = { Accept: "application/json" }; @@ -64988,7 +64985,7 @@ export class Client { * Get the top locations by HTTP traffic. Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$http$requests(params: Params$radar$get$http$top$locations$by$http$requests, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations\`; + const url = this.baseUrl + `/radar/http/top/locations`; const headers = { Accept: "application/json" }; @@ -65021,7 +65018,7 @@ export class Client { * Get the top locations, by HTTP traffic, of the requested bot class. These two categories use Cloudflare's bot score - refer to [Bot scores])https://developers.cloudflare.com/bots/concepts/bot-score). Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$bot$class(params: Params$radar$get$http$top$locations$by$bot$class, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations/bot_class/\${encodeURIComponent(params.parameter.bot_class)}\`; + const url = this.baseUrl + `/radar/http/top/locations/bot_class/${encodeURIComponent(params.parameter.bot_class)}`; const headers = { Accept: "application/json" }; @@ -65053,7 +65050,7 @@ export class Client { * Get the top locations, by HTTP traffic, of the requested device type. Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$device$type(params: Params$radar$get$http$top$locations$by$device$type, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations/device_type/\${encodeURIComponent(params.parameter.device_type)}\`; + const url = this.baseUrl + `/radar/http/top/locations/device_type/${encodeURIComponent(params.parameter.device_type)}`; const headers = { Accept: "application/json" }; @@ -65085,7 +65082,7 @@ export class Client { * Get the top locations, by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$http$protocol(params: Params$radar$get$http$top$locations$by$http$protocol, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations/http_protocol/\${encodeURIComponent(params.parameter.http_protocol)}\`; + const url = this.baseUrl + `/radar/http/top/locations/http_protocol/${encodeURIComponent(params.parameter.http_protocol)}`; const headers = { Accept: "application/json" }; @@ -65117,7 +65114,7 @@ export class Client { * Get the top locations, by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$http$version(params: Params$radar$get$http$top$locations$by$http$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations/http_version/\${encodeURIComponent(params.parameter.http_version)}\`; + const url = this.baseUrl + `/radar/http/top/locations/http_version/${encodeURIComponent(params.parameter.http_version)}`; const headers = { Accept: "application/json" }; @@ -65149,7 +65146,7 @@ export class Client { * Get the top locations, by HTTP traffic, of the requested IP protocol version. Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$ip$version(params: Params$radar$get$http$top$locations$by$ip$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const url = this.baseUrl + `/radar/http/top/locations/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -65181,7 +65178,7 @@ export class Client { * Get the top locations, by HTTP traffic, of the requested operating systems. Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$operating$system(params: Params$radar$get$http$top$locations$by$operating$system, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations/os/\${encodeURIComponent(params.parameter.os)}\`; + const url = this.baseUrl + `/radar/http/top/locations/os/${encodeURIComponent(params.parameter.os)}`; const headers = { Accept: "application/json" }; @@ -65213,7 +65210,7 @@ export class Client { * Get the top locations, by HTTP traffic, of the requested TLS protocol version. Values are a percentage out of the total traffic. */ public async radar$get$http$top$locations$by$tls$version(params: Params$radar$get$http$top$locations$by$tls$version, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/http/top/locations/tls_version/\${encodeURIComponent(params.parameter.tls_version)}\`; + const url = this.baseUrl + `/radar/http/top/locations/tls_version/${encodeURIComponent(params.parameter.tls_version)}`; const headers = { Accept: "application/json" }; @@ -65245,7 +65242,7 @@ export class Client { * Get network traffic change over time. Visit https://en.wikipedia.org/wiki/NetFlow for more information on NetFlows. */ public async radar$get$netflows$timeseries(params: Params$radar$get$netflows$timeseries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/netflows/timeseries\`; + const url = this.baseUrl + `/radar/netflows/timeseries`; const headers = { Accept: "application/json" }; @@ -65273,7 +65270,7 @@ export class Client { * Get the top autonomous systems (AS) by network traffic (NetFlows) over a given time period. Visit https://en.wikipedia.org/wiki/NetFlow for more information. */ public async radar$get$netflows$top$ases(params: Params$radar$get$netflows$top$ases, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/netflows/top/ases\`; + const url = this.baseUrl + `/radar/netflows/top/ases`; const headers = { Accept: "application/json" }; @@ -65299,7 +65296,7 @@ export class Client { * Get the top locations by network traffic (NetFlows) over a given time period. Visit https://en.wikipedia.org/wiki/NetFlow for more information. */ public async radar$get$netflows$top$locations(params: Params$radar$get$netflows$top$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/netflows/top/locations\`; + const url = this.baseUrl + `/radar/netflows/top/locations`; const headers = { Accept: "application/json" }; @@ -65325,7 +65322,7 @@ export class Client { * Get a summary (percentiles) of bandwidth, latency or DNS response time from the Radar Internet Quality Index (IQI). */ public async radar$get$quality$index$summary(params: Params$radar$get$quality$index$summary, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/quality/iqi/summary\`; + const url = this.baseUrl + `/radar/quality/iqi/summary`; const headers = { Accept: "application/json" }; @@ -65352,7 +65349,7 @@ export class Client { * Get a time series (percentiles) of bandwidth, latency or DNS response time from the Radar Internet Quality Index (IQI). */ public async radar$get$quality$index$timeseries$group(params: Params$radar$get$quality$index$timeseries$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/quality/iqi/timeseries_groups\`; + const url = this.baseUrl + `/radar/quality/iqi/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -65381,7 +65378,7 @@ export class Client { * Get an histogram from the previous 90 days of Cloudflare Speed Test data, split into fixed bandwidth (Mbps), latency (ms) or jitter (ms) buckets. */ public async radar$get$quality$speed$histogram(params: Params$radar$get$quality$speed$histogram, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/quality/speed/histogram\`; + const url = this.baseUrl + `/radar/quality/speed/histogram`; const headers = { Accept: "application/json" }; @@ -65406,7 +65403,7 @@ export class Client { * Get a summary of bandwidth, latency, jitter and packet loss, from the previous 90 days of Cloudflare Speed Test data. */ public async radar$get$quality$speed$summary(params: Params$radar$get$quality$speed$summary, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/quality/speed/summary\`; + const url = this.baseUrl + `/radar/quality/speed/summary`; const headers = { Accept: "application/json" }; @@ -65429,7 +65426,7 @@ export class Client { * Get the top autonomous systems by bandwidth, latency, jitter or packet loss, from the previous 90 days of Cloudflare Speed Test data. */ public async radar$get$quality$speed$top$ases(params: Params$radar$get$quality$speed$top$ases, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/quality/speed/top/ases\`; + const url = this.baseUrl + `/radar/quality/speed/top/ases`; const headers = { Accept: "application/json" }; @@ -65455,7 +65452,7 @@ export class Client { * Get the top locations by bandwidth, latency, jitter or packet loss, from the previous 90 days of Cloudflare Speed Test data. */ public async radar$get$quality$speed$top$locations(params: Params$radar$get$quality$speed$top$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/quality/speed/top/locations\`; + const url = this.baseUrl + `/radar/quality/speed/top/locations`; const headers = { Accept: "application/json" }; @@ -65483,7 +65480,7 @@ export class Client { * like top 200 thousand, top one million, etc.. These are available through Radar datasets endpoints. */ public async radar$get$ranking$domain$details(params: Params$radar$get$ranking$domain$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/ranking/domain/\${encodeURIComponent(params.parameter.domain)}\`; + const url = this.baseUrl + `/radar/ranking/domain/${encodeURIComponent(params.parameter.domain)}`; const headers = { Accept: "application/json" }; @@ -65506,7 +65503,7 @@ export class Client { * Gets Domains Rank updates change over time. Raw values are returned. */ public async radar$get$ranking$domain$timeseries(params: Params$radar$get$ranking$domain$timeseries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/ranking/timeseries_groups\`; + const url = this.baseUrl + `/radar/ranking/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -65533,7 +65530,7 @@ export class Client { * Get top or trending domains based on their rank. Popular domains are domains of broad appeal based on how people use the Internet. Trending domains are domains that are generating a surge in interest. For more information on top domains, see https://blog.cloudflare.com/radar-domain-rankings/. */ public async radar$get$ranking$top$domains(params: Params$radar$get$ranking$top$domains, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/ranking/top\`; + const url = this.baseUrl + `/radar/ranking/top`; const headers = { Accept: "application/json" }; @@ -65557,7 +65554,7 @@ export class Client { * Lets you search for locations, autonomous systems (AS) and reports. */ public async radar$get$search$global(params: Params$radar$get$search$global, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/search/global\`; + const url = this.baseUrl + `/radar/search/global`; const headers = { Accept: "application/json" }; @@ -65584,7 +65581,7 @@ export class Client { * */ public async radar$get$traffic$anomalies(params: Params$radar$get$traffic$anomalies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/traffic_anomalies\`; + const url = this.baseUrl + `/radar/traffic_anomalies`; const headers = { Accept: "application/json" }; @@ -65614,7 +65611,7 @@ export class Client { * */ public async radar$get$traffic$anomalies$top(params: Params$radar$get$traffic$anomalies$top, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/traffic_anomalies/locations\`; + const url = this.baseUrl + `/radar/traffic_anomalies/locations`; const headers = { Accept: "application/json" }; @@ -65638,7 +65635,7 @@ export class Client { * Get top verified bots by HTTP requests, with owner and category. */ public async radar$get$verified$bots$top$by$http$requests(params: Params$radar$get$verified$bots$top$by$http$requests, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/verified_bots/top/bots\`; + const url = this.baseUrl + `/radar/verified_bots/top/bots`; const headers = { Accept: "application/json" }; @@ -65664,7 +65661,7 @@ export class Client { * Get top verified bot categories by HTTP requests, along with their corresponding percentage, over the total verified bot HTTP requests. */ public async radar$get$verified$bots$top$categories$by$http$requests(params: Params$radar$get$verified$bots$top$categories$by$http$requests, option?: RequestOption): Promise { - const url = this.baseUrl + \`/radar/verified_bots/top/categories\`; + const url = this.baseUrl + `/radar/verified_bots/top/categories`; const headers = { Accept: "application/json" }; @@ -65687,7 +65684,7 @@ export class Client { } /** User Details */ public async user$user$details(option?: RequestOption): Promise { - const url = this.baseUrl + \`/user\`; + const url = this.baseUrl + `/user`; const headers = { Accept: "application/json" }; @@ -65702,7 +65699,7 @@ export class Client { * Edit part of your user details. */ public async user$edit$user(params: Params$user$edit$user, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user\`; + const url = this.baseUrl + `/user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65719,7 +65716,7 @@ export class Client { * Gets a list of audit logs for a user account. Can be filtered by who made the change, on which zone, and the timeframe of the change. */ public async audit$logs$get$user$audit$logs(params: Params$audit$logs$get$user$audit$logs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/audit_logs\`; + const url = this.baseUrl + `/user/audit_logs`; const headers = { Accept: "application/json" }; @@ -65750,7 +65747,7 @@ export class Client { * Accesses your billing history object. */ public async user$billing$history$$$deprecated$$billing$history$details(params: Params$user$billing$history$$$deprecated$$billing$history$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/billing/history\`; + const url = this.baseUrl + `/user/billing/history`; const headers = { Accept: "application/json" }; @@ -65776,7 +65773,7 @@ export class Client { * Accesses your billing profile object. */ public async user$billing$profile$$$deprecated$$billing$profile$details(option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/billing/profile\`; + const url = this.baseUrl + `/user/billing/profile`; const headers = { Accept: "application/json" }; @@ -65791,7 +65788,7 @@ export class Client { * Fetches IP Access rules of the user. You can filter the results using several optional parameters. */ public async ip$access$rules$for$a$user$list$ip$access$rules(params: Params$ip$access$rules$for$a$user$list$ip$access$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/firewall/access_rules/rules\`; + const url = this.baseUrl + `/user/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -65817,7 +65814,7 @@ export class Client { * Note: To create an IP Access rule that applies to a specific zone, refer to the [IP Access rules for a zone](#ip-access-rules-for-a-zone) endpoints. */ public async ip$access$rules$for$a$user$create$an$ip$access$rule(params: Params$ip$access$rules$for$a$user$create$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/firewall/access_rules/rules\`; + const url = this.baseUrl + `/user/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65836,7 +65833,7 @@ export class Client { * Note: Deleting a user-level rule will affect all zones owned by the user. */ public async ip$access$rules$for$a$user$delete$an$ip$access$rule(params: Params$ip$access$rules$for$a$user$delete$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65848,10 +65845,10 @@ export class Client { } /** * Update an IP Access rule - * Updates an IP Access rule defined at the user level. You can only update the rule action (\`mode\` parameter) and notes. + * Updates an IP Access rule defined at the user level. You can only update the rule action (`mode` parameter) and notes. */ public async ip$access$rules$for$a$user$update$an$ip$access$rule(params: Params$ip$access$rules$for$a$user$update$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65868,7 +65865,7 @@ export class Client { * Lists all invitations associated with my user. */ public async user$$s$invites$list$invitations(option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/invites\`; + const url = this.baseUrl + `/user/invites`; const headers = { Accept: "application/json" }; @@ -65883,7 +65880,7 @@ export class Client { * Gets the details of an invitation. */ public async user$$s$invites$invitation$details(params: Params$user$$s$invites$invitation$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65898,7 +65895,7 @@ export class Client { * Responds to an invitation. */ public async user$$s$invites$respond$to$invitation(params: Params$user$$s$invites$respond$to$invitation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65915,7 +65912,7 @@ export class Client { * List configured monitors for a user. */ public async load$balancer$monitors$list$monitors(option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors\`; + const url = this.baseUrl + `/user/load_balancers/monitors`; const headers = { Accept: "application/json" }; @@ -65930,7 +65927,7 @@ export class Client { * Create a configured monitor. */ public async load$balancer$monitors$create$monitor(params: Params$load$balancer$monitors$create$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors\`; + const url = this.baseUrl + `/user/load_balancers/monitors`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65947,7 +65944,7 @@ export class Client { * List a single configured monitor for a user. */ public async load$balancer$monitors$monitor$details(params: Params$load$balancer$monitors$monitor$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65962,7 +65959,7 @@ export class Client { * Modify a configured monitor. */ public async load$balancer$monitors$update$monitor(params: Params$load$balancer$monitors$update$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65979,7 +65976,7 @@ export class Client { * Delete a configured monitor. */ public async load$balancer$monitors$delete$monitor(params: Params$load$balancer$monitors$delete$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65994,7 +65991,7 @@ export class Client { * Apply changes to an existing monitor, overwriting the supplied properties. */ public async load$balancer$monitors$patch$monitor(params: Params$load$balancer$monitors$patch$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66011,7 +66008,7 @@ export class Client { * Preview pools using the specified monitor with provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ public async load$balancer$monitors$preview$monitor(params: Params$load$balancer$monitors$preview$monitor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = this.baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66028,7 +66025,7 @@ export class Client { * Get the list of resources that reference the provided monitor. */ public async load$balancer$monitors$list$monitor$references(params: Params$load$balancer$monitors$list$monitor$references, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = this.baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -66043,7 +66040,7 @@ export class Client { * List configured pools. */ public async load$balancer$pools$list$pools(params: Params$load$balancer$pools$list$pools, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools\`; + const url = this.baseUrl + `/user/load_balancers/pools`; const headers = { Accept: "application/json" }; @@ -66062,7 +66059,7 @@ export class Client { * Create a new pool. */ public async load$balancer$pools$create$pool(params: Params$load$balancer$pools$create$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools\`; + const url = this.baseUrl + `/user/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66076,10 +66073,10 @@ export class Client { } /** * Patch Pools - * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending \`name\`. Returns the list of affected pools. Supports the standard pagination query parameters, either \`limit\`/\`offset\` or \`per_page\`/\`page\`. + * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending `name`. Returns the list of affected pools. Supports the standard pagination query parameters, either `limit`/`offset` or `per_page`/`page`. */ public async load$balancer$pools$patch$pools(params: Params$load$balancer$pools$patch$pools, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools\`; + const url = this.baseUrl + `/user/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66096,7 +66093,7 @@ export class Client { * Fetch a single configured pool. */ public async load$balancer$pools$pool$details(params: Params$load$balancer$pools$pool$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66111,7 +66108,7 @@ export class Client { * Modify a configured pool. */ public async load$balancer$pools$update$pool(params: Params$load$balancer$pools$update$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66128,7 +66125,7 @@ export class Client { * Delete a configured pool. */ public async load$balancer$pools$delete$pool(params: Params$load$balancer$pools$delete$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66143,7 +66140,7 @@ export class Client { * Apply changes to an existing pool, overwriting the supplied properties. */ public async load$balancer$pools$patch$pool(params: Params$load$balancer$pools$patch$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66160,7 +66157,7 @@ export class Client { * Fetch the latest pool health status for a single pool. */ public async load$balancer$pools$pool$health$details(params: Params$load$balancer$pools$pool$health$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/health\`; + const url = this.baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/health`; const headers = { Accept: "application/json" }; @@ -66175,7 +66172,7 @@ export class Client { * Preview pool health using provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ public async load$balancer$pools$preview$pool(params: Params$load$balancer$pools$preview$pool, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = this.baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66192,7 +66189,7 @@ export class Client { * Get the list of resources that reference the provided pool. */ public async load$balancer$pools$list$pool$references(params: Params$load$balancer$pools$list$pool$references, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = this.baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -66207,7 +66204,7 @@ export class Client { * Get the result of a previous preview operation using the provided preview_id. */ public async load$balancer$monitors$preview$result(params: Params$load$balancer$monitors$preview$result, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancers/preview/\${encodeURIComponent(params.parameter.preview_id)}\`; + const url = this.baseUrl + `/user/load_balancers/preview/${encodeURIComponent(params.parameter.preview_id)}`; const headers = { Accept: "application/json" }; @@ -66222,7 +66219,7 @@ export class Client { * List origin health changes. */ public async load$balancer$healthcheck$events$list$healthcheck$events(params: Params$load$balancer$healthcheck$events$list$healthcheck$events, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/load_balancing_analytics/events\`; + const url = this.baseUrl + `/user/load_balancing_analytics/events`; const headers = { Accept: "application/json" }; @@ -66247,7 +66244,7 @@ export class Client { * Lists organizations the user is associated with. */ public async user$$s$organizations$list$organizations(params: Params$user$$s$organizations$list$organizations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/organizations\`; + const url = this.baseUrl + `/user/organizations`; const headers = { Accept: "application/json" }; @@ -66272,7 +66269,7 @@ export class Client { * Gets a specific organization the user is associated with. */ public async user$$s$organizations$organization$details(params: Params$user$$s$organizations$organization$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66287,7 +66284,7 @@ export class Client { * Removes association to an organization. */ public async user$$s$organizations$leave$organization(params: Params$user$$s$organizations$leave$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66302,7 +66299,7 @@ export class Client { * Lists all of a user's subscriptions. */ public async user$subscription$get$user$subscriptions(option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/subscriptions\`; + const url = this.baseUrl + `/user/subscriptions`; const headers = { Accept: "application/json" }; @@ -66317,7 +66314,7 @@ export class Client { * Updates a user's subscriptions. */ public async user$subscription$update$user$subscription(params: Params$user$subscription$update$user$subscription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/subscriptions/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/subscriptions/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66334,7 +66331,7 @@ export class Client { * Deletes a user's subscription. */ public async user$subscription$delete$user$subscription(params: Params$user$subscription$delete$user$subscription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/subscriptions/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/subscriptions/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66349,7 +66346,7 @@ export class Client { * List all access tokens you created. */ public async user$api$tokens$list$tokens(params: Params$user$api$tokens$list$tokens, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens\`; + const url = this.baseUrl + `/user/tokens`; const headers = { Accept: "application/json" }; @@ -66370,7 +66367,7 @@ export class Client { * Create a new access token. */ public async user$api$tokens$create$token(params: Params$user$api$tokens$create$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens\`; + const url = this.baseUrl + `/user/tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66387,7 +66384,7 @@ export class Client { * Get information about a specific token. */ public async user$api$tokens$token$details(params: Params$user$api$tokens$token$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66402,7 +66399,7 @@ export class Client { * Update an existing token. */ public async user$api$tokens$update$token(params: Params$user$api$tokens$update$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66419,7 +66416,7 @@ export class Client { * Destroy a token. */ public async user$api$tokens$delete$token(params: Params$user$api$tokens$delete$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66434,7 +66431,7 @@ export class Client { * Roll the token secret. */ public async user$api$tokens$roll$token(params: Params$user$api$tokens$roll$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}/value\`; + const url = this.baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}/value`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66451,7 +66448,7 @@ export class Client { * Find all available permission groups. */ public async permission$groups$list$permission$groups(option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens/permission_groups\`; + const url = this.baseUrl + `/user/tokens/permission_groups`; const headers = { Accept: "application/json" }; @@ -66466,7 +66463,7 @@ export class Client { * Test whether a token works. */ public async user$api$tokens$verify$token(option?: RequestOption): Promise { - const url = this.baseUrl + \`/user/tokens/verify\`; + const url = this.baseUrl + `/user/tokens/verify`; const headers = { Accept: "application/json" }; @@ -66481,7 +66478,7 @@ export class Client { * Lists, searches, sorts, and filters your zones. */ public async zones$get(params: Params$zones$get, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones\`; + const url = this.baseUrl + `/zones`; const headers = { Accept: "application/json" }; @@ -66505,7 +66502,7 @@ export class Client { } /** Create Zone */ public async zones$post(params: Params$zones$post, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones\`; + const url = this.baseUrl + `/zones`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66522,7 +66519,7 @@ export class Client { * List all Access Applications in a zone. */ public async zone$level$access$applications$list$access$applications(params: Params$zone$level$access$applications$list$access$applications, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { Accept: "application/json" }; @@ -66537,7 +66534,7 @@ export class Client { * Adds a new application to Access. */ public async zone$level$access$applications$add$a$bookmark$application(params: Params$zone$level$access$applications$add$a$bookmark$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66554,7 +66551,7 @@ export class Client { * Fetches information about an Access application. */ public async zone$level$access$applications$get$an$access$application(params: Params$zone$level$access$applications$get$an$access$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -66569,7 +66566,7 @@ export class Client { * Updates an Access application. */ public async zone$level$access$applications$update$a$bookmark$application(params: Params$zone$level$access$applications$update$a$bookmark$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66586,7 +66583,7 @@ export class Client { * Deletes an application from Access. */ public async zone$level$access$applications$delete$an$access$application(params: Params$zone$level$access$applications$delete$an$access$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -66601,7 +66598,7 @@ export class Client { * Revokes all tokens issued for an application. */ public async zone$level$access$applications$revoke$service$tokens(params: Params$zone$level$access$applications$revoke$service$tokens, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/revoke_tokens\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/revoke_tokens`; const headers = { Accept: "application/json" }; @@ -66616,7 +66613,7 @@ export class Client { * Tests if a specific user has permission to access an application. */ public async zone$level$access$applications$test$access$policies(params: Params$zone$level$access$applications$test$access$policies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/user_policy_checks\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/user_policy_checks`; const headers = { Accept: "application/json" }; @@ -66631,7 +66628,7 @@ export class Client { * Fetches a short-lived certificate CA and its public key. */ public async zone$level$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca(params: Params$zone$level$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66646,7 +66643,7 @@ export class Client { * Generates a new short-lived certificate CA and public key. */ public async zone$level$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca(params: Params$zone$level$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66661,7 +66658,7 @@ export class Client { * Deletes a short-lived certificate CA. */ public async zone$level$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca(params: Params$zone$level$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66676,7 +66673,7 @@ export class Client { * Lists Access policies configured for an application. */ public async zone$level$access$policies$list$access$policies(params: Params$zone$level$access$policies$list$access$policies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { Accept: "application/json" }; @@ -66691,7 +66688,7 @@ export class Client { * Create a new Access policy for an application. */ public async zone$level$access$policies$create$an$access$policy(params: Params$zone$level$access$policies$create$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66708,7 +66705,7 @@ export class Client { * Fetches a single Access policy. */ public async zone$level$access$policies$get$an$access$policy(params: Params$zone$level$access$policies$get$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66723,7 +66720,7 @@ export class Client { * Update a configured Access policy. */ public async zone$level$access$policies$update$an$access$policy(params: Params$zone$level$access$policies$update$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66740,7 +66737,7 @@ export class Client { * Delete an Access policy. */ public async zone$level$access$policies$delete$an$access$policy(params: Params$zone$level$access$policies$delete$an$access$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66755,7 +66752,7 @@ export class Client { * Lists short-lived certificate CAs and their public keys. */ public async zone$level$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as(params: Params$zone$level$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/ca\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/ca`; const headers = { Accept: "application/json" }; @@ -66770,7 +66767,7 @@ export class Client { * Lists all mTLS certificates. */ public async zone$level$access$mtls$authentication$list$mtls$certificates(params: Params$zone$level$access$mtls$authentication$list$mtls$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { Accept: "application/json" }; @@ -66785,7 +66782,7 @@ export class Client { * Adds a new mTLS root certificate to Access. */ public async zone$level$access$mtls$authentication$add$an$mtls$certificate(params: Params$zone$level$access$mtls$authentication$add$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66802,7 +66799,7 @@ export class Client { * Fetches a single mTLS certificate. */ public async zone$level$access$mtls$authentication$get$an$mtls$certificate(params: Params$zone$level$access$mtls$authentication$get$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66817,7 +66814,7 @@ export class Client { * Updates a configured mTLS certificate. */ public async zone$level$access$mtls$authentication$update$an$mtls$certificate(params: Params$zone$level$access$mtls$authentication$update$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66834,7 +66831,7 @@ export class Client { * Deletes an mTLS certificate. */ public async zone$level$access$mtls$authentication$delete$an$mtls$certificate(params: Params$zone$level$access$mtls$authentication$delete$an$mtls$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66849,7 +66846,7 @@ export class Client { * List all mTLS hostname settings for this zone. */ public async zone$level$access$mtls$authentication$list$mtls$certificates$hostname$settings(params: Params$zone$level$access$mtls$authentication$list$mtls$certificates$hostname$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { Accept: "application/json" }; @@ -66864,7 +66861,7 @@ export class Client { * Updates an mTLS certificate's hostname settings. */ public async zone$level$access$mtls$authentication$update$an$mtls$certificate$settings(params: Params$zone$level$access$mtls$authentication$update$an$mtls$certificate$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66881,7 +66878,7 @@ export class Client { * Lists all Access groups. */ public async zone$level$access$groups$list$access$groups(params: Params$zone$level$access$groups$list$access$groups, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { Accept: "application/json" }; @@ -66896,7 +66893,7 @@ export class Client { * Creates a new Access group. */ public async zone$level$access$groups$create$an$access$group(params: Params$zone$level$access$groups$create$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66913,7 +66910,7 @@ export class Client { * Fetches a single Access group. */ public async zone$level$access$groups$get$an$access$group(params: Params$zone$level$access$groups$get$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66928,7 +66925,7 @@ export class Client { * Updates a configured Access group. */ public async zone$level$access$groups$update$an$access$group(params: Params$zone$level$access$groups$update$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66945,7 +66942,7 @@ export class Client { * Deletes an Access group. */ public async zone$level$access$groups$delete$an$access$group(params: Params$zone$level$access$groups$delete$an$access$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66960,7 +66957,7 @@ export class Client { * Lists all configured identity providers. */ public async zone$level$access$identity$providers$list$access$identity$providers(params: Params$zone$level$access$identity$providers$list$access$identity$providers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { Accept: "application/json" }; @@ -66975,7 +66972,7 @@ export class Client { * Adds a new identity provider to Access. */ public async zone$level$access$identity$providers$add$an$access$identity$provider(params: Params$zone$level$access$identity$providers$add$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66992,7 +66989,7 @@ export class Client { * Fetches a configured identity provider. */ public async zone$level$access$identity$providers$get$an$access$identity$provider(params: Params$zone$level$access$identity$providers$get$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -67007,7 +67004,7 @@ export class Client { * Updates a configured identity provider. */ public async zone$level$access$identity$providers$update$an$access$identity$provider(params: Params$zone$level$access$identity$providers$update$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67024,7 +67021,7 @@ export class Client { * Deletes an identity provider from Access. */ public async zone$level$access$identity$providers$delete$an$access$identity$provider(params: Params$zone$level$access$identity$providers$delete$an$access$identity$provider, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -67039,7 +67036,7 @@ export class Client { * Returns the configuration for your Zero Trust organization. */ public async zone$level$zero$trust$organization$get$your$zero$trust$organization(params: Params$zone$level$zero$trust$organization$get$your$zero$trust$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { Accept: "application/json" }; @@ -67054,7 +67051,7 @@ export class Client { * Updates the configuration for your Zero Trust organization. */ public async zone$level$zero$trust$organization$update$your$zero$trust$organization(params: Params$zone$level$zero$trust$organization$update$your$zero$trust$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67071,7 +67068,7 @@ export class Client { * Sets up a Zero Trust organization for your account. */ public async zone$level$zero$trust$organization$create$your$zero$trust$organization(params: Params$zone$level$zero$trust$organization$create$your$zero$trust$organization, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67088,7 +67085,7 @@ export class Client { * Revokes a user's access across all applications. */ public async zone$level$zero$trust$organization$revoke$all$access$tokens$for$a$user(params: Params$zone$level$zero$trust$organization$revoke$all$access$tokens$for$a$user, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67105,7 +67102,7 @@ export class Client { * Lists all service tokens. */ public async zone$level$access$service$tokens$list$service$tokens(params: Params$zone$level$access$service$tokens$list$service$tokens, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { Accept: "application/json" }; @@ -67120,7 +67117,7 @@ export class Client { * Generates a new service token. **Note:** This is the only time you can get the Client Secret. If you lose the Client Secret, you will have to create a new service token. */ public async zone$level$access$service$tokens$create$a$service$token(params: Params$zone$level$access$service$tokens$create$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67137,7 +67134,7 @@ export class Client { * Updates a configured service token. */ public async zone$level$access$service$tokens$update$a$service$token(params: Params$zone$level$access$service$tokens$update$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67154,7 +67151,7 @@ export class Client { * Deletes a service token. */ public async zone$level$access$service$tokens$delete$a$service$token(params: Params$zone$level$access$service$tokens$delete$a$service$token, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -67171,7 +67168,7 @@ export class Client { * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ public async dns$analytics$table(params: Params$dns$analytics$table, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report`; const headers = { Accept: "application/json" }; @@ -67198,7 +67195,7 @@ export class Client { * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ public async dns$analytics$by$time(params: Params$dns$analytics$by$time, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime`; const headers = { Accept: "application/json" }; @@ -67224,7 +67221,7 @@ export class Client { * List configured load balancers. */ public async load$balancers$list$load$balancers(params: Params$load$balancers$list$load$balancers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/load_balancers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/load_balancers`; const headers = { Accept: "application/json" }; @@ -67239,7 +67236,7 @@ export class Client { * Create a new load balancer. */ public async load$balancers$create$load$balancer(params: Params$load$balancers$create$load$balancer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/load_balancers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/load_balancers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67269,7 +67266,7 @@ export class Client { * **NB:** Cache-Tag, host, and prefix purging each have a rate limit of 30,000 purge API calls in every 24 hour period. You may purge up to 30 tags, hosts, or prefixes in one API call. This rate limit can be raised for customers who need to purge at higher volume. */ public async zone$purge(params: Params$zone$purge, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/purge_cache\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/purge_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67286,7 +67283,7 @@ export class Client { * Returns the set of hostnames, the signature algorithm, and the expiration date of the certificate. */ public async analyze$certificate$analyze$certificate(params: Params$analyze$certificate$analyze$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/ssl/analyze\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/ssl/analyze`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67303,7 +67300,7 @@ export class Client { * Lists zone subscription details. */ public async zone$subscription$zone$subscription$details(params: Params$zone$subscription$zone$subscription$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { Accept: "application/json" }; @@ -67318,7 +67315,7 @@ export class Client { * Updates zone subscriptions, either plan or add-ons. */ public async zone$subscription$update$zone$subscription(params: Params$zone$subscription$update$zone$subscription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67335,7 +67332,7 @@ export class Client { * Create a zone subscription, either plan or add-ons. */ public async zone$subscription$create$zone$subscription(params: Params$zone$subscription$create$zone$subscription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67352,7 +67349,7 @@ export class Client { * Fetch a single configured load balancer. */ public async load$balancers$load$balancer$details(params: Params$load$balancers$load$balancer$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -67367,7 +67364,7 @@ export class Client { * Update a configured load balancer. */ public async load$balancers$update$load$balancer(params: Params$load$balancers$update$load$balancer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67384,7 +67381,7 @@ export class Client { * Delete a configured load balancer. */ public async load$balancers$delete$load$balancer(params: Params$load$balancers$delete$load$balancer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -67399,7 +67396,7 @@ export class Client { * Apply changes to an existing load balancer, overwriting the supplied properties. */ public async load$balancers$patch$load$balancer(params: Params$load$balancers$patch$load$balancer, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67413,7 +67410,7 @@ export class Client { } /** Zone Details */ public async zones$0$get(params: Params$zones$0$get, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { Accept: "application/json" }; @@ -67428,7 +67425,7 @@ export class Client { * Deletes an existing zone. */ public async zones$0$delete(params: Params$zones$0$delete, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { Accept: "application/json" }; @@ -67443,7 +67440,7 @@ export class Client { * Edits a zone. Only one zone property can be changed at a time. */ public async zones$0$patch(params: Params$zones$0$patch, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67462,7 +67459,7 @@ export class Client { * Zones. */ public async put$zones$zone_id$activation_check(params: Params$put$zones$zone_id$activation_check, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/activation_check\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/activation_check`; const headers = { Accept: "application/json" }; @@ -67474,7 +67471,7 @@ export class Client { } /** Argo Analytics for a zone */ public async argo$analytics$for$zone$argo$analytics$for$a$zone(params: Params$argo$analytics$for$zone$argo$analytics$for$a$zone, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/analytics/latency\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/analytics/latency`; const headers = { Accept: "application/json" }; @@ -67490,7 +67487,7 @@ export class Client { } /** Argo Analytics for a zone at different PoPs */ public async argo$analytics$for$geolocation$argo$analytics$for$a$zone$at$different$po$ps(params: Params$argo$analytics$for$geolocation$argo$analytics$for$a$zone$at$different$po$ps, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/analytics/latency/colos\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/analytics/latency/colos`; const headers = { Accept: "application/json" }; @@ -67502,7 +67499,7 @@ export class Client { } /** Retrieve information about specific configuration properties */ public async api$shield$settings$retrieve$information$about$specific$configuration$properties(params: Params$api$shield$settings$retrieve$information$about$specific$configuration$properties, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration`; const headers = { Accept: "application/json" }; @@ -67518,7 +67515,7 @@ export class Client { } /** Set configuration properties */ public async api$shield$settings$set$configuration$properties(params: Params$api$shield$settings$set$configuration$properties, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67535,7 +67532,7 @@ export class Client { * Retrieve the most up to date view of discovered operations, rendered as OpenAPI schemas */ public async api$shield$api$discovery$retrieve$discovered$operations$on$a$zone$as$openapi(params: Params$api$shield$api$discovery$retrieve$discovered$operations$on$a$zone$as$openapi, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery`; const headers = { Accept: "application/json" }; @@ -67550,7 +67547,7 @@ export class Client { * Retrieve the most up to date view of discovered operations */ public async api$shield$api$discovery$retrieve$discovered$operations$on$a$zone(params: Params$api$shield$api$discovery$retrieve$discovered$operations$on$a$zone, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations`; const headers = { Accept: "application/json" }; @@ -67575,10 +67572,10 @@ export class Client { } /** * Patch discovered operations - * Update the \`state\` on one or more discovered operations + * Update the `state` on one or more discovered operations */ public async api$shield$api$patch$discovered$operations(params: Params$api$shield$api$patch$discovered$operations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67592,10 +67589,10 @@ export class Client { } /** * Patch discovered operation - * Update the \`state\` on a discovered operation + * Update the `state` on a discovered operation */ public async api$shield$api$patch$discovered$operation(params: Params$api$shield$api$patch$discovered$operation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67609,7 +67606,7 @@ export class Client { } /** Retrieve information about all operations on a zone */ public async api$shield$endpoint$management$retrieve$information$about$all$operations$on$a$zone(params: Params$api$shield$endpoint$management$retrieve$information$about$all$operations$on$a$zone, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations`; const headers = { Accept: "application/json" }; @@ -67635,7 +67632,7 @@ export class Client { * Add one or more operations to a zone. Endpoints can contain path variables. Host, method, endpoint will be normalized to a canoncial form when creating an operation and must be unique on the zone. Inserting an operation that matches an existing one will return the record of the already existing operation and update its last_updated date. */ public async api$shield$endpoint$management$add$operations$to$a$zone(params: Params$api$shield$endpoint$management$add$operations$to$a$zone, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67649,7 +67646,7 @@ export class Client { } /** Retrieve information about an operation */ public async api$shield$endpoint$management$retrieve$information$about$an$operation(params: Params$api$shield$endpoint$management$retrieve$information$about$an$operation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -67665,7 +67662,7 @@ export class Client { } /** Delete an operation */ public async api$shield$endpoint$management$delete$an$operation(params: Params$api$shield$endpoint$management$delete$an$operation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -67680,7 +67677,7 @@ export class Client { * Retrieves operation-level schema validation settings on the zone */ public async api$shield$schema$validation$retrieve$operation$level$settings(params: Params$api$shield$schema$validation$retrieve$operation$level$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}/schema_validation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}/schema_validation`; const headers = { Accept: "application/json" }; @@ -67695,7 +67692,7 @@ export class Client { * Updates operation-level schema validation settings on the zone */ public async api$shield$schema$validation$update$operation$level$settings(params: Params$api$shield$schema$validation$update$operation$level$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}/schema_validation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67712,7 +67709,7 @@ export class Client { * Updates multiple operation-level schema validation settings on the zone */ public async api$shield$schema$validation$update$multiple$operation$level$settings(params: Params$api$shield$schema$validation$update$multiple$operation$level$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/schema_validation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67726,7 +67723,7 @@ export class Client { } /** Retrieve operations and features as OpenAPI schemas */ public async api$shield$endpoint$management$retrieve$operations$and$features$as$open$api$schemas(params: Params$api$shield$endpoint$management$retrieve$operations$and$features$as$open$api$schemas, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/schemas\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/schemas`; const headers = { Accept: "application/json" }; @@ -67746,7 +67743,7 @@ export class Client { * Retrieves zone level schema validation settings currently set on the zone */ public async api$shield$schema$validation$retrieve$zone$level$settings(params: Params$api$shield$schema$validation$retrieve$zone$level$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { Accept: "application/json" }; @@ -67761,7 +67758,7 @@ export class Client { * Updates zone level schema validation settings on the zone */ public async api$shield$schema$validation$update$zone$level$settings(params: Params$api$shield$schema$validation$update$zone$level$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67778,7 +67775,7 @@ export class Client { * Updates zone level schema validation settings on the zone */ public async api$shield$schema$validation$patch$zone$level$settings(params: Params$api$shield$schema$validation$patch$zone$level$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67792,7 +67789,7 @@ export class Client { } /** Retrieve information about all schemas on a zone */ public async api$shield$schema$validation$retrieve$information$about$all$schemas(params: Params$api$shield$schema$validation$retrieve$information$about$all$schemas, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas`; const headers = { Accept: "application/json" }; @@ -67811,7 +67808,7 @@ export class Client { } /** Upload a schema to a zone */ public async api$shield$schema$validation$post$schema(params: Params$api$shield$schema$validation$post$schema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -67825,7 +67822,7 @@ export class Client { } /** Retrieve information about a specific schema on a zone */ public async api$shield$schema$validation$retrieve$information$about$specific$schema(params: Params$api$shield$schema$validation$retrieve$information$about$specific$schema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { Accept: "application/json" }; @@ -67841,7 +67838,7 @@ export class Client { } /** Delete a schema */ public async api$shield$schema$delete$a$schema(params: Params$api$shield$schema$delete$a$schema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { Accept: "application/json" }; @@ -67853,7 +67850,7 @@ export class Client { } /** Enable validation for a schema */ public async api$shield$schema$validation$enable$validation$for$a$schema(params: Params$api$shield$schema$validation$enable$validation$for$a$schema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67870,7 +67867,7 @@ export class Client { * Retrieves all operations from the schema. Operations that already exist in API Shield Endpoint Management will be returned as full operations. */ public async api$shield$schema$validation$extract$operations$from$schema(params: Params$api$shield$schema$validation$extract$operations$from$schema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}/operations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}/operations`; const headers = { Accept: "application/json" }; @@ -67892,7 +67889,7 @@ export class Client { } /** Get Argo Smart Routing setting */ public async argo$smart$routing$get$argo$smart$routing$setting(params: Params$argo$smart$routing$get$argo$smart$routing$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing`; const headers = { Accept: "application/json" }; @@ -67907,7 +67904,7 @@ export class Client { * Updates enablement of Argo Smart Routing. */ public async argo$smart$routing$patch$argo$smart$routing$setting(params: Params$argo$smart$routing$patch$argo$smart$routing$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67921,7 +67918,7 @@ export class Client { } /** Get Tiered Caching setting */ public async tiered$caching$get$tiered$caching$setting(params: Params$tiered$caching$get$tiered$caching$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching`; const headers = { Accept: "application/json" }; @@ -67936,7 +67933,7 @@ export class Client { * Updates enablement of Tiered Caching */ public async tiered$caching$patch$tiered$caching$setting(params: Params$tiered$caching$patch$tiered$caching$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67953,7 +67950,7 @@ export class Client { * Retrieve a zone's Bot Management Config */ public async bot$management$for$a$zone$get$config(params: Params$bot$management$for$a$zone$get$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/bot_management\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/bot_management`; const headers = { Accept: "application/json" }; @@ -67975,7 +67972,7 @@ export class Client { * See [Bot Plans](https://developers.cloudflare.com/bots/plans/) for more information on the different plans */ public async bot$management$for$a$zone$update$config(params: Params$bot$management$for$a$zone$update$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/bot_management\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/bot_management`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67992,7 +67989,7 @@ export class Client { * Increase cache lifetimes by automatically storing all cacheable files into Cloudflare's persistent object storage buckets. Requires Cache Reserve subscription. Note: using Tiered Cache with Cache Reserve is highly recommended to reduce Reserve operations costs. See the [developer docs](https://developers.cloudflare.com/cache/about/cache-reserve) for more information. */ public async zone$cache$settings$get$cache$reserve$setting(params: Params$zone$cache$settings$get$cache$reserve$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve`; const headers = { Accept: "application/json" }; @@ -68007,7 +68004,7 @@ export class Client { * Increase cache lifetimes by automatically storing all cacheable files into Cloudflare's persistent object storage buckets. Requires Cache Reserve subscription. Note: using Tiered Cache with Cache Reserve is highly recommended to reduce Reserve operations costs. See the [developer docs](https://developers.cloudflare.com/cache/about/cache-reserve) for more information. */ public async zone$cache$settings$change$cache$reserve$setting(params: Params$zone$cache$settings$change$cache$reserve$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68024,7 +68021,7 @@ export class Client { * You can use Cache Reserve Clear to clear your Cache Reserve, but you must first disable Cache Reserve. In most cases, this will be accomplished within 24 hours. You cannot re-enable Cache Reserve while this process is ongoing. Keep in mind that you cannot undo or cancel this operation. */ public async zone$cache$settings$get$cache$reserve$clear(params: Params$zone$cache$settings$get$cache$reserve$clear, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear`; const headers = { Accept: "application/json" }; @@ -68039,7 +68036,7 @@ export class Client { * You can use Cache Reserve Clear to clear your Cache Reserve, but you must first disable Cache Reserve. In most cases, this will be accomplished within 24 hours. You cannot re-enable Cache Reserve while this process is ongoing. Keep in mind that you cannot undo or cancel this operation. */ public async zone$cache$settings$start$cache$reserve$clear(params: Params$zone$cache$settings$start$cache$reserve$clear, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68056,7 +68053,7 @@ export class Client { * Instructs Cloudflare to use Post-Quantum (PQ) key agreement algorithms when connecting to your origin. Preferred instructs Cloudflare to opportunistically send a Post-Quantum keyshare in the first message to the origin (for fastest connections when the origin supports and prefers PQ), supported means that PQ algorithms are advertised but only used when requested by the origin, and off means that PQ algorithms are not advertised */ public async zone$cache$settings$get$origin$post$quantum$encryption$setting(params: Params$zone$cache$settings$get$origin$post$quantum$encryption$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption`; const headers = { Accept: "application/json" }; @@ -68071,7 +68068,7 @@ export class Client { * Instructs Cloudflare to use Post-Quantum (PQ) key agreement algorithms when connecting to your origin. Preferred instructs Cloudflare to opportunistically send a Post-Quantum keyshare in the first message to the origin (for fastest connections when the origin supports and prefers PQ), supported means that PQ algorithms are advertised but only used when requested by the origin, and off means that PQ algorithms are not advertised */ public async zone$cache$settings$change$origin$post$quantum$encryption$setting(params: Params$zone$cache$settings$change$origin$post$quantum$encryption$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68088,7 +68085,7 @@ export class Client { * Instructs Cloudflare to check a regional hub data center on the way to your upper tier. This can help improve performance for smart and custom tiered cache topologies. */ public async zone$cache$settings$get$regional$tiered$cache$setting(params: Params$zone$cache$settings$get$regional$tiered$cache$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache`; const headers = { Accept: "application/json" }; @@ -68103,7 +68100,7 @@ export class Client { * Instructs Cloudflare to check a regional hub data center on the way to your upper tier. This can help improve performance for smart and custom tiered cache topologies. */ public async zone$cache$settings$change$regional$tiered$cache$setting(params: Params$zone$cache$settings$change$regional$tiered$cache$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68117,7 +68114,7 @@ export class Client { } /** Get Smart Tiered Cache setting */ public async smart$tiered$cache$get$smart$tiered$cache$setting(params: Params$smart$tiered$cache$get$smart$tiered$cache$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { Accept: "application/json" }; @@ -68132,7 +68129,7 @@ export class Client { * Remvoves enablement of Smart Tiered Cache */ public async smart$tiered$cache$delete$smart$tiered$cache$setting(params: Params$smart$tiered$cache$delete$smart$tiered$cache$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { Accept: "application/json" }; @@ -68147,7 +68144,7 @@ export class Client { * Updates enablement of Tiered Cache */ public async smart$tiered$cache$patch$smart$tiered$cache$setting(params: Params$smart$tiered$cache$patch$smart$tiered$cache$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68164,7 +68161,7 @@ export class Client { * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ public async zone$cache$settings$get$variants$setting(params: Params$zone$cache$settings$get$variants$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { Accept: "application/json" }; @@ -68179,7 +68176,7 @@ export class Client { * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ public async zone$cache$settings$delete$variants$setting(params: Params$zone$cache$settings$delete$variants$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { Accept: "application/json" }; @@ -68194,7 +68191,7 @@ export class Client { * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ public async zone$cache$settings$change$variants$setting(params: Params$zone$cache$settings$change$variants$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68211,7 +68208,7 @@ export class Client { * Get metadata for account-level custom nameservers on a zone. */ public async account$level$custom$nameservers$usage$for$a$zone$get$account$custom$nameserver$related$zone$metadata(params: Params$account$level$custom$nameservers$usage$for$a$zone$get$account$custom$nameserver$related$zone$metadata, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/custom_ns\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/custom_ns`; const headers = { Accept: "application/json" }; @@ -68228,7 +68225,7 @@ export class Client { * If you would like new zones in the account to use account custom nameservers by default, use PUT /accounts/:identifier to set the account setting use_account_custom_ns_by_default to true. */ public async account$level$custom$nameservers$usage$for$a$zone$set$account$custom$nameserver$related$zone$metadata(params: Params$account$level$custom$nameservers$usage$for$a$zone$set$account$custom$nameserver$related$zone$metadata, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/custom_ns\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/custom_ns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68245,7 +68242,7 @@ export class Client { * List, search, sort, and filter a zones' DNS records. */ public async dns$records$for$a$zone$list$dns$records(params: Params$dns$records$for$a$zone$list$dns$records, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records`; const headers = { Accept: "application/json" }; @@ -68294,7 +68291,7 @@ export class Client { * characters were used when creating the record. */ public async dns$records$for$a$zone$create$dns$record(params: Params$dns$records$for$a$zone$create$dns$record, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68308,7 +68305,7 @@ export class Client { } /** DNS Record Details */ public async dns$records$for$a$zone$dns$record$details(params: Params$dns$records$for$a$zone$dns$record$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { Accept: "application/json" }; @@ -68328,7 +68325,7 @@ export class Client { * characters were used when creating the record. */ public async dns$records$for$a$zone$update$dns$record(params: Params$dns$records$for$a$zone$update$dns$record, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68342,7 +68339,7 @@ export class Client { } /** Delete DNS Record */ public async dns$records$for$a$zone$delete$dns$record(params: Params$dns$records$for$a$zone$delete$dns$record, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { Accept: "application/json" }; @@ -68362,7 +68359,7 @@ export class Client { * characters were used when creating the record. */ public async dns$records$for$a$zone$patch$dns$record(params: Params$dns$records$for$a$zone$patch$dns$record, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68381,7 +68378,7 @@ export class Client { * See [the documentation](https://developers.cloudflare.com/dns/manage-dns-records/how-to/import-and-export/ "Import and export records") for more information. */ public async dns$records$for$a$zone$export$dns$records(params: Params$dns$records$for$a$zone$export$dns$records, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/export\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/export`; const headers = { Accept: "text/plain" }; @@ -68398,7 +68395,7 @@ export class Client { * See [the documentation](https://developers.cloudflare.com/dns/manage-dns-records/how-to/import-and-export/ "Import and export records") for more information. */ public async dns$records$for$a$zone$import$dns$records(params: Params$dns$records$for$a$zone$import$dns$records, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/import\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/import`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -68415,7 +68412,7 @@ export class Client { * Scan for common DNS records on your domain and automatically add them to your zone. Useful if you haven't updated your nameservers yet. */ public async dns$records$for$a$zone$scan$dns$records(params: Params$dns$records$for$a$zone$scan$dns$records, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/scan\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/scan`; const headers = { Accept: "application/json" }; @@ -68430,7 +68427,7 @@ export class Client { * Details about DNSSEC status and configuration. */ public async dnssec$dnssec$details(params: Params$dnssec$dnssec$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { Accept: "application/json" }; @@ -68445,7 +68442,7 @@ export class Client { * Delete DNSSEC. */ public async dnssec$delete$dnssec$records(params: Params$dnssec$delete$dnssec$records, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { Accept: "application/json" }; @@ -68460,7 +68457,7 @@ export class Client { * Enable or disable DNSSEC. */ public async dnssec$edit$dnssec$status(params: Params$dnssec$edit$dnssec$status, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68477,7 +68474,7 @@ export class Client { * Fetches IP Access rules of a zone. You can filter the results using several optional parameters. */ public async ip$access$rules$for$a$zone$list$ip$access$rules(params: Params$ip$access$rules$for$a$zone$list$ip$access$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -68503,7 +68500,7 @@ export class Client { * Note: To create an IP Access rule that applies to multiple zones, refer to [IP Access rules for a user](#ip-access-rules-for-a-user) or [IP Access rules for an account](#ip-access-rules-for-an-account) as appropriate. */ public async ip$access$rules$for$a$zone$create$an$ip$access$rule(params: Params$ip$access$rules$for$a$zone$create$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68519,10 +68516,10 @@ export class Client { * Delete an IP Access rule * Deletes an IP Access rule defined at the zone level. * - * Optionally, you can use the \`cascade\` property to specify that you wish to delete similar rules in other zones managed by the same zone owner. + * Optionally, you can use the `cascade` property to specify that you wish to delete similar rules in other zones managed by the same zone owner. */ public async ip$access$rules$for$a$zone$delete$an$ip$access$rule(params: Params$ip$access$rules$for$a$zone$delete$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68536,10 +68533,10 @@ export class Client { } /** * Update an IP Access rule - * Updates an IP Access rule defined at the zone level. You can only update the rule action (\`mode\` parameter) and notes. + * Updates an IP Access rule defined at the zone level. You can only update the rule action (`mode` parameter) and notes. */ public async ip$access$rules$for$a$zone$update$an$ip$access$rule(params: Params$ip$access$rules$for$a$zone$update$an$ip$access$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68558,7 +68555,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$rule$groups$list$waf$rule$groups(params: Params$waf$rule$groups$list$waf$rule$groups, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups`; const headers = { Accept: "application/json" }; @@ -68586,7 +68583,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$rule$groups$get$a$waf$rule$group(params: Params$waf$rule$groups$get$a$waf$rule$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups/\${encodeURIComponent(params.parameter.group_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups/${encodeURIComponent(params.parameter.group_id)}`; const headers = { Accept: "application/json" }; @@ -68598,12 +68595,12 @@ export class Client { } /** * Update a WAF rule group - * Updates a WAF rule group. You can update the state (\`mode\` parameter) of a rule group. + * Updates a WAF rule group. You can update the state (`mode` parameter) of a rule group. * * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$rule$groups$update$a$waf$rule$group(params: Params$waf$rule$groups$update$a$waf$rule$group, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups/\${encodeURIComponent(params.parameter.group_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups/${encodeURIComponent(params.parameter.group_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68622,7 +68619,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$rules$list$waf$rules(params: Params$waf$rules$list$waf$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules`; const headers = { Accept: "application/json" }; @@ -68651,7 +68648,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$rules$get$a$waf$rule(params: Params$waf$rules$get$a$waf$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -68668,7 +68665,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$rules$update$a$waf$rule(params: Params$waf$rules$update$a$waf$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68685,7 +68682,7 @@ export class Client { * Retrieve whether the zone is subject to a zone hold, and metadata about the hold. */ public async zones$0$hold$get(params: Params$zones$0$hold$get, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68700,7 +68697,7 @@ export class Client { * Enforce a zone hold on the zone, blocking the creation and activation of zones with this zone's hostname. */ public async zones$0$hold$post(params: Params$zones$0$hold$post, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68720,7 +68717,7 @@ export class Client { * creation and activation of zones with this zone's hostname. */ public async zones$0$hold$delete(params: Params$zones$0$hold$delete, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68739,7 +68736,7 @@ export class Client { * Lists all fields available for a dataset. The response result is an object with key-value pairs, where keys are field names, and values are descriptions. */ public async get$zones$zone_identifier$logpush$datasets$dataset$fields(params: Params$get$zones$zone_identifier$logpush$datasets$dataset$fields, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/fields\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/fields`; const headers = { Accept: "application/json" }; @@ -68754,7 +68751,7 @@ export class Client { * Lists Logpush jobs for a zone for a dataset. */ public async get$zones$zone_identifier$logpush$datasets$dataset$jobs(params: Params$get$zones$zone_identifier$logpush$datasets$dataset$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/jobs\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/jobs`; const headers = { Accept: "application/json" }; @@ -68769,7 +68766,7 @@ export class Client { * Lists Instant Logs jobs for a zone. */ public async get$zones$zone_identifier$logpush$edge$jobs(params: Params$get$zones$zone_identifier$logpush$edge$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/edge\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/edge`; const headers = { Accept: "application/json" }; @@ -68784,7 +68781,7 @@ export class Client { * Creates a new Instant Logs job for a zone. */ public async post$zones$zone_identifier$logpush$edge$jobs(params: Params$post$zones$zone_identifier$logpush$edge$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/edge\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/edge`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68801,7 +68798,7 @@ export class Client { * Lists Logpush jobs for a zone. */ public async get$zones$zone_identifier$logpush$jobs(params: Params$get$zones$zone_identifier$logpush$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs`; const headers = { Accept: "application/json" }; @@ -68816,7 +68813,7 @@ export class Client { * Creates a new Logpush job for a zone. */ public async post$zones$zone_identifier$logpush$jobs(params: Params$post$zones$zone_identifier$logpush$jobs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68833,7 +68830,7 @@ export class Client { * Gets the details of a Logpush job. */ public async get$zones$zone_identifier$logpush$jobs$job_identifier(params: Params$get$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -68848,7 +68845,7 @@ export class Client { * Updates a Logpush job. */ public async put$zones$zone_identifier$logpush$jobs$job_identifier(params: Params$put$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68865,7 +68862,7 @@ export class Client { * Deletes a Logpush job. */ public async delete$zones$zone_identifier$logpush$jobs$job_identifier(params: Params$delete$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -68880,7 +68877,7 @@ export class Client { * Gets a new ownership challenge sent to your destination. */ public async post$zones$zone_identifier$logpush$ownership(params: Params$post$zones$zone_identifier$logpush$ownership, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68897,7 +68894,7 @@ export class Client { * Validates ownership challenge of the destination. */ public async post$zones$zone_identifier$logpush$ownership$validate(params: Params$post$zones$zone_identifier$logpush$ownership$validate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership/validate\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68914,7 +68911,7 @@ export class Client { * Checks if there is an existing job with a destination. */ public async post$zones$zone_identifier$logpush$validate$destination$exists(params: Params$post$zones$zone_identifier$logpush$validate$destination$exists, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/destination/exists\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/destination/exists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68931,7 +68928,7 @@ export class Client { * Validates logpull origin with logpull_options. */ public async post$zones$zone_identifier$logpush$validate$origin(params: Params$post$zones$zone_identifier$logpush$validate$origin, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/origin\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68948,7 +68945,7 @@ export class Client { * Fetches a list of all Managed Transforms. */ public async managed$transforms$list$managed$transforms(params: Params$managed$transforms$list$managed$transforms, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/managed_headers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/managed_headers`; const headers = { Accept: "application/json" }; @@ -68963,7 +68960,7 @@ export class Client { * Updates the status of one or more Managed Transforms. */ public async managed$transforms$update$status$of$managed$transforms(params: Params$managed$transforms$update$status$of$managed$transforms, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/managed_headers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/managed_headers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68980,7 +68977,7 @@ export class Client { * Fetches the Page Shield settings. */ public async page$shield$get$page$shield$settings(params: Params$page$shield$get$page$shield$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield`; const headers = { Accept: "application/json" }; @@ -68995,7 +68992,7 @@ export class Client { * Updates Page Shield settings. */ public async page$shield$update$page$shield$settings(params: Params$page$shield$update$page$shield$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69012,7 +69009,7 @@ export class Client { * Lists all connections detected by Page Shield. */ public async page$shield$list$page$shield$connections(params: Params$page$shield$list$page$shield$connections, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections`; const headers = { Accept: "application/json" }; @@ -69042,7 +69039,7 @@ export class Client { * Fetches a connection detected by Page Shield by connection ID. */ public async page$shield$get$a$page$shield$connection(params: Params$page$shield$get$a$page$shield$connection, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections/\${encodeURIComponent(params.parameter.connection_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections/${encodeURIComponent(params.parameter.connection_id)}`; const headers = { Accept: "application/json" }; @@ -69057,7 +69054,7 @@ export class Client { * Lists all Page Shield policies. */ public async page$shield$list$page$shield$policies(params: Params$page$shield$list$page$shield$policies, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies`; const headers = { Accept: "application/json" }; @@ -69072,7 +69069,7 @@ export class Client { * Create a Page Shield policy. */ public async page$shield$create$a$page$shield$policy(params: Params$page$shield$create$a$page$shield$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69089,7 +69086,7 @@ export class Client { * Fetches a Page Shield policy by ID. */ public async page$shield$get$a$page$shield$policy(params: Params$page$shield$get$a$page$shield$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -69104,7 +69101,7 @@ export class Client { * Update a Page Shield policy by ID. */ public async page$shield$update$a$page$shield$policy(params: Params$page$shield$update$a$page$shield$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69121,7 +69118,7 @@ export class Client { * Delete a Page Shield policy by ID. */ public async page$shield$delete$a$page$shield$policy(params: Params$page$shield$delete$a$page$shield$policy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -69134,7 +69131,7 @@ export class Client { * Lists all scripts detected by Page Shield. */ public async page$shield$list$page$shield$scripts(params: Params$page$shield$list$page$shield$scripts, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts`; const headers = { Accept: "application/json" }; @@ -69165,7 +69162,7 @@ export class Client { * Fetches a script detected by Page Shield by script ID. */ public async page$shield$get$a$page$shield$script(params: Params$page$shield$get$a$page$shield$script, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts/\${encodeURIComponent(params.parameter.script_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts/${encodeURIComponent(params.parameter.script_id)}`; const headers = { Accept: "application/json" }; @@ -69180,7 +69177,7 @@ export class Client { * Fetches Page Rules in a zone. */ public async page$rules$list$page$rules(params: Params$page$rules$list$page$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules`; const headers = { Accept: "application/json" }; @@ -69202,7 +69199,7 @@ export class Client { * Creates a new Page Rule. */ public async page$rules$create$a$page$rule(params: Params$page$rules$create$a$page$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69219,7 +69216,7 @@ export class Client { * Fetches the details of a Page Rule. */ public async page$rules$get$a$page$rule(params: Params$page$rules$get$a$page$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { Accept: "application/json" }; @@ -69234,7 +69231,7 @@ export class Client { * Replaces the configuration of an existing Page Rule. The configuration of the updated Page Rule will exactly match the data passed in the API request. */ public async page$rules$update$a$page$rule(params: Params$page$rules$update$a$page$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69251,7 +69248,7 @@ export class Client { * Deletes an existing Page Rule. */ public async page$rules$delete$a$page$rule(params: Params$page$rules$delete$a$page$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { Accept: "application/json" }; @@ -69266,7 +69263,7 @@ export class Client { * Updates one or more fields of an existing Page Rule. */ public async page$rules$edit$a$page$rule(params: Params$page$rules$edit$a$page$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69283,7 +69280,7 @@ export class Client { * Returns a list of settings (and their details) that Page Rules can apply to matching requests. */ public async available$page$rules$settings$list$available$page$rules$settings(params: Params$available$page$rules$settings$list$available$page$rules$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/settings`; const headers = { Accept: "application/json" }; @@ -69298,7 +69295,7 @@ export class Client { * Fetches all rulesets at the zone level. */ public async listZoneRulesets(params: Params$listZoneRulesets, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets`; const headers = { Accept: "application/json" }; @@ -69313,7 +69310,7 @@ export class Client { * Creates a ruleset at the zone level. */ public async createZoneRuleset(params: Params$createZoneRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69330,7 +69327,7 @@ export class Client { * Fetches the latest version of a zone ruleset. */ public async getZoneRuleset(params: Params$getZoneRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { Accept: "application/json" }; @@ -69345,7 +69342,7 @@ export class Client { * Updates a zone ruleset, creating a new version. */ public async updateZoneRuleset(params: Params$updateZoneRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69362,7 +69359,7 @@ export class Client { * Deletes all versions of an existing zone ruleset. */ public async deleteZoneRuleset(params: Params$deleteZoneRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -69375,7 +69372,7 @@ export class Client { * Adds a new rule to a zone ruleset. The rule will be added to the end of the existing list of rules in the ruleset by default. */ public async createZoneRulesetRule(params: Params$createZoneRulesetRule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69392,7 +69389,7 @@ export class Client { * Deletes an existing rule from a zone ruleset. */ public async deleteZoneRulesetRule(params: Params$deleteZoneRulesetRule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -69407,7 +69404,7 @@ export class Client { * Updates an existing rule in a zone ruleset. */ public async updateZoneRulesetRule(params: Params$updateZoneRulesetRule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69424,7 +69421,7 @@ export class Client { * Fetches the versions of a zone ruleset. */ public async listZoneRulesetVersions(params: Params$listZoneRulesetVersions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions`; const headers = { Accept: "application/json" }; @@ -69439,7 +69436,7 @@ export class Client { * Fetches a specific version of a zone ruleset. */ public async getZoneRulesetVersion(params: Params$getZoneRulesetVersion, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -69454,7 +69451,7 @@ export class Client { * Deletes an existing version of a zone ruleset. */ public async deleteZoneRulesetVersion(params: Params$deleteZoneRulesetVersion, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -69467,7 +69464,7 @@ export class Client { * Fetches the latest version of the zone entry point ruleset for a given phase. */ public async getZoneEntrypointRuleset(params: Params$getZoneEntrypointRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { Accept: "application/json" }; @@ -69482,7 +69479,7 @@ export class Client { * Updates a zone entry point ruleset, creating a new version. */ public async updateZoneEntrypointRuleset(params: Params$updateZoneEntrypointRuleset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69499,7 +69496,7 @@ export class Client { * Fetches the versions of a zone entry point ruleset. */ public async listZoneEntrypointRulesetVersions(params: Params$listZoneEntrypointRulesetVersions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions`; const headers = { Accept: "application/json" }; @@ -69514,7 +69511,7 @@ export class Client { * Fetches a specific version of a zone entry point ruleset. */ public async getZoneEntrypointRulesetVersion(params: Params$getZoneEntrypointRulesetVersion, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -69529,7 +69526,7 @@ export class Client { * Available settings for your user in relation to a zone. */ public async zone$settings$get$all$zone$settings(params: Params$zone$settings$get$all$zone$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings`; const headers = { Accept: "application/json" }; @@ -69544,7 +69541,7 @@ export class Client { * Edit settings for a zone. */ public async zone$settings$edit$zone$settings$info(params: Params$zone$settings$edit$zone$settings$info, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69561,7 +69558,7 @@ export class Client { * Gets 0-RTT session resumption setting. */ public async zone$settings$get$0$rtt$session$resumption$setting(params: Params$zone$settings$get$0$rtt$session$resumption$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt`; const headers = { Accept: "application/json" }; @@ -69576,7 +69573,7 @@ export class Client { * Changes the 0-RTT session resumption setting. */ public async zone$settings$change$0$rtt$session$resumption$setting(params: Params$zone$settings$change$0$rtt$session$resumption$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69593,7 +69590,7 @@ export class Client { * Advanced protection from Distributed Denial of Service (DDoS) attacks on your website. This is an uneditable value that is 'on' in the case of Business and Enterprise zones. */ public async zone$settings$get$advanced$ddos$setting(params: Params$zone$settings$get$advanced$ddos$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/advanced_ddos\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/advanced_ddos`; const headers = { Accept: "application/json" }; @@ -69608,7 +69605,7 @@ export class Client { * When enabled, Cloudflare serves limited copies of web pages available from the [Internet Archive's Wayback Machine](https://archive.org/web/) if your server is offline. Refer to [Always Online](https://developers.cloudflare.com/cache/about/always-online) for more information. */ public async zone$settings$get$always$online$setting(params: Params$zone$settings$get$always$online$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_online\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_online`; const headers = { Accept: "application/json" }; @@ -69623,7 +69620,7 @@ export class Client { * When enabled, Cloudflare serves limited copies of web pages available from the [Internet Archive's Wayback Machine](https://archive.org/web/) if your server is offline. Refer to [Always Online](https://developers.cloudflare.com/cache/about/always-online) for more information. */ public async zone$settings$change$always$online$setting(params: Params$zone$settings$change$always$online$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_online\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_online`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69640,7 +69637,7 @@ export class Client { * Reply to all requests for URLs that use "http" with a 301 redirect to the equivalent "https" URL. If you only want to redirect for a subset of requests, consider creating an "Always use HTTPS" page rule. */ public async zone$settings$get$always$use$https$setting(params: Params$zone$settings$get$always$use$https$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https`; const headers = { Accept: "application/json" }; @@ -69655,7 +69652,7 @@ export class Client { * Reply to all requests for URLs that use "http" with a 301 redirect to the equivalent "https" URL. If you only want to redirect for a subset of requests, consider creating an "Always use HTTPS" page rule. */ public async zone$settings$change$always$use$https$setting(params: Params$zone$settings$change$always$use$https$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69672,7 +69669,7 @@ export class Client { * Enable the Automatic HTTPS Rewrites feature for this zone. */ public async zone$settings$get$automatic$https$rewrites$setting(params: Params$zone$settings$get$automatic$https$rewrites$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites`; const headers = { Accept: "application/json" }; @@ -69687,7 +69684,7 @@ export class Client { * Enable the Automatic HTTPS Rewrites feature for this zone. */ public async zone$settings$change$automatic$https$rewrites$setting(params: Params$zone$settings$change$automatic$https$rewrites$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69706,7 +69703,7 @@ export class Client { * third-party fonts. */ public async zone$settings$get$automatic_platform_optimization$setting(params: Params$zone$settings$get$automatic_platform_optimization$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization`; const headers = { Accept: "application/json" }; @@ -69723,7 +69720,7 @@ export class Client { * third-party fonts. */ public async zone$settings$change$automatic_platform_optimization$setting(params: Params$zone$settings$change$automatic_platform_optimization$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69740,7 +69737,7 @@ export class Client { * When the client requesting an asset supports the Brotli compression algorithm, Cloudflare will serve a Brotli compressed version of the asset. */ public async zone$settings$get$brotli$setting(params: Params$zone$settings$get$brotli$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/brotli\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/brotli`; const headers = { Accept: "application/json" }; @@ -69755,7 +69752,7 @@ export class Client { * When the client requesting an asset supports the Brotli compression algorithm, Cloudflare will serve a Brotli compressed version of the asset. */ public async zone$settings$change$brotli$setting(params: Params$zone$settings$change$brotli$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/brotli\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/brotli`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69772,7 +69769,7 @@ export class Client { * Browser Cache TTL (in seconds) specifies how long Cloudflare-cached resources will remain on your visitors' computers. Cloudflare will honor any larger times specified by your server. (https://support.cloudflare.com/hc/en-us/articles/200168276). */ public async zone$settings$get$browser$cache$ttl$setting(params: Params$zone$settings$get$browser$cache$ttl$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl`; const headers = { Accept: "application/json" }; @@ -69787,7 +69784,7 @@ export class Client { * Browser Cache TTL (in seconds) specifies how long Cloudflare-cached resources will remain on your visitors' computers. Cloudflare will honor any larger times specified by your server. (https://support.cloudflare.com/hc/en-us/articles/200168276). */ public async zone$settings$change$browser$cache$ttl$setting(params: Params$zone$settings$change$browser$cache$ttl$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69804,7 +69801,7 @@ export class Client { * Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors). (https://support.cloudflare.com/hc/en-us/articles/200170086). */ public async zone$settings$get$browser$check$setting(params: Params$zone$settings$get$browser$check$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check`; const headers = { Accept: "application/json" }; @@ -69819,7 +69816,7 @@ export class Client { * Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors). (https://support.cloudflare.com/hc/en-us/articles/200170086). */ public async zone$settings$change$browser$check$setting(params: Params$zone$settings$change$browser$check$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69836,7 +69833,7 @@ export class Client { * Cache Level functions based off the setting level. The basic setting will cache most static resources (i.e., css, images, and JavaScript). The simplified setting will ignore the query string when delivering a cached resource. The aggressive setting will cache all static resources, including ones with a query string. (https://support.cloudflare.com/hc/en-us/articles/200168256). */ public async zone$settings$get$cache$level$setting(params: Params$zone$settings$get$cache$level$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level`; const headers = { Accept: "application/json" }; @@ -69851,7 +69848,7 @@ export class Client { * Cache Level functions based off the setting level. The basic setting will cache most static resources (i.e., css, images, and JavaScript). The simplified setting will ignore the query string when delivering a cached resource. The aggressive setting will cache all static resources, including ones with a query string. (https://support.cloudflare.com/hc/en-us/articles/200168256). */ public async zone$settings$change$cache$level$setting(params: Params$zone$settings$change$cache$level$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69868,7 +69865,7 @@ export class Client { * Specify how long a visitor is allowed access to your site after successfully completing a challenge (such as a CAPTCHA). After the TTL has expired the visitor will have to complete a new challenge. We recommend a 15 - 45 minute setting and will attempt to honor any setting above 45 minutes. (https://support.cloudflare.com/hc/en-us/articles/200170136). */ public async zone$settings$get$challenge$ttl$setting(params: Params$zone$settings$get$challenge$ttl$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl`; const headers = { Accept: "application/json" }; @@ -69883,7 +69880,7 @@ export class Client { * Specify how long a visitor is allowed access to your site after successfully completing a challenge (such as a CAPTCHA). After the TTL has expired the visitor will have to complete a new challenge. We recommend a 15 - 45 minute setting and will attempt to honor any setting above 45 minutes. (https://support.cloudflare.com/hc/en-us/articles/200170136). */ public async zone$settings$change$challenge$ttl$setting(params: Params$zone$settings$change$challenge$ttl$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69900,7 +69897,7 @@ export class Client { * Gets ciphers setting. */ public async zone$settings$get$ciphers$setting(params: Params$zone$settings$get$ciphers$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers`; const headers = { Accept: "application/json" }; @@ -69915,7 +69912,7 @@ export class Client { * Changes ciphers setting. */ public async zone$settings$change$ciphers$setting(params: Params$zone$settings$change$ciphers$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69932,7 +69929,7 @@ export class Client { * Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away. Once entered, development mode will last for 3 hours and then automatically toggle off. */ public async zone$settings$get$development$mode$setting(params: Params$zone$settings$get$development$mode$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode`; const headers = { Accept: "application/json" }; @@ -69947,7 +69944,7 @@ export class Client { * Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away. Once entered, development mode will last for 3 hours and then automatically toggle off. */ public async zone$settings$change$development$mode$setting(params: Params$zone$settings$change$development$mode$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69961,10 +69958,10 @@ export class Client { } /** * Get Early Hints setting - * When enabled, Cloudflare will attempt to speed up overall page loads by serving \`103\` responses with \`Link\` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. + * When enabled, Cloudflare will attempt to speed up overall page loads by serving `103` responses with `Link` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. */ public async zone$settings$get$early$hints$setting(params: Params$zone$settings$get$early$hints$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints`; const headers = { Accept: "application/json" }; @@ -69976,10 +69973,10 @@ export class Client { } /** * Change Early Hints setting - * When enabled, Cloudflare will attempt to speed up overall page loads by serving \`103\` responses with \`Link\` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. + * When enabled, Cloudflare will attempt to speed up overall page loads by serving `103` responses with `Link` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. */ public async zone$settings$change$early$hints$setting(params: Params$zone$settings$change$early$hints$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69996,7 +69993,7 @@ export class Client { * Encrypt email adresses on your web page from bots, while keeping them visible to humans. (https://support.cloudflare.com/hc/en-us/articles/200170016). */ public async zone$settings$get$email$obfuscation$setting(params: Params$zone$settings$get$email$obfuscation$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation`; const headers = { Accept: "application/json" }; @@ -70011,7 +70008,7 @@ export class Client { * Encrypt email adresses on your web page from bots, while keeping them visible to humans. (https://support.cloudflare.com/hc/en-us/articles/200170016). */ public async zone$settings$change$email$obfuscation$setting(params: Params$zone$settings$change$email$obfuscation$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70029,7 +70026,7 @@ export class Client { * boost performance, and enhance user privacy. Refer to the Cloudflare Fonts documentation for more information. */ public async zone$settings$get$fonts$setting(params: Params$zone$settings$get$fonts$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/fonts\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/fonts`; const headers = { Accept: "application/json" }; @@ -70045,7 +70042,7 @@ export class Client { * boost performance, and enhance user privacy. Refer to the Cloudflare Fonts documentation for more information. */ public async zone$settings$change$fonts$setting(params: Params$zone$settings$change$fonts$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/fonts\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/fonts`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70062,7 +70059,7 @@ export class Client { * Gets HTTP/2 Edge Prioritization setting. */ public async zone$settings$get$h2_prioritization$setting(params: Params$zone$settings$get$h2_prioritization$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization`; const headers = { Accept: "application/json" }; @@ -70077,7 +70074,7 @@ export class Client { * Gets HTTP/2 Edge Prioritization setting. */ public async zone$settings$change$h2_prioritization$setting(params: Params$zone$settings$change$h2_prioritization$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70094,7 +70091,7 @@ export class Client { * When enabled, the Hotlink Protection option ensures that other sites cannot suck up your bandwidth by building pages that use images hosted on your site. Anytime a request for an image on your site hits Cloudflare, we check to ensure that it's not another site requesting them. People will still be able to download and view images from your page, but other sites won't be able to steal them for use on their own pages. (https://support.cloudflare.com/hc/en-us/articles/200170026). */ public async zone$settings$get$hotlink$protection$setting(params: Params$zone$settings$get$hotlink$protection$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection`; const headers = { Accept: "application/json" }; @@ -70109,7 +70106,7 @@ export class Client { * When enabled, the Hotlink Protection option ensures that other sites cannot suck up your bandwidth by building pages that use images hosted on your site. Anytime a request for an image on your site hits Cloudflare, we check to ensure that it's not another site requesting them. People will still be able to download and view images from your page, but other sites won't be able to steal them for use on their own pages. (https://support.cloudflare.com/hc/en-us/articles/200170026). */ public async zone$settings$change$hotlink$protection$setting(params: Params$zone$settings$change$hotlink$protection$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70126,7 +70123,7 @@ export class Client { * Value of the HTTP2 setting. */ public async zone$settings$get$h$t$t$p$2$setting(params: Params$zone$settings$get$h$t$t$p$2$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http2\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http2`; const headers = { Accept: "application/json" }; @@ -70141,7 +70138,7 @@ export class Client { * Value of the HTTP2 setting. */ public async zone$settings$change$h$t$t$p$2$setting(params: Params$zone$settings$change$h$t$t$p$2$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http2\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http2`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70158,7 +70155,7 @@ export class Client { * Value of the HTTP3 setting. */ public async zone$settings$get$h$t$t$p$3$setting(params: Params$zone$settings$get$h$t$t$p$3$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http3\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http3`; const headers = { Accept: "application/json" }; @@ -70173,7 +70170,7 @@ export class Client { * Value of the HTTP3 setting. */ public async zone$settings$change$h$t$t$p$3$setting(params: Params$zone$settings$change$h$t$t$p$3$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http3\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http3`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70193,7 +70190,7 @@ export class Client { * for more information. */ public async zone$settings$get$image_resizing$setting(params: Params$zone$settings$get$image_resizing$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing`; const headers = { Accept: "application/json" }; @@ -70211,7 +70208,7 @@ export class Client { * for more information. */ public async zone$settings$change$image_resizing$setting(params: Params$zone$settings$change$image_resizing$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70228,7 +70225,7 @@ export class Client { * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and pass the country code to you. (https://support.cloudflare.com/hc/en-us/articles/200168236). */ public async zone$settings$get$ip$geolocation$setting(params: Params$zone$settings$get$ip$geolocation$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation`; const headers = { Accept: "application/json" }; @@ -70243,7 +70240,7 @@ export class Client { * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and pass the country code to you. (https://support.cloudflare.com/hc/en-us/articles/200168236). */ public async zone$settings$change$ip$geolocation$setting(params: Params$zone$settings$change$ip$geolocation$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70260,7 +70257,7 @@ export class Client { * Enable IPv6 on all subdomains that are Cloudflare enabled. (https://support.cloudflare.com/hc/en-us/articles/200168586). */ public async zone$settings$get$i$pv6$setting(params: Params$zone$settings$get$i$pv6$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6`; const headers = { Accept: "application/json" }; @@ -70275,7 +70272,7 @@ export class Client { * Enable IPv6 on all subdomains that are Cloudflare enabled. (https://support.cloudflare.com/hc/en-us/articles/200168586). */ public async zone$settings$change$i$pv6$setting(params: Params$zone$settings$change$i$pv6$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70292,7 +70289,7 @@ export class Client { * Gets Minimum TLS Version setting. */ public async zone$settings$get$minimum$tls$version$setting(params: Params$zone$settings$get$minimum$tls$version$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version`; const headers = { Accept: "application/json" }; @@ -70307,7 +70304,7 @@ export class Client { * Changes Minimum TLS Version setting. */ public async zone$settings$change$minimum$tls$version$setting(params: Params$zone$settings$change$minimum$tls$version$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70324,7 +70321,7 @@ export class Client { * Automatically minify certain assets for your website. Refer to [Using Cloudflare Auto Minify](https://support.cloudflare.com/hc/en-us/articles/200168196) for more information. */ public async zone$settings$get$minify$setting(params: Params$zone$settings$get$minify$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/minify\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/minify`; const headers = { Accept: "application/json" }; @@ -70339,7 +70336,7 @@ export class Client { * Automatically minify certain assets for your website. Refer to [Using Cloudflare Auto Minify](https://support.cloudflare.com/hc/en-us/articles/200168196) for more information. */ public async zone$settings$change$minify$setting(params: Params$zone$settings$change$minify$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/minify\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/minify`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70358,7 +70355,7 @@ export class Client { * for more information. */ public async zone$settings$get$mirage$setting(params: Params$zone$settings$get$mirage$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mirage\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mirage`; const headers = { Accept: "application/json" }; @@ -70373,7 +70370,7 @@ export class Client { * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/mirage2-solving-mobile-speed) for more information. */ public async zone$settings$change$web$mirage$setting(params: Params$zone$settings$change$web$mirage$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mirage\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mirage`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70390,7 +70387,7 @@ export class Client { * Automatically redirect visitors on mobile devices to a mobile-optimized subdomain. Refer to [Understanding Cloudflare Mobile Redirect](https://support.cloudflare.com/hc/articles/200168336) for more information. */ public async zone$settings$get$mobile$redirect$setting(params: Params$zone$settings$get$mobile$redirect$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect`; const headers = { Accept: "application/json" }; @@ -70405,7 +70402,7 @@ export class Client { * Automatically redirect visitors on mobile devices to a mobile-optimized subdomain. Refer to [Understanding Cloudflare Mobile Redirect](https://support.cloudflare.com/hc/articles/200168336) for more information. */ public async zone$settings$change$mobile$redirect$setting(params: Params$zone$settings$change$mobile$redirect$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70422,7 +70419,7 @@ export class Client { * Enable Network Error Logging reporting on your zone. (Beta) */ public async zone$settings$get$nel$setting(params: Params$zone$settings$get$nel$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/nel\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/nel`; const headers = { Accept: "application/json" }; @@ -70437,7 +70434,7 @@ export class Client { * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/nel-solving-mobile-speed) for more information. */ public async zone$settings$change$nel$setting(params: Params$zone$settings$change$nel$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/nel\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/nel`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70454,7 +70451,7 @@ export class Client { * Gets Opportunistic Encryption setting. */ public async zone$settings$get$opportunistic$encryption$setting(params: Params$zone$settings$get$opportunistic$encryption$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption`; const headers = { Accept: "application/json" }; @@ -70469,7 +70466,7 @@ export class Client { * Changes Opportunistic Encryption setting. */ public async zone$settings$change$opportunistic$encryption$setting(params: Params$zone$settings$change$opportunistic$encryption$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70486,7 +70483,7 @@ export class Client { * Add an Alt-Svc header to all legitimate requests from Tor, allowing the connection to use our onion services instead of exit nodes. */ public async zone$settings$get$opportunistic$onion$setting(params: Params$zone$settings$get$opportunistic$onion$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion`; const headers = { Accept: "application/json" }; @@ -70501,7 +70498,7 @@ export class Client { * Add an Alt-Svc header to all legitimate requests from Tor, allowing the connection to use our onion services instead of exit nodes. */ public async zone$settings$change$opportunistic$onion$setting(params: Params$zone$settings$change$opportunistic$onion$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70519,7 +70516,7 @@ export class Client { * zones also on Cloudflare. */ public async zone$settings$get$orange_to_orange$setting(params: Params$zone$settings$get$orange_to_orange$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange`; const headers = { Accept: "application/json" }; @@ -70535,7 +70532,7 @@ export class Client { * zones also on Cloudflare. */ public async zone$settings$change$orange_to_orange$setting(params: Params$zone$settings$change$orange_to_orange$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70552,7 +70549,7 @@ export class Client { * Cloudflare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default Cloudflare error page. This does not apply to 522 errors and is limited to Enterprise Zones. */ public async zone$settings$get$enable$error$pages$on$setting(params: Params$zone$settings$get$enable$error$pages$on$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru`; const headers = { Accept: "application/json" }; @@ -70567,7 +70564,7 @@ export class Client { * Cloudflare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default Cloudflare error page. This does not apply to 522 errors and is limited to Enterprise Zones. */ public async zone$settings$change$enable$error$pages$on$setting(params: Params$zone$settings$change$enable$error$pages$on$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70586,7 +70583,7 @@ export class Client { * for more information. */ public async zone$settings$get$polish$setting(params: Params$zone$settings$get$polish$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/polish\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/polish`; const headers = { Accept: "application/json" }; @@ -70601,7 +70598,7 @@ export class Client { * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/polish-solving-mobile-speed) for more information. */ public async zone$settings$change$polish$setting(params: Params$zone$settings$change$polish$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/polish\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/polish`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70618,7 +70615,7 @@ export class Client { * Cloudflare will prefetch any URLs that are included in the response headers. This is limited to Enterprise Zones. */ public async zone$settings$get$prefetch$preload$setting(params: Params$zone$settings$get$prefetch$preload$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload`; const headers = { Accept: "application/json" }; @@ -70633,7 +70630,7 @@ export class Client { * Cloudflare will prefetch any URLs that are included in the response headers. This is limited to Enterprise Zones. */ public async zone$settings$change$prefetch$preload$setting(params: Params$zone$settings$change$prefetch$preload$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70650,7 +70647,7 @@ export class Client { * Maximum time between two read operations from origin. */ public async zone$settings$get$proxy_read_timeout$setting(params: Params$zone$settings$get$proxy_read_timeout$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout`; const headers = { Accept: "application/json" }; @@ -70665,7 +70662,7 @@ export class Client { * Maximum time between two read operations from origin. */ public async zone$settings$change$proxy_read_timeout$setting(params: Params$zone$settings$change$proxy_read_timeout$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70682,7 +70679,7 @@ export class Client { * Value of the Pseudo IPv4 setting. */ public async zone$settings$get$pseudo$i$pv4$setting(params: Params$zone$settings$get$pseudo$i$pv4$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4`; const headers = { Accept: "application/json" }; @@ -70697,7 +70694,7 @@ export class Client { * Value of the Pseudo IPv4 setting. */ public async zone$settings$change$pseudo$i$pv4$setting(params: Params$zone$settings$change$pseudo$i$pv4$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70714,7 +70711,7 @@ export class Client { * Enables or disables buffering of responses from the proxied server. Cloudflare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks. By default, the proxied server streams directly and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ public async zone$settings$get$response$buffering$setting(params: Params$zone$settings$get$response$buffering$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering`; const headers = { Accept: "application/json" }; @@ -70729,7 +70726,7 @@ export class Client { * Enables or disables buffering of responses from the proxied server. Cloudflare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks. By default, the proxied server streams directly and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ public async zone$settings$change$response$buffering$setting(params: Params$zone$settings$change$response$buffering$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70747,7 +70744,7 @@ export class Client { * that prioritises rendering your content while loading your site's * Javascript asynchronously. Turning on Rocket Loader will immediately * improve a web page's rendering time sometimes measured as Time to First - * Paint (TTFP), and also the \`window.onload\` time (assuming there is + * Paint (TTFP), and also the `window.onload` time (assuming there is * JavaScript on the page). This can have a positive impact on your Google * search ranking. When turned on, Rocket Loader will automatically defer * the loading of all Javascript referenced in your HTML, with no @@ -70756,7 +70753,7 @@ export class Client { * for more information. */ public async zone$settings$get$rocket_loader$setting(params: Params$zone$settings$get$rocket_loader$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader`; const headers = { Accept: "application/json" }; @@ -70772,7 +70769,7 @@ export class Client { * that prioritises rendering your content while loading your site's * Javascript asynchronously. Turning on Rocket Loader will immediately * improve a web page's rendering time sometimes measured as Time to First - * Paint (TTFP), and also the \`window.onload\` time (assuming there is + * Paint (TTFP), and also the `window.onload` time (assuming there is * JavaScript on the page). This can have a positive impact on your Google * search ranking. When turned on, Rocket Loader will automatically defer * the loading of all Javascript referenced in your HTML, with no @@ -70781,7 +70778,7 @@ export class Client { * for more information. */ public async zone$settings$change$rocket_loader$setting(params: Params$zone$settings$change$rocket_loader$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70798,7 +70795,7 @@ export class Client { * Cloudflare security header for a zone. */ public async zone$settings$get$security$header$$$hsts$$setting(params: Params$zone$settings$get$security$header$$$hsts$$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_header\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_header`; const headers = { Accept: "application/json" }; @@ -70813,7 +70810,7 @@ export class Client { * Cloudflare security header for a zone. */ public async zone$settings$change$security$header$$$hsts$$setting(params: Params$zone$settings$change$security$header$$$hsts$$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_header\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_header`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70830,7 +70827,7 @@ export class Client { * Choose the appropriate security profile for your website, which will automatically adjust each of the security settings. If you choose to customize an individual security setting, the profile will become Custom. (https://support.cloudflare.com/hc/en-us/articles/200170056). */ public async zone$settings$get$security$level$setting(params: Params$zone$settings$get$security$level$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_level\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_level`; const headers = { Accept: "application/json" }; @@ -70845,7 +70842,7 @@ export class Client { * Choose the appropriate security profile for your website, which will automatically adjust each of the security settings. If you choose to customize an individual security setting, the profile will become Custom. (https://support.cloudflare.com/hc/en-us/articles/200170056). */ public async zone$settings$change$security$level$setting(params: Params$zone$settings$change$security$level$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_level\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_level`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70862,7 +70859,7 @@ export class Client { * If there is sensitive content on your website that you want visible to real visitors, but that you want to hide from suspicious visitors, all you have to do is wrap the content with Cloudflare SSE tags. Wrap any content that you want to be excluded from suspicious visitors in the following SSE tags: . For example: Bad visitors won't see my phone number, 555-555-5555 . Note: SSE only will work with HTML. If you have HTML minification enabled, you won't see the SSE tags in your HTML source when it's served through Cloudflare. SSE will still function in this case, as Cloudflare's HTML minification and SSE functionality occur on-the-fly as the resource moves through our network to the visitor's computer. (https://support.cloudflare.com/hc/en-us/articles/200170036). */ public async zone$settings$get$server$side$exclude$setting(params: Params$zone$settings$get$server$side$exclude$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude`; const headers = { Accept: "application/json" }; @@ -70877,7 +70874,7 @@ export class Client { * If there is sensitive content on your website that you want visible to real visitors, but that you want to hide from suspicious visitors, all you have to do is wrap the content with Cloudflare SSE tags. Wrap any content that you want to be excluded from suspicious visitors in the following SSE tags: . For example: Bad visitors won't see my phone number, 555-555-5555 . Note: SSE only will work with HTML. If you have HTML minification enabled, you won't see the SSE tags in your HTML source when it's served through Cloudflare. SSE will still function in this case, as Cloudflare's HTML minification and SSE functionality occur on-the-fly as the resource moves through our network to the visitor's computer. (https://support.cloudflare.com/hc/en-us/articles/200170036). */ public async zone$settings$change$server$side$exclude$setting(params: Params$zone$settings$change$server$side$exclude$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70894,7 +70891,7 @@ export class Client { * Cloudflare will treat files with the same query strings as the same file in cache, regardless of the order of the query strings. This is limited to Enterprise Zones. */ public async zone$settings$get$enable$query$string$sort$setting(params: Params$zone$settings$get$enable$query$string$sort$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache`; const headers = { Accept: "application/json" }; @@ -70909,7 +70906,7 @@ export class Client { * Cloudflare will treat files with the same query strings as the same file in cache, regardless of the order of the query strings. This is limited to Enterprise Zones. */ public async zone$settings$change$enable$query$string$sort$setting(params: Params$zone$settings$change$enable$query$string$sort$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70926,7 +70923,7 @@ export class Client { * SSL encrypts your visitor's connection and safeguards credit card numbers and other personal data to and from your website. SSL can take up to 5 minutes to fully activate. Requires Cloudflare active on your root domain or www domain. Off: no SSL between the visitor and Cloudflare, and no SSL between Cloudflare and your web server (all HTTP traffic). Flexible: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, but no SSL between Cloudflare and your web server. You don't need to have an SSL cert on your web server, but your vistors will still see the site as being HTTPS enabled. Full: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have your own SSL cert or self-signed cert at the very least. Full (Strict): SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have a valid SSL certificate installed on your web server. This certificate must be signed by a certificate authority, have an expiration date in the future, and respond for the request domain name (hostname). (https://support.cloudflare.com/hc/en-us/articles/200170416). */ public async zone$settings$get$ssl$setting(params: Params$zone$settings$get$ssl$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl`; const headers = { Accept: "application/json" }; @@ -70941,7 +70938,7 @@ export class Client { * SSL encrypts your visitor's connection and safeguards credit card numbers and other personal data to and from your website. SSL can take up to 5 minutes to fully activate. Requires Cloudflare active on your root domain or www domain. Off: no SSL between the visitor and Cloudflare, and no SSL between Cloudflare and your web server (all HTTP traffic). Flexible: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, but no SSL between Cloudflare and your web server. You don't need to have an SSL cert on your web server, but your vistors will still see the site as being HTTPS enabled. Full: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have your own SSL cert or self-signed cert at the very least. Full (Strict): SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have a valid SSL certificate installed on your web server. This certificate must be signed by a certificate authority, have an expiration date in the future, and respond for the request domain name (hostname). (https://support.cloudflare.com/hc/en-us/articles/200170416). */ public async zone$settings$change$ssl$setting(params: Params$zone$settings$change$ssl$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70960,7 +70957,7 @@ export class Client { * your origin servers support. */ public async zone$settings$get$ssl_recommender$setting(params: Params$zone$settings$get$ssl_recommender$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender`; const headers = { Accept: "application/json" }; @@ -70977,7 +70974,7 @@ export class Client { * your origin servers support. */ public async zone$settings$change$ssl_recommender$setting(params: Params$zone$settings$change$ssl_recommender$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70994,7 +70991,7 @@ export class Client { * Gets TLS 1.3 setting enabled for a zone. */ public async zone$settings$get$tls$1$$3$setting$enabled$for$a$zone(params: Params$zone$settings$get$tls$1$$3$setting$enabled$for$a$zone, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3`; const headers = { Accept: "application/json" }; @@ -71009,7 +71006,7 @@ export class Client { * Changes TLS 1.3 setting. */ public async zone$settings$change$tls$1$$3$setting(params: Params$zone$settings$change$tls$1$$3$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71026,7 +71023,7 @@ export class Client { * TLS Client Auth requires Cloudflare to connect to your origin server using a client certificate (Enterprise Only). */ public async zone$settings$get$tls$client$auth$setting(params: Params$zone$settings$get$tls$client$auth$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth`; const headers = { Accept: "application/json" }; @@ -71041,7 +71038,7 @@ export class Client { * TLS Client Auth requires Cloudflare to connect to your origin server using a client certificate (Enterprise Only). */ public async zone$settings$change$tls$client$auth$setting(params: Params$zone$settings$change$tls$client$auth$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71058,7 +71055,7 @@ export class Client { * Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin. This is limited to Enterprise Zones. */ public async zone$settings$get$true$client$ip$setting(params: Params$zone$settings$get$true$client$ip$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header`; const headers = { Accept: "application/json" }; @@ -71073,7 +71070,7 @@ export class Client { * Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin. This is limited to Enterprise Zones. */ public async zone$settings$change$true$client$ip$setting(params: Params$zone$settings$change$true$client$ip$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71090,7 +71087,7 @@ export class Client { * The WAF examines HTTP requests to your website. It inspects both GET and POST requests and applies rules to help filter out illegitimate traffic from legitimate website visitors. The Cloudflare WAF inspects website addresses or URLs to detect anything out of the ordinary. If the Cloudflare WAF determines suspicious user behavior, then the WAF will 'challenge' the web visitor with a page that asks them to submit a CAPTCHA successfully to continue their action. If the challenge is failed, the action will be stopped. What this means is that Cloudflare's WAF will block any traffic identified as illegitimate before it reaches your origin web server. (https://support.cloudflare.com/hc/en-us/articles/200172016). */ public async zone$settings$get$web$application$firewall$$$waf$$setting(params: Params$zone$settings$get$web$application$firewall$$$waf$$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/waf\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/waf`; const headers = { Accept: "application/json" }; @@ -71105,7 +71102,7 @@ export class Client { * The WAF examines HTTP requests to your website. It inspects both GET and POST requests and applies rules to help filter out illegitimate traffic from legitimate website visitors. The Cloudflare WAF inspects website addresses or URLs to detect anything out of the ordinary. If the Cloudflare WAF determines suspicious user behavior, then the WAF will 'challenge' the web visitor with a page that asks them to submit a CAPTCHA successfully to continue their action. If the challenge is failed, the action will be stopped. What this means is that Cloudflare's WAF will block any traffic identified as illegitimate before it reaches your origin web server. (https://support.cloudflare.com/hc/en-us/articles/200172016). */ public async zone$settings$change$web$application$firewall$$$waf$$setting(params: Params$zone$settings$change$web$application$firewall$$$waf$$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/waf\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/waf`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71122,7 +71119,7 @@ export class Client { * When the client requesting the image supports the WebP image codec, and WebP offers a performance advantage over the original image format, Cloudflare will serve a WebP version of the original image. */ public async zone$settings$get$web$p$setting(params: Params$zone$settings$get$web$p$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/webp\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/webp`; const headers = { Accept: "application/json" }; @@ -71137,7 +71134,7 @@ export class Client { * When the client requesting the image supports the WebP image codec, and WebP offers a performance advantage over the original image format, Cloudflare will serve a WebP version of the original image. */ public async zone$settings$change$web$p$setting(params: Params$zone$settings$change$web$p$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/webp\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/webp`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71154,7 +71151,7 @@ export class Client { * Gets Websockets setting. For more information about Websockets, please refer to [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ public async zone$settings$get$web$sockets$setting(params: Params$zone$settings$get$web$sockets$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/websockets\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/websockets`; const headers = { Accept: "application/json" }; @@ -71169,7 +71166,7 @@ export class Client { * Changes Websockets setting. For more information about Websockets, please refer to [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ public async zone$settings$change$web$sockets$setting(params: Params$zone$settings$change$web$sockets$setting, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/websockets\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/websockets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71186,7 +71183,7 @@ export class Client { * Gets latest Zaraz configuration for a zone. It can be preview or published configuration, whichever was the last updated. Secret variables values will not be included. */ public async get$zones$zone_identifier$zaraz$config(params: Params$get$zones$zone_identifier$zaraz$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config`; const headers = { Accept: "application/json" }; @@ -71201,7 +71198,7 @@ export class Client { * Updates Zaraz configuration for a zone. */ public async put$zones$zone_identifier$zaraz$config(params: Params$put$zones$zone_identifier$zaraz$config, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71218,7 +71215,7 @@ export class Client { * Gets default Zaraz configuration for a zone. */ public async get$zones$zone_identifier$zaraz$default(params: Params$get$zones$zone_identifier$zaraz$default, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/default\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/default`; const headers = { Accept: "application/json" }; @@ -71233,7 +71230,7 @@ export class Client { * Exports full current published Zaraz configuration for a zone, secret variables included. */ public async get$zones$zone_identifier$zaraz$export(params: Params$get$zones$zone_identifier$zaraz$export, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/export\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/export`; const headers = { Accept: "application/json" }; @@ -71248,7 +71245,7 @@ export class Client { * Lists a history of published Zaraz configuration records for a zone. */ public async get$zones$zone_identifier$zaraz$history(params: Params$get$zones$zone_identifier$zaraz$history, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history`; const headers = { Accept: "application/json" }; @@ -71270,7 +71267,7 @@ export class Client { * Restores a historical published Zaraz configuration by ID for a zone. */ public async put$zones$zone_identifier$zaraz$history(params: Params$put$zones$zone_identifier$zaraz$history, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71287,7 +71284,7 @@ export class Client { * Gets a history of published Zaraz configurations by ID(s) for a zone. */ public async get$zones$zone_identifier$zaraz$config$history(params: Params$get$zones$zone_identifier$zaraz$config$history, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history/configs\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history/configs`; const headers = { Accept: "application/json" }; @@ -71306,7 +71303,7 @@ export class Client { * Publish current Zaraz preview configuration for a zone. */ public async post$zones$zone_identifier$zaraz$publish(params: Params$post$zones$zone_identifier$zaraz$publish, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/publish\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/publish`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71323,7 +71320,7 @@ export class Client { * Gets Zaraz workflow for a zone. */ public async get$zones$zone_identifier$zaraz$workflow(params: Params$get$zones$zone_identifier$zaraz$workflow, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow`; const headers = { Accept: "application/json" }; @@ -71338,7 +71335,7 @@ export class Client { * Updates Zaraz workflow for a zone. */ public async put$zones$zone_identifier$zaraz$workflow(params: Params$put$zones$zone_identifier$zaraz$workflow, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71355,7 +71352,7 @@ export class Client { * Retrieves quota for all plans, as well as the current zone quota. */ public async speed$get$availabilities(params: Params$speed$get$availabilities, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/availabilities\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/availabilities`; const headers = { Accept: "application/json" }; @@ -71370,7 +71367,7 @@ export class Client { * Lists all webpages which have been tested. */ public async speed$list$pages(params: Params$speed$list$pages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages`; const headers = { Accept: "application/json" }; @@ -71385,7 +71382,7 @@ export class Client { * Test history (list of tests) for a specific webpage. */ public async speed$list$test$history(params: Params$speed$list$test$history, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { Accept: "application/json" }; @@ -71406,7 +71403,7 @@ export class Client { * Starts a test for a specific webpage, in a specific region. */ public async speed$create$test(params: Params$speed$create$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71423,7 +71420,7 @@ export class Client { * Deletes all tests for a specific webpage from a specific region. Deleted tests are still counted as part of the quota. */ public async speed$delete$tests(params: Params$speed$delete$tests, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { Accept: "application/json" }; @@ -71442,7 +71439,7 @@ export class Client { * Retrieves the result of a specific test. */ public async speed$get$test(params: Params$speed$get$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -71457,7 +71454,7 @@ export class Client { * Lists the core web vital metrics trend over time for a specific page. */ public async speed$list$page$trend(params: Params$speed$list$page$trend, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/trend\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/trend`; const headers = { Accept: "application/json" }; @@ -71481,7 +71478,7 @@ export class Client { * Retrieves the test schedule for a page in a specific region. */ public async speed$get$scheduled$test(params: Params$speed$get$scheduled$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71500,7 +71497,7 @@ export class Client { * Creates a scheduled test for a page. */ public async speed$create$scheduled$test(params: Params$speed$create$scheduled$test, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71519,7 +71516,7 @@ export class Client { * Deletes a scheduled test for a page. */ public async speed$delete$test$schedule(params: Params$speed$delete$test$schedule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71538,7 +71535,7 @@ export class Client { * Fetches the current URL normalization settings. */ public async url$normalization$get$url$normalization$settings(params: Params$url$normalization$get$url$normalization$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/url_normalization\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/url_normalization`; const headers = { Accept: "application/json" }; @@ -71553,7 +71550,7 @@ export class Client { * Updates the URL normalization settings. */ public async url$normalization$update$url$normalization$settings(params: Params$url$normalization$update$url$normalization$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/url_normalization\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/url_normalization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71570,7 +71567,7 @@ export class Client { * List Filters */ public async worker$filters$$$deprecated$$list$filters(params: Params$worker$filters$$$deprecated$$list$filters, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters`; const headers = { Accept: "application/json" }; @@ -71585,7 +71582,7 @@ export class Client { * Create Filter */ public async worker$filters$$$deprecated$$create$filter(params: Params$worker$filters$$$deprecated$$create$filter, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71602,7 +71599,7 @@ export class Client { * Update Filter */ public async worker$filters$$$deprecated$$update$filter(params: Params$worker$filters$$$deprecated$$update$filter, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters/\${encodeURIComponent(params.parameter.filter_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters/${encodeURIComponent(params.parameter.filter_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71619,7 +71616,7 @@ export class Client { * Delete Filter */ public async worker$filters$$$deprecated$$delete$filter(params: Params$worker$filters$$$deprecated$$delete$filter, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters/\${encodeURIComponent(params.parameter.filter_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters/${encodeURIComponent(params.parameter.filter_id)}`; const headers = { Accept: "application/json" }; @@ -71634,7 +71631,7 @@ export class Client { * Returns routes for a zone. */ public async worker$routes$list$routes(params: Params$worker$routes$list$routes, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes`; const headers = { Accept: "application/json" }; @@ -71649,7 +71646,7 @@ export class Client { * Creates a route that maps a URL pattern to a Worker. */ public async worker$routes$create$route(params: Params$worker$routes$create$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71666,7 +71663,7 @@ export class Client { * Returns information about a route, including URL pattern and Worker. */ public async worker$routes$get$route(params: Params$worker$routes$get$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -71681,7 +71678,7 @@ export class Client { * Updates the URL pattern or Worker associated with a route. */ public async worker$routes$update$route(params: Params$worker$routes$update$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71698,7 +71695,7 @@ export class Client { * Deletes a route. */ public async worker$routes$delete$route(params: Params$worker$routes$delete$route, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -71714,7 +71711,7 @@ export class Client { * Fetch raw script content for your worker. Note this is the original script content, not JSON encoded. */ public async worker$script$$$deprecated$$download$worker(params: Params$worker$script$$$deprecated$$download$worker, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = { Accept: "undefined" }; @@ -71730,7 +71727,7 @@ export class Client { * Upload a worker, or a new version of a worker. */ public async worker$script$$$deprecated$$upload$worker(params: Params$worker$script$$$deprecated$$upload$worker, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = { "Content-Type": "application/javascript", Accept: "application/json" @@ -71748,7 +71745,7 @@ export class Client { * Delete your Worker. This call has no response body on a successful delete. */ public async worker$script$$$deprecated$$delete$worker(params: Params$worker$script$$$deprecated$$delete$worker, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = {}; return this.apiClient.request({ httpMethod: "DELETE", @@ -71762,7 +71759,7 @@ export class Client { * List the bindings for a Workers script. */ public async worker$binding$$$deprecated$$list$bindings(params: Params$worker$binding$$$deprecated$$list$bindings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script/bindings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script/bindings`; const headers = { Accept: "application/json" }; @@ -71777,7 +71774,7 @@ export class Client { * Get Total TLS Settings for a Zone. */ public async total$tls$total$tls$settings$details(params: Params$total$tls$total$tls$settings$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls`; const headers = { Accept: "application/json" }; @@ -71792,7 +71789,7 @@ export class Client { * Set Total TLS Settings or disable the feature for a Zone. */ public async total$tls$enable$or$disable$total$tls(params: Params$total$tls$enable$or$disable$total$tls, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71810,7 +71807,7 @@ export class Client { * This view provides a breakdown of analytics data by datacenter. Note: This is available to Enterprise customers only. */ public async zone$analytics$$$deprecated$$get$analytics$by$co$locations(params: Params$zone$analytics$$$deprecated$$get$analytics$by$co$locations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/analytics/colos\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/analytics/colos`; const headers = { Accept: "application/json" }; @@ -71832,7 +71829,7 @@ export class Client { * The dashboard view provides both totals and timeseries data for the given zone and time period across the entire Cloudflare network. */ public async zone$analytics$$$deprecated$$get$dashboard(params: Params$zone$analytics$$$deprecated$$get$dashboard, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/analytics/dashboard\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/analytics/dashboard`; const headers = { Accept: "application/json" }; @@ -71853,7 +71850,7 @@ export class Client { * Lists available plans the zone can subscribe to. */ public async zone$rate$plan$list$available$plans(params: Params$zone$rate$plan$list$available$plans, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_plans\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_plans`; const headers = { Accept: "application/json" }; @@ -71868,7 +71865,7 @@ export class Client { * Details of the available plan that the zone can subscribe to. */ public async zone$rate$plan$available$plan$details(params: Params$zone$rate$plan$available$plan$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_plans/\${encodeURIComponent(params.parameter.plan_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_plans/${encodeURIComponent(params.parameter.plan_identifier)}`; const headers = { Accept: "application/json" }; @@ -71883,7 +71880,7 @@ export class Client { * Lists all rate plans the zone can subscribe to. */ public async zone$rate$plan$list$available$rate$plans(params: Params$zone$rate$plan$list$available$rate$plans, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_rate_plans\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_rate_plans`; const headers = { Accept: "application/json" }; @@ -71898,7 +71895,7 @@ export class Client { * List Hostname Associations */ public async client$certificate$for$a$zone$list$hostname$associations(params: Params$client$certificate$for$a$zone$list$hostname$associations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations`; const headers = { Accept: "application/json" }; @@ -71917,7 +71914,7 @@ export class Client { * Replace Hostname Associations */ public async client$certificate$for$a$zone$put$hostname$associations(params: Params$client$certificate$for$a$zone$put$hostname$associations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71934,7 +71931,7 @@ export class Client { * List all of your Zone's API Shield mTLS Client Certificates by Status and/or using Pagination */ public async client$certificate$for$a$zone$list$client$certificates(params: Params$client$certificate$for$a$zone$list$client$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates`; const headers = { Accept: "application/json" }; @@ -71957,7 +71954,7 @@ export class Client { * Create a new API Shield mTLS Client Certificate */ public async client$certificate$for$a$zone$create$client$certificate(params: Params$client$certificate$for$a$zone$create$client$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71974,7 +71971,7 @@ export class Client { * Get Details for a single mTLS API Shield Client Certificate */ public async client$certificate$for$a$zone$client$certificate$details(params: Params$client$certificate$for$a$zone$client$certificate$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -71989,7 +71986,7 @@ export class Client { * Set a API Shield mTLS Client Certificate to pending_revocation status for processing to revoked status. */ public async client$certificate$for$a$zone$delete$client$certificate(params: Params$client$certificate$for$a$zone$delete$client$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -72004,7 +72001,7 @@ export class Client { * If a API Shield mTLS Client Certificate is in a pending_revocation state, you may reactivate it with this endpoint. */ public async client$certificate$for$a$zone$edit$client$certificate(params: Params$client$certificate$for$a$zone$edit$client$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -72019,7 +72016,7 @@ export class Client { * List, search, and filter all of your custom SSL certificates. The higher priority will break ties across overlapping 'legacy_custom' certificates, but 'legacy_custom' certificates will always supercede 'sni_custom' certificates. */ public async custom$ssl$for$a$zone$list$ssl$configurations(params: Params$custom$ssl$for$a$zone$list$ssl$configurations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates`; const headers = { Accept: "application/json" }; @@ -72041,7 +72038,7 @@ export class Client { * Upload a new SSL certificate for a zone. */ public async custom$ssl$for$a$zone$create$ssl$configuration(params: Params$custom$ssl$for$a$zone$create$ssl$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72055,7 +72052,7 @@ export class Client { } /** SSL Configuration Details */ public async custom$ssl$for$a$zone$ssl$configuration$details(params: Params$custom$ssl$for$a$zone$ssl$configuration$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72070,7 +72067,7 @@ export class Client { * Remove a SSL certificate from a zone. */ public async custom$ssl$for$a$zone$delete$ssl$configuration(params: Params$custom$ssl$for$a$zone$delete$ssl$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72085,7 +72082,7 @@ export class Client { * Upload a new private key and/or PEM/CRT for the SSL certificate. Note: PATCHing a configuration for sni_custom certificates will result in a new resource id being returned, and the previous one being deleted. */ public async custom$ssl$for$a$zone$edit$ssl$configuration(params: Params$custom$ssl$for$a$zone$edit$ssl$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72102,7 +72099,7 @@ export class Client { * If a zone has multiple SSL certificates, you can set the order in which they should be used during a request. The higher priority will break ties across overlapping 'legacy_custom' certificates. */ public async custom$ssl$for$a$zone$re$prioritize$ssl$certificates(params: Params$custom$ssl$for$a$zone$re$prioritize$ssl$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/prioritize\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/prioritize`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72119,7 +72116,7 @@ export class Client { * List, search, sort, and filter all of your custom hostnames. */ public async custom$hostname$for$a$zone$list$custom$hostnames(params: Params$custom$hostname$for$a$zone$list$custom$hostnames, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames`; const headers = { Accept: "application/json" }; @@ -72144,7 +72141,7 @@ export class Client { * Add a new custom hostname and request that an SSL certificate be issued for it. One of three validation methods—http, txt, email—should be used, with 'http' recommended if the CNAME is already in place (or will be soon). Specifying 'email' will send an email to the WHOIS contacts on file for the base domain plus hostmaster, postmaster, webmaster, admin, administrator. If http is used and the domain is not already pointing to the Managed CNAME host, the PATCH method must be used once it is (to complete validation). */ public async custom$hostname$for$a$zone$create$custom$hostname(params: Params$custom$hostname$for$a$zone$create$custom$hostname, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72158,7 +72155,7 @@ export class Client { } /** Custom Hostname Details */ public async custom$hostname$for$a$zone$custom$hostname$details(params: Params$custom$hostname$for$a$zone$custom$hostname$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72170,7 +72167,7 @@ export class Client { } /** Delete Custom Hostname (and any issued SSL certificates) */ public async custom$hostname$for$a$zone$delete$custom$hostname$$$and$any$issued$ssl$certificates$(params: Params$custom$hostname$for$a$zone$delete$custom$hostname$$$and$any$issued$ssl$certificates$, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72185,7 +72182,7 @@ export class Client { * Modify SSL configuration for a custom hostname. When sent with SSL config that matches existing config, used to indicate that hostname should pass domain control validation (DCV). Can also be used to change validation type, e.g., from 'http' to 'email'. */ public async custom$hostname$for$a$zone$edit$custom$hostname(params: Params$custom$hostname$for$a$zone$edit$custom$hostname, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72199,7 +72196,7 @@ export class Client { } /** Get Fallback Origin for Custom Hostnames */ public async custom$hostname$fallback$origin$for$a$zone$get$fallback$origin$for$custom$hostnames(params: Params$custom$hostname$fallback$origin$for$a$zone$get$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { Accept: "application/json" }; @@ -72211,7 +72208,7 @@ export class Client { } /** Update Fallback Origin for Custom Hostnames */ public async custom$hostname$fallback$origin$for$a$zone$update$fallback$origin$for$custom$hostnames(params: Params$custom$hostname$fallback$origin$for$a$zone$update$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72225,7 +72222,7 @@ export class Client { } /** Delete Fallback Origin for Custom Hostnames */ public async custom$hostname$fallback$origin$for$a$zone$delete$fallback$origin$for$custom$hostnames(params: Params$custom$hostname$fallback$origin$for$a$zone$delete$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { Accept: "application/json" }; @@ -72240,7 +72237,7 @@ export class Client { * Fetches all the custom pages at the zone level. */ public async custom$pages$for$a$zone$list$custom$pages(params: Params$custom$pages$for$a$zone$list$custom$pages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages`; const headers = { Accept: "application/json" }; @@ -72255,7 +72252,7 @@ export class Client { * Fetches the details of a custom page. */ public async custom$pages$for$a$zone$get$a$custom$page(params: Params$custom$pages$for$a$zone$get$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72270,7 +72267,7 @@ export class Client { * Updates the configuration of an existing custom page. */ public async custom$pages$for$a$zone$update$a$custom$page(params: Params$custom$pages$for$a$zone$update$a$custom$page, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72287,7 +72284,7 @@ export class Client { * Retrieve the account and zone specific unique identifier used as part of the CNAME target for DCV Delegation. */ public async dcv$delegation$uuid$get(params: Params$dcv$delegation$uuid$get, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/dcv_delegation/uuid\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/dcv_delegation/uuid`; const headers = { Accept: "application/json" }; @@ -72302,7 +72299,7 @@ export class Client { * Get information about the settings for your Email Routing zone. */ public async email$routing$settings$get$email$routing$settings(params: Params$email$routing$settings$get$email$routing$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing`; const headers = { Accept: "application/json" }; @@ -72317,7 +72314,7 @@ export class Client { * Disable your Email Routing zone. Also removes additional MX records previously required for Email Routing to work. */ public async email$routing$settings$disable$email$routing(params: Params$email$routing$settings$disable$email$routing, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/disable\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/disable`; const headers = { Accept: "application/json" }; @@ -72332,7 +72329,7 @@ export class Client { * Show the DNS records needed to configure your Email Routing zone. */ public async email$routing$settings$email$routing$dns$settings(params: Params$email$routing$settings$email$routing$dns$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/dns\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/dns`; const headers = { Accept: "application/json" }; @@ -72347,7 +72344,7 @@ export class Client { * Enable you Email Routing zone. Add and lock the necessary MX and SPF records. */ public async email$routing$settings$enable$email$routing(params: Params$email$routing$settings$enable$email$routing, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/enable\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/enable`; const headers = { Accept: "application/json" }; @@ -72362,7 +72359,7 @@ export class Client { * Lists existing routing rules. */ public async email$routing$routing$rules$list$routing$rules(params: Params$email$routing$routing$rules$list$routing$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules`; const headers = { Accept: "application/json" }; @@ -72383,7 +72380,7 @@ export class Client { * Rules consist of a set of criteria for matching emails (such as an email being sent to a specific custom email address) plus a set of actions to take on the email (like forwarding it to a specific destination address). */ public async email$routing$routing$rules$create$routing$rule(params: Params$email$routing$routing$rules$create$routing$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72400,7 +72397,7 @@ export class Client { * Get information for a specific routing rule already created. */ public async email$routing$routing$rules$get$routing$rule(params: Params$email$routing$routing$rules$get$routing$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -72415,7 +72412,7 @@ export class Client { * Update actions and matches, or enable/disable specific routing rules. */ public async email$routing$routing$rules$update$routing$rule(params: Params$email$routing$routing$rules$update$routing$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72432,7 +72429,7 @@ export class Client { * Delete a specific routing rule. */ public async email$routing$routing$rules$delete$routing$rule(params: Params$email$routing$routing$rules$delete$routing$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -72447,7 +72444,7 @@ export class Client { * Get information on the default catch-all routing rule. */ public async email$routing$routing$rules$get$catch$all$rule(params: Params$email$routing$routing$rules$get$catch$all$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all`; const headers = { Accept: "application/json" }; @@ -72462,7 +72459,7 @@ export class Client { * Enable or disable catch-all routing rule, or change action to forward to specific destination address. */ public async email$routing$routing$rules$update$catch$all$rule(params: Params$email$routing$routing$rules$update$catch$all$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72479,7 +72476,7 @@ export class Client { * Fetches filters in a zone. You can filter the results using several optional parameters. */ public async filters$list$filters(params: Params$filters$list$filters, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { Accept: "application/json" }; @@ -72504,7 +72501,7 @@ export class Client { * Updates one or more existing filters. */ public async filters$update$filters(params: Params$filters$update$filters, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72521,7 +72518,7 @@ export class Client { * Creates one or more filters. */ public async filters$create$filters(params: Params$filters$create$filters, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72538,7 +72535,7 @@ export class Client { * Deletes one or more existing filters. */ public async filters$delete$filters(params: Params$filters$delete$filters, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72555,7 +72552,7 @@ export class Client { * Fetches the details of a filter. */ public async filters$get$a$filter(params: Params$filters$get$a$filter, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72570,7 +72567,7 @@ export class Client { * Updates an existing filter. */ public async filters$update$a$filter(params: Params$filters$update$a$filter, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72587,7 +72584,7 @@ export class Client { * Deletes an existing filter. */ public async filters$delete$a$filter(params: Params$filters$delete$a$filter, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72602,7 +72599,7 @@ export class Client { * Fetches Zone Lockdown rules. You can filter the results using several optional parameters. */ public async zone$lockdown$list$zone$lockdown$rules(params: Params$zone$lockdown$list$zone$lockdown$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns`; const headers = { Accept: "application/json" }; @@ -72631,7 +72628,7 @@ export class Client { * Creates a new Zone Lockdown rule. */ public async zone$lockdown$create$a$zone$lockdown$rule(params: Params$zone$lockdown$create$a$zone$lockdown$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72648,7 +72645,7 @@ export class Client { * Fetches the details of a Zone Lockdown rule. */ public async zone$lockdown$get$a$zone$lockdown$rule(params: Params$zone$lockdown$get$a$zone$lockdown$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72663,7 +72660,7 @@ export class Client { * Updates an existing Zone Lockdown rule. */ public async zone$lockdown$update$a$zone$lockdown$rule(params: Params$zone$lockdown$update$a$zone$lockdown$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72680,7 +72677,7 @@ export class Client { * Deletes an existing Zone Lockdown rule. */ public async zone$lockdown$delete$a$zone$lockdown$rule(params: Params$zone$lockdown$delete$a$zone$lockdown$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72695,7 +72692,7 @@ export class Client { * Fetches firewall rules in a zone. You can filter the results using several optional parameters. */ public async firewall$rules$list$firewall$rules(params: Params$firewall$rules$list$firewall$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { Accept: "application/json" }; @@ -72719,7 +72716,7 @@ export class Client { * Updates one or more existing firewall rules. */ public async firewall$rules$update$firewall$rules(params: Params$firewall$rules$update$firewall$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72736,7 +72733,7 @@ export class Client { * Create one or more firewall rules. */ public async firewall$rules$create$firewall$rules(params: Params$firewall$rules$create$firewall$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72753,7 +72750,7 @@ export class Client { * Deletes existing firewall rules. */ public async firewall$rules$delete$firewall$rules(params: Params$firewall$rules$delete$firewall$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72770,7 +72767,7 @@ export class Client { * Updates the priority of existing firewall rules. */ public async firewall$rules$update$priority$of$firewall$rules(params: Params$firewall$rules$update$priority$of$firewall$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72787,7 +72784,7 @@ export class Client { * Fetches the details of a firewall rule. */ public async firewall$rules$get$a$firewall$rule(params: Params$firewall$rules$get$a$firewall$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72806,7 +72803,7 @@ export class Client { * Updates an existing firewall rule. */ public async firewall$rules$update$a$firewall$rule(params: Params$firewall$rules$update$a$firewall$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72823,7 +72820,7 @@ export class Client { * Deletes an existing firewall rule. */ public async firewall$rules$delete$a$firewall$rule(params: Params$firewall$rules$delete$a$firewall$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72840,7 +72837,7 @@ export class Client { * Updates the priority of an existing firewall rule. */ public async firewall$rules$update$priority$of$a$firewall$rule(params: Params$firewall$rules$update$priority$of$a$firewall$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72857,7 +72854,7 @@ export class Client { * Fetches User Agent Blocking rules in a zone. You can filter the results using several optional parameters. */ public async user$agent$blocking$rules$list$user$agent$blocking$rules(params: Params$user$agent$blocking$rules$list$user$agent$blocking$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules`; const headers = { Accept: "application/json" }; @@ -72880,7 +72877,7 @@ export class Client { * Creates a new User Agent Blocking rule in a zone. */ public async user$agent$blocking$rules$create$a$user$agent$blocking$rule(params: Params$user$agent$blocking$rules$create$a$user$agent$blocking$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72897,7 +72894,7 @@ export class Client { * Fetches the details of a User Agent Blocking rule. */ public async user$agent$blocking$rules$get$a$user$agent$blocking$rule(params: Params$user$agent$blocking$rules$get$a$user$agent$blocking$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72912,7 +72909,7 @@ export class Client { * Updates an existing User Agent Blocking rule. */ public async user$agent$blocking$rules$update$a$user$agent$blocking$rule(params: Params$user$agent$blocking$rules$update$a$user$agent$blocking$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72929,7 +72926,7 @@ export class Client { * Deletes an existing User Agent Blocking rule. */ public async user$agent$blocking$rules$delete$a$user$agent$blocking$rule(params: Params$user$agent$blocking$rules$delete$a$user$agent$blocking$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72946,7 +72943,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$overrides$list$waf$overrides(params: Params$waf$overrides$list$waf$overrides, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides`; const headers = { Accept: "application/json" }; @@ -72968,7 +72965,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$overrides$create$a$waf$override(params: Params$waf$overrides$create$a$waf$override, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72987,7 +72984,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$overrides$get$a$waf$override(params: Params$waf$overrides$get$a$waf$override, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73004,7 +73001,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$overrides$update$waf$override(params: Params$waf$overrides$update$waf$override, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73023,7 +73020,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$overrides$delete$a$waf$override(params: Params$waf$overrides$delete$a$waf$override, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73040,7 +73037,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$packages$list$waf$packages(params: Params$waf$packages$list$waf$packages, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages`; const headers = { Accept: "application/json" }; @@ -73066,7 +73063,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$packages$get$a$waf$package(params: Params$waf$packages$get$a$waf$package, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73083,7 +73080,7 @@ export class Client { * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ public async waf$packages$update$a$waf$package(params: Params$waf$packages$update$a$waf$package, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73100,7 +73097,7 @@ export class Client { * List configured health checks. */ public async health$checks$list$health$checks(params: Params$health$checks$list$health$checks, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks`; const headers = { Accept: "application/json" }; @@ -73115,7 +73112,7 @@ export class Client { * Create a new health check. */ public async health$checks$create$health$check(params: Params$health$checks$create$health$check, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73132,7 +73129,7 @@ export class Client { * Fetch a single configured health check. */ public async health$checks$health$check$details(params: Params$health$checks$health$check$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73147,7 +73144,7 @@ export class Client { * Update a configured health check. */ public async health$checks$update$health$check(params: Params$health$checks$update$health$check, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73164,7 +73161,7 @@ export class Client { * Delete a health check. */ public async health$checks$delete$health$check(params: Params$health$checks$delete$health$check, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73179,7 +73176,7 @@ export class Client { * Patch a configured health check. */ public async health$checks$patch$health$check(params: Params$health$checks$patch$health$check, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73196,7 +73193,7 @@ export class Client { * Create a new preview health check. */ public async health$checks$create$preview$health$check(params: Params$health$checks$create$preview$health$check, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73213,7 +73210,7 @@ export class Client { * Fetch a single configured health check preview. */ public async health$checks$health$check$preview$details(params: Params$health$checks$health$check$preview$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73228,7 +73225,7 @@ export class Client { * Delete a health check. */ public async health$checks$delete$preview$health$check(params: Params$health$checks$delete$preview$health$check, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73243,7 +73240,7 @@ export class Client { * List the requested TLS setting for the hostnames under this zone. */ public async per$hostname$tls$settings$list(params: Params$per$hostname$tls$settings$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}`; const headers = { Accept: "application/json" }; @@ -73258,7 +73255,7 @@ export class Client { * Update the tls setting value for the hostname. */ public async per$hostname$tls$settings$put(params: Params$per$hostname$tls$settings$put, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}/\${encodeURIComponent(params.parameter.hostname)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}/${encodeURIComponent(params.parameter.hostname)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73275,7 +73272,7 @@ export class Client { * Delete the tls setting value for the hostname. */ public async per$hostname$tls$settings$delete(params: Params$per$hostname$tls$settings$delete, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}/\${encodeURIComponent(params.parameter.hostname)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}/${encodeURIComponent(params.parameter.hostname)}`; const headers = { Accept: "application/json" }; @@ -73290,7 +73287,7 @@ export class Client { * List all Keyless SSL configurations for a given zone. */ public async keyless$ssl$for$a$zone$list$keyless$ssl$configurations(params: Params$keyless$ssl$for$a$zone$list$keyless$ssl$configurations, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates`; const headers = { Accept: "application/json" }; @@ -73302,7 +73299,7 @@ export class Client { } /** Create Keyless SSL Configuration */ public async keyless$ssl$for$a$zone$create$keyless$ssl$configuration(params: Params$keyless$ssl$for$a$zone$create$keyless$ssl$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73319,7 +73316,7 @@ export class Client { * Get details for one Keyless SSL configuration. */ public async keyless$ssl$for$a$zone$get$keyless$ssl$configuration(params: Params$keyless$ssl$for$a$zone$get$keyless$ssl$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73331,7 +73328,7 @@ export class Client { } /** Delete Keyless SSL Configuration */ public async keyless$ssl$for$a$zone$delete$keyless$ssl$configuration(params: Params$keyless$ssl$for$a$zone$delete$keyless$ssl$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73346,7 +73343,7 @@ export class Client { * This will update attributes of a Keyless SSL. Consists of one or more of the following: host,name,port. */ public async keyless$ssl$for$a$zone$edit$keyless$ssl$configuration(params: Params$keyless$ssl$for$a$zone$edit$keyless$ssl$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73363,7 +73360,7 @@ export class Client { * Gets log retention flag for Logpull API. */ public async logs$received$get$log$retention$flag(params: Params$logs$received$get$log$retention$flag, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag`; const headers = { Accept: "application/json" }; @@ -73378,7 +73375,7 @@ export class Client { * Updates log retention flag for Logpull API. */ public async logs$received$update$log$retention$flag(params: Params$logs$received$update$log$retention$flag, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73392,10 +73389,10 @@ export class Client { } /** * Get logs RayIDs - * The \`/rayids\` api route allows lookups by specific rayid. The rayids route will return zero, one, or more records (ray ids are not unique). + * The `/rayids` api route allows lookups by specific rayid. The rayids route will return zero, one, or more records (ray ids are not unique). */ public async logs$received$get$logs$ray$i$ds(params: Params$logs$received$get$logs$ray$i$ds, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/rayids/\${encodeURIComponent(params.parameter.ray_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/rayids/${encodeURIComponent(params.parameter.ray_identifier)}`; const headers = { Accept: "application/json" }; @@ -73412,10 +73409,10 @@ export class Client { } /** * Get logs received - * The \`/received\` api route allows customers to retrieve their edge HTTP logs. The basic access pattern is "give me all the logs for zone Z for minute M", where the minute M refers to the time records were received at Cloudflare's central data center. \`start\` is inclusive, and \`end\` is exclusive. Because of that, to get all data, at minutely cadence, starting at 10AM, the proper values are: \`start=2018-05-20T10:00:00Z&end=2018-05-20T10:01:00Z\`, then \`start=2018-05-20T10:01:00Z&end=2018-05-20T10:02:00Z\` and so on; the overlap will be handled properly. + * The `/received` api route allows customers to retrieve their edge HTTP logs. The basic access pattern is "give me all the logs for zone Z for minute M", where the minute M refers to the time records were received at Cloudflare's central data center. `start` is inclusive, and `end` is exclusive. Because of that, to get all data, at minutely cadence, starting at 10AM, the proper values are: `start=2018-05-20T10:00:00Z&end=2018-05-20T10:01:00Z`, then `start=2018-05-20T10:01:00Z&end=2018-05-20T10:02:00Z` and so on; the overlap will be handled properly. */ public async logs$received$get$logs$received(params: Params$logs$received$get$logs$received, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/received\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/received`; const headers = { Accept: "application/json" }; @@ -73439,7 +73436,7 @@ export class Client { * Lists all fields available. The response is json object with key-value pairs, where keys are field names, and values are descriptions. */ public async logs$received$list$fields(params: Params$logs$received$list$fields, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/received/fields\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/received/fields`; const headers = { Accept: "application/json" }; @@ -73451,7 +73448,7 @@ export class Client { } /** List Certificates */ public async zone$level$authenticated$origin$pulls$list$certificates(params: Params$zone$level$authenticated$origin$pulls$list$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth`; const headers = { Accept: "application/json" }; @@ -73466,7 +73463,7 @@ export class Client { * Upload your own certificate you want Cloudflare to use for edge-to-origin communication to override the shared certificate. Please note that it is important to keep only one certificate active. Also, make sure to enable zone-level authenticated origin pulls by making a PUT call to settings endpoint to see the uploaded certificate in use. */ public async zone$level$authenticated$origin$pulls$upload$certificate(params: Params$zone$level$authenticated$origin$pulls$upload$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73480,7 +73477,7 @@ export class Client { } /** Get Certificate Details */ public async zone$level$authenticated$origin$pulls$get$certificate$details(params: Params$zone$level$authenticated$origin$pulls$get$certificate$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73492,7 +73489,7 @@ export class Client { } /** Delete Certificate */ public async zone$level$authenticated$origin$pulls$delete$certificate(params: Params$zone$level$authenticated$origin$pulls$delete$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73507,7 +73504,7 @@ export class Client { * Associate a hostname to a certificate and enable, disable or invalidate the association. If disabled, client certificate will not be sent to the hostname even if activated at the zone level. 100 maximum associations on a single certificate are allowed. Note: Use a null value for parameter *enabled* to invalidate the association. */ public async per$hostname$authenticated$origin$pull$enable$or$disable$a$hostname$for$client$authentication(params: Params$per$hostname$authenticated$origin$pull$enable$or$disable$a$hostname$for$client$authentication, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73521,7 +73518,7 @@ export class Client { } /** Get the Hostname Status for Client Authentication */ public async per$hostname$authenticated$origin$pull$get$the$hostname$status$for$client$authentication(params: Params$per$hostname$authenticated$origin$pull$get$the$hostname$status$for$client$authentication, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/\${encodeURIComponent(params.parameter.hostname)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/${encodeURIComponent(params.parameter.hostname)}`; const headers = { Accept: "application/json" }; @@ -73533,7 +73530,7 @@ export class Client { } /** List Certificates */ public async per$hostname$authenticated$origin$pull$list$certificates(params: Params$per$hostname$authenticated$origin$pull$list$certificates, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates`; const headers = { Accept: "application/json" }; @@ -73548,7 +73545,7 @@ export class Client { * Upload a certificate to be used for client authentication on a hostname. 10 hostname certificates per zone are allowed. */ public async per$hostname$authenticated$origin$pull$upload$a$hostname$client$certificate(params: Params$per$hostname$authenticated$origin$pull$upload$a$hostname$client$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73565,7 +73562,7 @@ export class Client { * Get the certificate by ID to be used for client authentication on a hostname. */ public async per$hostname$authenticated$origin$pull$get$the$hostname$client$certificate(params: Params$per$hostname$authenticated$origin$pull$get$the$hostname$client$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73577,7 +73574,7 @@ export class Client { } /** Delete Hostname Client Certificate */ public async per$hostname$authenticated$origin$pull$delete$hostname$client$certificate(params: Params$per$hostname$authenticated$origin$pull$delete$hostname$client$certificate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73592,7 +73589,7 @@ export class Client { * Get whether zone-level authenticated origin pulls is enabled or not. It is false by default. */ public async zone$level$authenticated$origin$pulls$get$enablement$setting$for$zone(params: Params$zone$level$authenticated$origin$pulls$get$enablement$setting$for$zone, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings`; const headers = { Accept: "application/json" }; @@ -73607,7 +73604,7 @@ export class Client { * Enable or disable zone-level authenticated origin pulls. 'enabled' should be set true either before/after the certificate is uploaded to see the certificate in use. */ public async zone$level$authenticated$origin$pulls$set$enablement$for$zone(params: Params$zone$level$authenticated$origin$pulls$set$enablement$for$zone, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73624,7 +73621,7 @@ export class Client { * Fetches the rate limits for a zone. */ public async rate$limits$for$a$zone$list$rate$limits(params: Params$rate$limits$for$a$zone$list$rate$limits, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits`; const headers = { Accept: "application/json" }; @@ -73644,7 +73641,7 @@ export class Client { * Creates a new rate limit for a zone. Refer to the object definition for a list of required attributes. */ public async rate$limits$for$a$zone$create$a$rate$limit(params: Params$rate$limits$for$a$zone$create$a$rate$limit, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73661,7 +73658,7 @@ export class Client { * Fetches the details of a rate limit. */ public async rate$limits$for$a$zone$get$a$rate$limit(params: Params$rate$limits$for$a$zone$get$a$rate$limit, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73676,7 +73673,7 @@ export class Client { * Updates an existing rate limit. */ public async rate$limits$for$a$zone$update$a$rate$limit(params: Params$rate$limits$for$a$zone$update$a$rate$limit, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73693,7 +73690,7 @@ export class Client { * Deletes an existing rate limit. */ public async rate$limits$for$a$zone$delete$a$rate$limit(params: Params$rate$limits$for$a$zone$delete$a$rate$limit, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73708,7 +73705,7 @@ export class Client { * Sends AXFR zone transfer request to primary nameserver(s). */ public async secondary$dns$$$secondary$zone$$force$axfr(params: Params$secondary$dns$$$secondary$zone$$force$axfr, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/force_axfr\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/force_axfr`; const headers = { Accept: "application/json" }; @@ -73723,7 +73720,7 @@ export class Client { * Get secondary zone configuration for incoming zone transfers. */ public async secondary$dns$$$secondary$zone$$secondary$zone$configuration$details(params: Params$secondary$dns$$$secondary$zone$$secondary$zone$configuration$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { Accept: "application/json" }; @@ -73738,7 +73735,7 @@ export class Client { * Update secondary zone configuration for incoming zone transfers. */ public async secondary$dns$$$secondary$zone$$update$secondary$zone$configuration(params: Params$secondary$dns$$$secondary$zone$$update$secondary$zone$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73755,7 +73752,7 @@ export class Client { * Create secondary zone configuration for incoming zone transfers. */ public async secondary$dns$$$secondary$zone$$create$secondary$zone$configuration(params: Params$secondary$dns$$$secondary$zone$$create$secondary$zone$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73772,7 +73769,7 @@ export class Client { * Delete secondary zone configuration for incoming zone transfers. */ public async secondary$dns$$$secondary$zone$$delete$secondary$zone$configuration(params: Params$secondary$dns$$$secondary$zone$$delete$secondary$zone$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { Accept: "application/json" }; @@ -73787,7 +73784,7 @@ export class Client { * Get primary zone configuration for outgoing zone transfers. */ public async secondary$dns$$$primary$zone$$primary$zone$configuration$details(params: Params$secondary$dns$$$primary$zone$$primary$zone$configuration$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { Accept: "application/json" }; @@ -73802,7 +73799,7 @@ export class Client { * Update primary zone configuration for outgoing zone transfers. */ public async secondary$dns$$$primary$zone$$update$primary$zone$configuration(params: Params$secondary$dns$$$primary$zone$$update$primary$zone$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73819,7 +73816,7 @@ export class Client { * Create primary zone configuration for outgoing zone transfers. */ public async secondary$dns$$$primary$zone$$create$primary$zone$configuration(params: Params$secondary$dns$$$primary$zone$$create$primary$zone$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73836,7 +73833,7 @@ export class Client { * Delete primary zone configuration for outgoing zone transfers. */ public async secondary$dns$$$primary$zone$$delete$primary$zone$configuration(params: Params$secondary$dns$$$primary$zone$$delete$primary$zone$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { Accept: "application/json" }; @@ -73851,7 +73848,7 @@ export class Client { * Disable outgoing zone transfers for primary zone and clears IXFR backlog of primary zone. */ public async secondary$dns$$$primary$zone$$disable$outgoing$zone$transfers(params: Params$secondary$dns$$$primary$zone$$disable$outgoing$zone$transfers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/disable\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/disable`; const headers = { Accept: "application/json" }; @@ -73866,7 +73863,7 @@ export class Client { * Enable outgoing zone transfers for primary zone. */ public async secondary$dns$$$primary$zone$$enable$outgoing$zone$transfers(params: Params$secondary$dns$$$primary$zone$$enable$outgoing$zone$transfers, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/enable\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/enable`; const headers = { Accept: "application/json" }; @@ -73881,7 +73878,7 @@ export class Client { * Notifies the secondary nameserver(s) and clears IXFR backlog of primary zone. */ public async secondary$dns$$$primary$zone$$force$dns$notify(params: Params$secondary$dns$$$primary$zone$$force$dns$notify, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/force_notify\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/force_notify`; const headers = { Accept: "application/json" }; @@ -73896,7 +73893,7 @@ export class Client { * Get primary zone transfer status. */ public async secondary$dns$$$primary$zone$$get$outgoing$zone$transfer$status(params: Params$secondary$dns$$$primary$zone$$get$outgoing$zone$transfer$status, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/status\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/status`; const headers = { Accept: "application/json" }; @@ -73908,7 +73905,7 @@ export class Client { } /** All Snippets */ public async zone$snippets(params: Params$zone$snippets, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets`; const headers = { Accept: "application/json" }; @@ -73920,7 +73917,7 @@ export class Client { } /** Snippet */ public async zone$snippets$snippet(params: Params$zone$snippets$snippet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { Accept: "application/json" }; @@ -73932,7 +73929,7 @@ export class Client { } /** Put Snippet */ public async zone$snippets$snippet$put(params: Params$zone$snippets$snippet$put, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -73946,7 +73943,7 @@ export class Client { } /** Delete Snippet */ public async zone$snippets$snippet$delete(params: Params$zone$snippets$snippet$delete, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { Accept: "application/json" }; @@ -73958,7 +73955,7 @@ export class Client { } /** Snippet Content */ public async zone$snippets$snippet$content(params: Params$zone$snippets$snippet$content, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}/content\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}/content`; const headers = { Accept: "multipart/form-data" }; @@ -73970,7 +73967,7 @@ export class Client { } /** Rules */ public async zone$snippets$snippet$rules(params: Params$zone$snippets$snippet$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules`; const headers = { Accept: "application/json" }; @@ -73982,7 +73979,7 @@ export class Client { } /** Put Rules */ public async zone$snippets$snippet$rules$put(params: Params$zone$snippets$snippet$rules$put, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73999,7 +73996,7 @@ export class Client { * For a given zone, list all active certificate packs. */ public async certificate$packs$list$certificate$packs(params: Params$certificate$packs$list$certificate$packs, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs`; const headers = { Accept: "application/json" }; @@ -74018,7 +74015,7 @@ export class Client { * For a given zone, get a certificate pack. */ public async certificate$packs$get$certificate$pack(params: Params$certificate$packs$get$certificate$pack, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74033,7 +74030,7 @@ export class Client { * For a given zone, delete an advanced certificate pack. */ public async certificate$packs$delete$advanced$certificate$manager$certificate$pack(params: Params$certificate$packs$delete$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74048,7 +74045,7 @@ export class Client { * For a given zone, restart validation for an advanced certificate pack. This is only a validation operation for a Certificate Pack in a validation_timed_out status. */ public async certificate$packs$restart$validation$for$advanced$certificate$manager$certificate$pack(params: Params$certificate$packs$restart$validation$for$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74063,7 +74060,7 @@ export class Client { * For a given zone, order an advanced certificate pack. */ public async certificate$packs$order$advanced$certificate$manager$certificate$pack(params: Params$certificate$packs$order$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/order\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/order`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74080,7 +74077,7 @@ export class Client { * For a given zone, list certificate pack quotas. */ public async certificate$packs$get$certificate$pack$quotas(params: Params$certificate$packs$get$certificate$pack$quotas, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/quota\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/quota`; const headers = { Accept: "application/json" }; @@ -74095,7 +74092,7 @@ export class Client { * Retrieve the SSL/TLS Recommender's recommendation for a zone. */ public async ssl$$tls$mode$recommendation$ssl$$tls$recommendation(params: Params$ssl$$tls$mode$recommendation$ssl$$tls$recommendation, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/recommendation\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/recommendation`; const headers = { Accept: "application/json" }; @@ -74110,7 +74107,7 @@ export class Client { * Get Universal SSL Settings for a Zone. */ public async universal$ssl$settings$for$a$zone$universal$ssl$settings$details(params: Params$universal$ssl$settings$for$a$zone$universal$ssl$settings$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings`; const headers = { Accept: "application/json" }; @@ -74125,7 +74122,7 @@ export class Client { * Patch Universal SSL Settings for a Zone. */ public async universal$ssl$settings$for$a$zone$edit$universal$ssl$settings(params: Params$universal$ssl$settings$for$a$zone$edit$universal$ssl$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74142,7 +74139,7 @@ export class Client { * Get SSL Verification Info for a Zone. */ public async ssl$verification$ssl$verification$details(params: Params$ssl$verification$ssl$verification$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification`; const headers = { Accept: "application/json" }; @@ -74161,7 +74158,7 @@ export class Client { * Edit SSL validation method for a certificate pack. A PATCH request will request an immediate validation check on any certificate, and return the updated status. If a validation method is provided, the validation will be immediately attempted using that method. */ public async ssl$verification$edit$ssl$certificate$pack$validation$method(params: Params$ssl$verification$edit$ssl$certificate$pack$validation$method, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification/\${encodeURIComponent(params.parameter.cert_pack_uuid)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification/${encodeURIComponent(params.parameter.cert_pack_uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74178,7 +74175,7 @@ export class Client { * Lists waiting rooms. */ public async waiting$room$list$waiting$rooms(params: Params$waiting$room$list$waiting$rooms, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms`; const headers = { Accept: "application/json" }; @@ -74193,7 +74190,7 @@ export class Client { * Creates a new waiting room. */ public async waiting$room$create$waiting$room(params: Params$waiting$room$create$waiting$room, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74210,7 +74207,7 @@ export class Client { * Fetches a single configured waiting room. */ public async waiting$room$waiting$room$details(params: Params$waiting$room$waiting$room$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { Accept: "application/json" }; @@ -74225,7 +74222,7 @@ export class Client { * Updates a configured waiting room. */ public async waiting$room$update$waiting$room(params: Params$waiting$room$update$waiting$room, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74242,7 +74239,7 @@ export class Client { * Deletes a waiting room. */ public async waiting$room$delete$waiting$room(params: Params$waiting$room$delete$waiting$room, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { Accept: "application/json" }; @@ -74257,7 +74254,7 @@ export class Client { * Patches a configured waiting room. */ public async waiting$room$patch$waiting$room(params: Params$waiting$room$patch$waiting$room, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74274,7 +74271,7 @@ export class Client { * Lists events for a waiting room. */ public async waiting$room$list$events(params: Params$waiting$room$list$events, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events`; const headers = { Accept: "application/json" }; @@ -74289,7 +74286,7 @@ export class Client { * Only available for the Waiting Room Advanced subscription. Creates an event for a waiting room. An event takes place during a specified period of time, temporarily changing the behavior of a waiting room. While the event is active, some of the properties in the event's configuration may either override or inherit from the waiting room's configuration. Note that events cannot overlap with each other, so only one event can be active at a time. */ public async waiting$room$create$event(params: Params$waiting$room$create$event, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74306,7 +74303,7 @@ export class Client { * Fetches a single configured event for a waiting room. */ public async waiting$room$event$details(params: Params$waiting$room$event$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { Accept: "application/json" }; @@ -74321,7 +74318,7 @@ export class Client { * Updates a configured event for a waiting room. */ public async waiting$room$update$event(params: Params$waiting$room$update$event, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74338,7 +74335,7 @@ export class Client { * Deletes an event for a waiting room. */ public async waiting$room$delete$event(params: Params$waiting$room$delete$event, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { Accept: "application/json" }; @@ -74353,7 +74350,7 @@ export class Client { * Patches a configured event for a waiting room. */ public async waiting$room$patch$event(params: Params$waiting$room$patch$event, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74370,7 +74367,7 @@ export class Client { * Previews an event's configuration as if it was active. Inherited fields from the waiting room will be displayed with their current values. */ public async waiting$room$preview$active$event$details(params: Params$waiting$room$preview$active$event$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}/details\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}/details`; const headers = { Accept: "application/json" }; @@ -74385,7 +74382,7 @@ export class Client { * Lists rules for a waiting room. */ public async waiting$room$list$waiting$room$rules(params: Params$waiting$room$list$waiting$room$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { Accept: "application/json" }; @@ -74400,7 +74397,7 @@ export class Client { * Only available for the Waiting Room Advanced subscription. Replaces all rules for a waiting room. */ public async waiting$room$replace$waiting$room$rules(params: Params$waiting$room$replace$waiting$room$rules, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74417,7 +74414,7 @@ export class Client { * Only available for the Waiting Room Advanced subscription. Creates a rule for a waiting room. */ public async waiting$room$create$waiting$room$rule(params: Params$waiting$room$create$waiting$room$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74434,7 +74431,7 @@ export class Client { * Deletes a rule for a waiting room. */ public async waiting$room$delete$waiting$room$rule(params: Params$waiting$room$delete$waiting$room$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -74449,7 +74446,7 @@ export class Client { * Patches a rule for a waiting room. */ public async waiting$room$patch$waiting$room$rule(params: Params$waiting$room$patch$waiting$room$rule, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74464,17 +74461,17 @@ export class Client { /** * Get waiting room status * Fetches the status of a configured waiting room. Response fields include: - * 1. \`status\`: String indicating the status of the waiting room. The possible status are: + * 1. `status`: String indicating the status of the waiting room. The possible status are: * - **not_queueing** indicates that the configured thresholds have not been met and all users are going through to the origin. * - **queueing** indicates that the thresholds have been met and some users are held in the waiting room. * - **event_prequeueing** indicates that an event is active and is currently prequeueing users before it starts. - * 2. \`event_id\`: String of the current event's \`id\` if an event is active, otherwise an empty string. - * 3. \`estimated_queued_users\`: Integer of the estimated number of users currently waiting in the queue. - * 4. \`estimated_total_active_users\`: Integer of the estimated number of users currently active on the origin. - * 5. \`max_estimated_time_minutes\`: Integer of the maximum estimated time currently presented to the users. + * 2. `event_id`: String of the current event's `id` if an event is active, otherwise an empty string. + * 3. `estimated_queued_users`: Integer of the estimated number of users currently waiting in the queue. + * 4. `estimated_total_active_users`: Integer of the estimated number of users currently active on the origin. + * 5. `max_estimated_time_minutes`: Integer of the maximum estimated time currently presented to the users. */ public async waiting$room$get$waiting$room$status(params: Params$waiting$room$get$waiting$room$status, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/status\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/status`; const headers = { Accept: "application/json" }; @@ -74486,27 +74483,27 @@ export class Client { } /** * Create a custom waiting room page preview - * Creates a waiting room page preview. Upload a custom waiting room page for preview. You will receive a preview URL in the form \`http://waitingrooms.dev/preview/\`. You can use the following query parameters to change the state of the preview: - * 1. \`force_queue\`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website (also known as queueAll). - * 2. \`queue_is_full\`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. - * 3. \`queueing_method\`: The queueing method currently used by the waiting room. + * Creates a waiting room page preview. Upload a custom waiting room page for preview. You will receive a preview URL in the form `http://waitingrooms.dev/preview/`. You can use the following query parameters to change the state of the preview: + * 1. `force_queue`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website (also known as queueAll). + * 2. `queue_is_full`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. + * 3. `queueing_method`: The queueing method currently used by the waiting room. * - **fifo** indicates a FIFO queue. * - **random** indicates a Random queue. - * - **passthrough** indicates a Passthrough queue. Keep in mind that the waiting room page will only be displayed if \`force_queue=true\` or \`event=prequeueing\` — for other cases the request will pass through to the origin. For our preview, this will be a fake origin website returning "Welcome". + * - **passthrough** indicates a Passthrough queue. Keep in mind that the waiting room page will only be displayed if `force_queue=true` or `event=prequeueing` — for other cases the request will pass through to the origin. For our preview, this will be a fake origin website returning "Welcome". * - **reject** indicates a Reject queue. - * 4. \`event\`: Used to preview a waiting room event. + * 4. `event`: Used to preview a waiting room event. * - **none** indicates no event is occurring. - * - **prequeueing** indicates that an event is prequeueing (between \`prequeue_start_time\` and \`event_start_time\`). - * - **started** indicates that an event has started (between \`event_start_time\` and \`event_end_time\`). - * 5. \`shuffle_at_event_start\`: Boolean indicating if the event will shuffle users in the prequeue when it starts. This can only be set to **true** if an event is active (\`event\` is not **none**). + * - **prequeueing** indicates that an event is prequeueing (between `prequeue_start_time` and `event_start_time`). + * - **started** indicates that an event has started (between `event_start_time` and `event_end_time`). + * 5. `shuffle_at_event_start`: Boolean indicating if the event will shuffle users in the prequeue when it starts. This can only be set to **true** if an event is active (`event` is not **none**). * - * For example, you can make a request to \`http://waitingrooms.dev/preview/?force_queue=false&queue_is_full=false&queueing_method=random&event=started&shuffle_at_event_start=true\` - * 6. \`waitTime\`: Non-zero, positive integer indicating the estimated wait time in minutes. The default value is 10 minutes. + * For example, you can make a request to `http://waitingrooms.dev/preview/?force_queue=false&queue_is_full=false&queueing_method=random&event=started&shuffle_at_event_start=true` + * 6. `waitTime`: Non-zero, positive integer indicating the estimated wait time in minutes. The default value is 10 minutes. * - * For example, you can make a request to \`http://waitingrooms.dev/preview/?waitTime=50\` to configure the estimated wait time as 50 minutes. + * For example, you can make a request to `http://waitingrooms.dev/preview/?waitTime=50` to configure the estimated wait time as 50 minutes. */ public async waiting$room$create$a$custom$waiting$room$page$preview(params: Params$waiting$room$create$a$custom$waiting$room$page$preview, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/preview\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74520,7 +74517,7 @@ export class Client { } /** Get zone-level Waiting Room settings */ public async waiting$room$get$zone$settings(params: Params$waiting$room$get$zone$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { Accept: "application/json" }; @@ -74532,7 +74529,7 @@ export class Client { } /** Update zone-level Waiting Room settings */ public async waiting$room$update$zone$settings(params: Params$waiting$room$update$zone$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74546,7 +74543,7 @@ export class Client { } /** Patch zone-level Waiting Room settings */ public async waiting$room$patch$zone$settings(params: Params$waiting$room$patch$zone$settings, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74560,7 +74557,7 @@ export class Client { } /** List Web3 Hostnames */ public async web3$hostname$list$web3$hostnames(params: Params$web3$hostname$list$web3$hostnames, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames`; const headers = { Accept: "application/json" }; @@ -74572,7 +74569,7 @@ export class Client { } /** Create Web3 Hostname */ public async web3$hostname$create$web3$hostname(params: Params$web3$hostname$create$web3$hostname, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74586,7 +74583,7 @@ export class Client { } /** Web3 Hostname Details */ public async web3$hostname$web3$hostname$details(params: Params$web3$hostname$web3$hostname$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74598,7 +74595,7 @@ export class Client { } /** Delete Web3 Hostname */ public async web3$hostname$delete$web3$hostname(params: Params$web3$hostname$delete$web3$hostname, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74610,7 +74607,7 @@ export class Client { } /** Edit Web3 Hostname */ public async web3$hostname$edit$web3$hostname(params: Params$web3$hostname$edit$web3$hostname, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74624,7 +74621,7 @@ export class Client { } /** IPFS Universal Path Gateway Content List Details */ public async web3$hostname$ipfs$universal$path$gateway$content$list$details(params: Params$web3$hostname$ipfs$universal$path$gateway$content$list$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list`; const headers = { Accept: "application/json" }; @@ -74636,7 +74633,7 @@ export class Client { } /** Update IPFS Universal Path Gateway Content List */ public async web3$hostname$update$ipfs$universal$path$gateway$content$list(params: Params$web3$hostname$update$ipfs$universal$path$gateway$content$list, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74650,7 +74647,7 @@ export class Client { } /** List IPFS Universal Path Gateway Content List Entries */ public async web3$hostname$list$ipfs$universal$path$gateway$content$list$entries(params: Params$web3$hostname$list$ipfs$universal$path$gateway$content$list$entries, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries`; const headers = { Accept: "application/json" }; @@ -74662,7 +74659,7 @@ export class Client { } /** Create IPFS Universal Path Gateway Content List Entry */ public async web3$hostname$create$ipfs$universal$path$gateway$content$list$entry(params: Params$web3$hostname$create$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74676,7 +74673,7 @@ export class Client { } /** IPFS Universal Path Gateway Content List Entry Details */ public async web3$hostname$ipfs$universal$path$gateway$content$list$entry$details(params: Params$web3$hostname$ipfs$universal$path$gateway$content$list$entry$details, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { Accept: "application/json" }; @@ -74688,7 +74685,7 @@ export class Client { } /** Edit IPFS Universal Path Gateway Content List Entry */ public async web3$hostname$edit$ipfs$universal$path$gateway$content$list$entry(params: Params$web3$hostname$edit$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74702,7 +74699,7 @@ export class Client { } /** Delete IPFS Universal Path Gateway Content List Entry */ public async web3$hostname$delete$ipfs$universal$path$gateway$content$list$entry(params: Params$web3$hostname$delete$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { Accept: "application/json" }; @@ -74717,7 +74714,7 @@ export class Client { * Retrieves analytics aggregated from the last minute of usage on Spectrum applications underneath a given zone. */ public async spectrum$aggregate$analytics$get$current$aggregated$analytics(params: Params$spectrum$aggregate$analytics$get$current$aggregated$analytics, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/aggregate/current\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/aggregate/current`; const headers = { Accept: "application/json" }; @@ -74738,7 +74735,7 @@ export class Client { * Retrieves a list of aggregate metrics grouped by time interval. */ public async spectrum$analytics$$$by$time$$get$analytics$by$time(params: Params$spectrum$analytics$$$by$time$$get$analytics$by$time, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/bytime\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/bytime`; const headers = { Accept: "application/json" }; @@ -74763,7 +74760,7 @@ export class Client { * Retrieves a list of summarised aggregate metrics over a given time period. */ public async spectrum$analytics$$$summary$$get$analytics$summary(params: Params$spectrum$analytics$$$summary$$get$analytics$summary, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/summary\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/summary`; const headers = { Accept: "application/json" }; @@ -74787,7 +74784,7 @@ export class Client { * Retrieves a list of currently existing Spectrum applications inside a zone. */ public async spectrum$applications$list$spectrum$applications(params: Params$spectrum$applications$list$spectrum$applications, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps`; const headers = { Accept: "application/json" }; @@ -74809,7 +74806,7 @@ export class Client { * Creates a new Spectrum application from a configuration using a name for the origin. */ public async spectrum$applications$create$spectrum$application$using$a$name$for$the$origin(params: Params$spectrum$applications$create$spectrum$application$using$a$name$for$the$origin, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74826,7 +74823,7 @@ export class Client { * Gets the application configuration of a specific application inside a zone. */ public async spectrum$applications$get$spectrum$application$configuration(params: Params$spectrum$applications$get$spectrum$application$configuration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -74841,7 +74838,7 @@ export class Client { * Updates a previously existing application's configuration that uses a name for the origin. */ public async spectrum$applications$update$spectrum$application$configuration$using$a$name$for$the$origin(params: Params$spectrum$applications$update$spectrum$application$configuration$using$a$name$for$the$origin, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74858,7 +74855,7 @@ export class Client { * Deletes a previously existing application. */ public async spectrum$applications$delete$spectrum$application(params: Params$spectrum$applications$delete$spectrum$application, option?: RequestOption): Promise { - const url = this.baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = this.baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -74869,5 +74866,3 @@ export class Client { }, option); } } -" -`; diff --git a/test/__tests__/class/__snapshots__/format.domain.ts.snap b/test/__tests__/class/__snapshots__/format.domain/code.ts similarity index 89% rename from test/__tests__/class/__snapshots__/format.domain.ts.snap rename to test/__tests__/class/__snapshots__/format.domain/code.ts index f61092c5..f59a8f33 100644 --- a/test/__tests__/class/__snapshots__/format.domain.ts.snap +++ b/test/__tests__/class/__snapshots__/format.domain/code.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Format Types > format.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -63,7 +60,5 @@ export interface ApiClient { } export class Client { private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } } -" -`; diff --git a/test/__tests__/class/__snapshots__/kubernetes-test.ts.snap b/test/__tests__/class/__snapshots__/kubernetes/client-v1.18.5.ts similarity index 92% rename from test/__tests__/class/__snapshots__/kubernetes-test.ts.snap rename to test/__tests__/class/__snapshots__/kubernetes/client-v1.18.5.ts index b782dab1..96e7f044 100644 --- a/test/__tests__/class/__snapshots__/kubernetes-test.ts.snap +++ b/test/__tests__/class/__snapshots__/kubernetes/client-v1.18.5.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Kubernetes > client-v1.18.5.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.0 // @@ -12,7 +9,7 @@ exports[`Kubernetes > client-v1.18.5.ts 1`] = ` export namespace Schemas { /** MutatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1$MutatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ admissionReviewVersions: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail. */ @@ -20,9 +17,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Equivalent" */ @@ -79,7 +76,7 @@ export namespace Schemas { /** * Resources is a list of resources this rule applies to. * - * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\\\*' means all subresources of pods. '\\*\\\\/scale' means all scale subresources. '\\*\\/\\*' means all resources and their subresources. + * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\*' means all subresources of pods. '\*\\/scale' means all scale subresources. '\*\/\*' means all resources and their subresources. * * If wildcard is present, the validation rule will ensure resources do not overlap with each other. * @@ -91,18 +88,18 @@ export namespace Schemas { } /** ServiceReference holds a reference to Service.legacy.k8s.io */ export interface io$k8s$api$admissionregistration$v1$ServiceReference { - /** \`name\` is the name of the service. Required */ + /** `name` is the name of the service. Required */ name: string; - /** \`namespace\` is the namespace of the service. Required */ + /** `namespace` is the namespace of the service. Required */ namespace: string; - /** \`path\` is an optional URL path which will be sent in any request to this service. */ + /** `path` is an optional URL path which will be sent in any request to this service. */ path?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** ValidatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1$ValidatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ admissionReviewVersions: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail. */ @@ -110,9 +107,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Equivalent" */ @@ -150,15 +147,15 @@ export namespace Schemas { } /** WebhookClientConfig contains the information to make a TLS connection with the webhook */ export interface io$k8s$api$admissionregistration$v1$WebhookClientConfig { - /** \`caBundle\` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + /** `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ caBundle?: string; service?: Schemas.io$k8s$api$admissionregistration$v1$ServiceReference; /** - * \`url\` gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -170,7 +167,7 @@ export namespace Schemas { } /** MutatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1beta1$MutatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to \`['v1beta1']\`. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`. */ admissionReviewVersions?: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1beta1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. */ @@ -178,9 +175,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Exact" */ @@ -237,7 +234,7 @@ export namespace Schemas { /** * Resources is a list of resources this rule applies to. * - * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\\\*' means all subresources of pods. '\\*\\\\/scale' means all scale subresources. '\\*\\/\\*' means all resources and their subresources. + * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\*' means all subresources of pods. '\*\\/scale' means all scale subresources. '\*\/\*' means all resources and their subresources. * * If wildcard is present, the validation rule will ensure resources do not overlap with each other. * @@ -249,18 +246,18 @@ export namespace Schemas { } /** ServiceReference holds a reference to Service.legacy.k8s.io */ export interface io$k8s$api$admissionregistration$v1beta1$ServiceReference { - /** \`name\` is the name of the service. Required */ + /** `name` is the name of the service. Required */ name: string; - /** \`namespace\` is the namespace of the service. Required */ + /** `namespace` is the namespace of the service. Required */ namespace: string; - /** \`path\` is an optional URL path which will be sent in any request to this service. */ + /** `path` is an optional URL path which will be sent in any request to this service. */ path?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** ValidatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1beta1$ValidatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to \`['v1beta1']\`. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`. */ admissionReviewVersions?: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1beta1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. */ @@ -268,9 +265,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Exact" */ @@ -308,15 +305,15 @@ export namespace Schemas { } /** WebhookClientConfig contains the information to make a TLS connection with the webhook */ export interface io$k8s$api$admissionregistration$v1beta1$WebhookClientConfig { - /** \`caBundle\` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + /** `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ caBundle?: string; service?: Schemas.io$k8s$api$admissionregistration$v1beta1$ServiceReference; /** - * \`url\` gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -600,7 +597,7 @@ export namespace Schemas { } /** A StatefulSetSpec is the specification of a StatefulSet. */ export interface io$k8s$api$apps$v1$StatefulSetSpec { - /** podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is \`OrderedReady\`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is \`Parallel\` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. */ + /** podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. */ podManagementPolicy?: string; /** replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. */ replicas?: number; @@ -674,13 +671,13 @@ export namespace Schemas { } /** ServiceReference holds a reference to Service.legacy.k8s.io */ export interface io$k8s$api$auditregistration$v1alpha1$ServiceReference { - /** \`name\` is the name of the service. Required */ + /** `name` is the name of the service. Required */ name: string; - /** \`namespace\` is the namespace of the service. Required */ + /** `namespace` is the namespace of the service. Required */ namespace: string; - /** \`path\` is an optional URL path which will be sent in any request to this service. */ + /** `path` is an optional URL path which will be sent in any request to this service. */ path?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** Webhook holds the configuration of the webhook */ @@ -690,15 +687,15 @@ export namespace Schemas { } /** WebhookClientConfig contains the information to make a connection with the webhook */ export interface io$k8s$api$auditregistration$v1alpha1$WebhookClientConfig { - /** \`caBundle\` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + /** `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ caBundle?: string; service?: Schemas.io$k8s$api$auditregistration$v1alpha1$ServiceReference; /** - * \`url\` gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -879,7 +876,7 @@ export namespace Schemas { resourceNames?: string[]; /** * Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. - * "\\*\\\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. + * "\*\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. */ resources?: string[]; /** Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all. */ @@ -1010,7 +1007,7 @@ export namespace Schemas { resourceNames?: string[]; /** * Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. - * "\\*\\\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. + * "\*\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. */ resources?: string[]; /** Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all. */ @@ -1246,7 +1243,7 @@ export namespace Schemas { /** observedGeneration is the most recent generation observed by this autoscaler. */ observedGeneration?: number; } - /** MetricSpec specifies how to scale based on a single metric (only \`type\` and one other matching field should be set at once). */ + /** MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once). */ export interface io$k8s$api$autoscaling$v2beta1$MetricSpec { external?: Schemas.io$k8s$api$autoscaling$v2beta1$ExternalMetricSource; object?: Schemas.io$k8s$api$autoscaling$v2beta1$ObjectMetricSource; @@ -1306,7 +1303,7 @@ export namespace Schemas { } /** ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. */ export interface io$k8s$api$autoscaling$v2beta1$ResourceMetricStatus { - /** currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if \`targetAverageValue\` was set in the corresponding metric specification. */ + /** currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification. */ currentAverageUtilization?: number; currentAverageValue: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; /** name is the name of the resource in question. */ @@ -1417,7 +1414,7 @@ export namespace Schemas { name: string; selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; } - /** MetricSpec specifies how to scale based on a single metric (only \`type\` and one other matching field should be set at once). */ + /** MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once). */ export interface io$k8s$api$autoscaling$v2beta2$MetricSpec { external?: Schemas.io$k8s$api$autoscaling$v2beta2$ExternalMetricSource; object?: Schemas.io$k8s$api$autoscaling$v2beta2$ObjectMetricSource; @@ -1526,7 +1523,7 @@ export namespace Schemas { backoffLimit?: number; /** Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ completions?: number; - /** manualSelector controls generation of pod labels and pod selectors. Leave \`manualSelector\` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see \`manualSelector=true\` in jobs that were created with the old \`extensions/v1beta1\` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector */ + /** manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector */ manualSelector?: boolean; /** Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ parallelism?: number; @@ -1680,13 +1677,13 @@ export namespace Schemas { /** Base64-encoded PKCS#10 CSR data */ request: string; /** - * Requested signer for the request. It is a qualified name in the form: \`scope-hostname.io/name\`. If empty, it will be defaulted: + * Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted: * 1. If it's a kubelet client certificate, it is assigned * "kubernetes.io/kube-apiserver-client-kubelet". * 2. If it's a kubelet serving certificate, it is assigned * "kubernetes.io/kubelet-serving". * 3. Otherwise, it is assigned "kubernetes.io/legacy-unknown". - * Distribution of trust for signers happens out of band. You can select on this field using \`spec.signerName\`. + * Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. */ signerName?: string; /** UID information about the requesting user. See user.Info interface for details. */ @@ -2351,9 +2348,9 @@ export namespace Schemas { /** This should be a short, machine understandable string that gives the reason for the transition into the object's current status. */ reason?: string; related?: Schemas.io$k8s$api$core$v1$ObjectReference; - /** Name of the controller that emitted this Event, e.g. \`kubernetes.io/kubelet\`. */ + /** Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. */ reportingComponent?: string; - /** ID of the controller instance, e.g. \`kubelet-xyzf\`. */ + /** ID of the controller instance, e.g. `kubelet-xyzf`. */ reportingInstance?: string; series?: Schemas.io$k8s$api$core$v1$EventSeries; source?: Schemas.io$k8s$api$core$v1$EventSource; @@ -3209,7 +3206,7 @@ export namespace Schemas { export interface io$k8s$api$core$v1$PodStatus { /** Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions */ conditions?: Schemas.io$k8s$api$core$v1$PodCondition[]; - /** The list has one entry per container in the manifest. Each entry is currently the output of \`docker inspect\`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status */ + /** The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status */ containerStatuses?: Schemas.io$k8s$api$core$v1$ContainerStatus[]; /** Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature. */ ephemeralContainerStatuses?: Schemas.io$k8s$api$core$v1$ContainerStatus[]; @@ -4019,9 +4016,9 @@ export namespace Schemas { reason?: string; regarding?: Schemas.io$k8s$api$core$v1$ObjectReference; related?: Schemas.io$k8s$api$core$v1$ObjectReference; - /** Name of the controller that emitted this Event, e.g. \`kubernetes.io/kubelet\`. */ + /** Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. */ reportingController?: string; - /** ID of the controller instance, e.g. \`kubelet-xyzf\`. */ + /** ID of the controller instance, e.g. `kubelet-xyzf`. */ reportingInstance?: string; series?: Schemas.io$k8s$api$events$v1beta1$EventSeries; /** Type of this event (Normal, Warning), new types could be added in the future. */ @@ -4102,7 +4099,7 @@ export namespace Schemas { /** * Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to * the IP in the Spec of the parent Ingress. - * 2. The \`:\` delimiter is not respected because ports are not allowed. + * 2. The `:` delimiter is not respected because ports are not allowed. * Currently the port of an Ingress is implicitly :80 for http and * :443 for https. * Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. @@ -4115,7 +4112,7 @@ export namespace Schemas { /** IngressSpec describes the Ingress the user wishes to exist. */ export interface io$k8s$api$extensions$v1beta1$IngressSpec { backend?: Schemas.io$k8s$api$extensions$v1beta1$IngressBackend; - /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated \`kubernetes.io/ingress.class\` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ + /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ ingressClassName?: string; /** A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. */ rules?: Schemas.io$k8s$api$extensions$v1beta1$IngressRule[]; @@ -4135,7 +4132,7 @@ export namespace Schemas { } /** FlowDistinguisherMethod specifies the method of a flow distinguisher. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowDistinguisherMethod { - /** \`type\` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required. */ + /** `type` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required. */ type: string; } /** FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher". */ @@ -4151,20 +4148,20 @@ export namespace Schemas { /** FlowSchemaCondition describes conditions for a FlowSchema. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaCondition { lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; - /** \`message\` is a human-readable message indicating details about last transition. */ + /** `message` is a human-readable message indicating details about last transition. */ message?: string; - /** \`reason\` is a unique, one-word, CamelCase reason for the condition's last transition. */ + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ reason?: string; - /** \`status\` is the status of the condition. Can be True, False, Unknown. Required. */ + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ status?: string; - /** \`type\` is the type of the condition. Required. */ + /** `type` is the type of the condition. Required. */ type?: string; } /** FlowSchemaList is a list of FlowSchema objects. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaList { /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ apiVersion?: string; - /** \`items\` is a list of FlowSchemas. */ + /** `items` is a list of FlowSchemas. */ items: Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema[]; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -4173,15 +4170,15 @@ export namespace Schemas { /** FlowSchemaSpec describes how the FlowSchema's specification looks like. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaSpec { distinguisherMethod?: Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowDistinguisherMethod; - /** \`matchingPrecedence\` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default. */ + /** `matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default. */ matchingPrecedence?: number; priorityLevelConfiguration: Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationReference; - /** \`rules\` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema. */ + /** `rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema. */ rules?: Schemas.io$k8s$api$flowcontrol$v1alpha1$PolicyRulesWithSubjects[]; } /** FlowSchemaStatus represents the current state of a FlowSchema. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaStatus { - /** \`conditions\` is a list of the current states of FlowSchema. */ + /** `conditions` is a list of the current states of FlowSchema. */ conditions?: Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchemaCondition[]; } /** GroupSubject holds detailed information for group-kind subject. */ @@ -4192,7 +4189,7 @@ export namespace Schemas { /** LimitResponse defines how to handle requests that can not be executed right now. */ export interface io$k8s$api$flowcontrol$v1alpha1$LimitResponse { queuing?: Schemas.io$k8s$api$flowcontrol$v1alpha1$QueuingConfiguration; - /** \`type\` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required. */ + /** `type` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required. */ type: string; } /** @@ -4202,7 +4199,7 @@ export namespace Schemas { */ export interface io$k8s$api$flowcontrol$v1alpha1$LimitedPriorityLevelConfiguration { /** - * \`assuredConcurrencyShares\` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level: + * `assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level: * * ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) ) * @@ -4214,23 +4211,23 @@ export namespace Schemas { /** NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request. */ export interface io$k8s$api$flowcontrol$v1alpha1$NonResourcePolicyRule { /** - * \`nonResourceURLs\` is a set of url prefixes that a user should have access to and may not be empty. For example: + * `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example: * - "/healthz" is legal * - "/hea*" is illegal * - "/hea" is legal but matches nothing - * - "/hea/\\\\*" also matches nothing + * - "/hea/\\*" also matches nothing * - "/healthz/*" matches all per-component health checks. * "*" matches all non-resource urls. if it is present, it must be the only entry. Required. */ nonResourceURLs: string[]; - /** \`verbs\` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. */ + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. */ verbs: string[]; } /** PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request. */ export interface io$k8s$api$flowcontrol$v1alpha1$PolicyRulesWithSubjects { - /** \`nonResourceRules\` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL. */ + /** `nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL. */ nonResourceRules?: Schemas.io$k8s$api$flowcontrol$v1alpha1$NonResourcePolicyRule[]; - /** \`resourceRules\` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of \`resourceRules\` and \`nonResourceRules\` has to be non-empty. */ + /** `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty. */ resourceRules?: Schemas.io$k8s$api$flowcontrol$v1alpha1$ResourcePolicyRule[]; /** subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required. */ subjects: Schemas.io$k8s$api$flowcontrol$v1alpha1$Subject[]; @@ -4248,20 +4245,20 @@ export namespace Schemas { /** PriorityLevelConfigurationCondition defines the condition of priority level. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationCondition { lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; - /** \`message\` is a human-readable message indicating details about last transition. */ + /** `message` is a human-readable message indicating details about last transition. */ message?: string; - /** \`reason\` is a unique, one-word, CamelCase reason for the condition's last transition. */ + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ reason?: string; - /** \`status\` is the status of the condition. Can be True, False, Unknown. Required. */ + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ status?: string; - /** \`type\` is the type of the condition. Required. */ + /** `type` is the type of the condition. Required. */ type?: string; } /** PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationList { /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ apiVersion?: string; - /** \`items\` is a list of request-priorities. */ + /** `items` is a list of request-priorities. */ items: Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration[]; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -4269,47 +4266,47 @@ export namespace Schemas { } /** PriorityLevelConfigurationReference contains information that points to the "request-priority" being used. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationReference { - /** \`name\` is the name of the priority level configuration being referenced Required. */ + /** `name` is the name of the priority level configuration being referenced Required. */ name: string; } /** PriorityLevelConfigurationSpec specifies the configuration of a priority level. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationSpec { limited?: Schemas.io$k8s$api$flowcontrol$v1alpha1$LimitedPriorityLevelConfiguration; - /** \`type\` indicates whether this priority level is subject to limitation on request execution. A value of \`"Exempt"\` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of \`"Limited"\` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required. */ + /** `type` indicates whether this priority level is subject to limitation on request execution. A value of `"Exempt"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `"Limited"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required. */ type: string; } /** PriorityLevelConfigurationStatus represents the current state of a "request-priority". */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationStatus { - /** \`conditions\` is the current state of "request-priority". */ + /** `conditions` is the current state of "request-priority". */ conditions?: Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationCondition[]; } /** QueuingConfiguration holds the configuration parameters for queuing */ export interface io$k8s$api$flowcontrol$v1alpha1$QueuingConfiguration { - /** \`handSize\` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. \`handSize\` must be no larger than \`queues\`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8. */ + /** `handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8. */ handSize?: number; - /** \`queueLengthLimit\` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50. */ + /** `queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50. */ queueLengthLimit?: number; - /** \`queues\` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64. */ + /** `queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64. */ queues?: number; } /** ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request. */ export interface io$k8s$api$flowcontrol$v1alpha1$ResourcePolicyRule { - /** \`apiGroups\` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required. */ + /** `apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required. */ apiGroups: string[]; - /** \`clusterScope\` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the \`namespaces\` field must contain a non-empty list. */ + /** `clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list. */ clusterScope?: boolean; - /** \`namespaces\` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the \`clusterScope\` field for that). This list may be empty, but only if \`clusterScope\` is true. */ + /** `namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true. */ namespaces?: string[]; - /** \`resources\` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required. */ + /** `resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required. */ resources: string[]; - /** \`verbs\` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required. */ + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required. */ verbs: string[]; } /** ServiceAccountSubject holds detailed information for service-account-kind subject. */ export interface io$k8s$api$flowcontrol$v1alpha1$ServiceAccountSubject { - /** \`name\` is the name of matching ServiceAccount objects, or "*" to match regardless of name. Required. */ + /** `name` is the name of matching ServiceAccount objects, or "*" to match regardless of name. Required. */ name: string; - /** \`namespace\` is the namespace of matching ServiceAccount objects. Required. */ + /** `namespace` is the namespace of matching ServiceAccount objects. Required. */ namespace: string; } /** Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account. */ @@ -4322,7 +4319,7 @@ export namespace Schemas { } /** UserSubject holds detailed information for user-kind subject. */ export interface io$k8s$api$flowcontrol$v1alpha1$UserSubject { - /** \`name\` is the username that matches, or "*" to match all usernames. Required. */ + /** `name` is the username that matches, or "*" to match all usernames. Required. */ name: string; } /** IPBlock describes a particular CIDR (Ex. "192.168.1.1/24","2001:db9::/64") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule. */ @@ -4429,7 +4426,7 @@ export namespace Schemas { serviceName?: string; servicePort?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; } - /** IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The \`ingressclass.kubernetes.io/is-default-class\` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class. */ + /** IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class. */ export interface io$k8s$api$networking$v1beta1$IngressClass { /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ apiVersion?: string; @@ -4469,7 +4466,7 @@ export namespace Schemas { /** * Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to * the IP in the Spec of the parent Ingress. - * 2. The \`:\` delimiter is not respected because ports are not allowed. + * 2. The `:` delimiter is not respected because ports are not allowed. * Currently the port of an Ingress is implicitly :80 for http and * :443 for https. * Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. @@ -4482,7 +4479,7 @@ export namespace Schemas { /** IngressSpec describes the Ingress the user wishes to exist. */ export interface io$k8s$api$networking$v1beta1$IngressSpec { backend?: Schemas.io$k8s$api$networking$v1beta1$IngressBackend; - /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated \`kubernetes.io/ingress.class\` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ + /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ ingressClassName?: string; /** A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. */ rules?: Schemas.io$k8s$api$networking$v1beta1$IngressRule[]; @@ -4593,9 +4590,9 @@ export namespace Schemas { /** AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. */ export interface io$k8s$api$policy$v1beta1$AllowedHostPath { /** - * pathPrefix is the path prefix that the host volume must match. It does not support \`*\`. Trailing slashes are trimmed when validating the path prefix with a host path. + * pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. * - * Examples: \`/foo\` would allow \`/foo\`, \`/foo/\` and \`/foo/bar\` \`/foo\` would not allow \`/food\` or \`/etc/foo\` + * Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo` */ pathPrefix?: string; /** when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly. */ @@ -4709,7 +4706,7 @@ export namespace Schemas { /** * allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection. * - * Examples: e.g. "foo/\\\\*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc. + * Examples: e.g. "foo/\\*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc. */ allowedUnsafeSysctls?: string[]; /** defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list. */ @@ -4719,7 +4716,7 @@ export namespace Schemas { /** * forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden. * - * Examples: e.g. "foo/\\\\*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc. + * Examples: e.g. "foo/\\*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc. */ forbiddenSysctls?: string[]; fsGroup: Schemas.io$k8s$api$policy$v1beta1$FSGroupStrategyOptions; @@ -5076,7 +5073,7 @@ export namespace Schemas { nonResourceURLs?: string[]; /** ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. */ resourceNames?: string[]; - /** Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '\\*\\\\/foo' represents the subresource 'foo' for all resources in the specified apiGroups. */ + /** Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '\*\\/foo' represents the subresource 'foo' for all resources in the specified apiGroups. */ resources?: string[]; /** Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. */ verbs: string[]; @@ -5148,7 +5145,7 @@ export namespace Schemas { apiVersion?: string; /** description is an arbitrary string that usually provides guidelines on when this priority class should be used. */ description?: string; - /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as \`globalDefault\`. However, if more than one PriorityClasses exists with their \`globalDefault\` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ + /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ globalDefault?: boolean; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -5174,7 +5171,7 @@ export namespace Schemas { apiVersion?: string; /** description is an arbitrary string that usually provides guidelines on when this priority class should be used. */ description?: string; - /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as \`globalDefault\`. However, if more than one PriorityClasses exists with their \`globalDefault\` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ + /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ globalDefault?: boolean; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -5200,7 +5197,7 @@ export namespace Schemas { apiVersion?: string; /** description is an arbitrary string that usually provides guidelines on when this priority class should be used. */ description?: string; - /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as \`globalDefault\`. However, if more than one PriorityClasses exists with their \`globalDefault\` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ + /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ globalDefault?: boolean; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -5654,7 +5651,7 @@ export namespace Schemas { /** CustomResourceConversion describes how to convert different versions of a CR. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceConversion { /** - * strategy specifies how custom resources are converted between versions. Allowed values are: - \`None\`: The converter only change the apiVersion and would not touch any other field in the custom resource. - \`Webhook\`: API Server will call to an external webhook to do the conversion. Additional information + * strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information * is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set. */ strategy: string; @@ -5694,28 +5691,28 @@ export namespace Schemas { } /** CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames { - /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like \`kubectl get all\`. */ + /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`. */ categories?: string[]; - /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the \`kind\` attribute in API calls. */ + /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls. */ kind: string; - /** listKind is the serialized kind of the list for this resource. Defaults to "\`kind\`List". */ + /** listKind is the serialized kind of the list for this resource. Defaults to "`kind`List". */ listKind?: string; - /** plural is the plural name of the resource to serve. The custom resources are served under \`/apis///.../\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). Must be all lowercase. */ + /** plural is the plural name of the resource to serve. The custom resources are served under `/apis///.../`. Must match the name of the CustomResourceDefinition (in the form `.`). Must be all lowercase. */ plural: string; - /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like \`kubectl get \`. It must be all lowercase. */ + /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get `. It must be all lowercase. */ shortNames?: string[]; - /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased \`kind\`. */ + /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`. */ singular?: string; } /** CustomResourceDefinitionSpec describes how a user wants their resource to appear */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionSpec { conversion?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceConversion; - /** group is the API group of the defined custom resource. The custom resources are served under \`/apis//...\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). */ + /** group is the API group of the defined custom resource. The custom resources are served under `/apis//...`. Must match the name of the CustomResourceDefinition (in the form `.`). */ group: string; names: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames; - /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting \`x-preserve-unknown-fields\` to true in \`spec.versions[*].schema.openAPIV3Schema\`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ + /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ preserveUnknownFields?: boolean; - /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are \`Cluster\` and \`Namespaced\`. */ + /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. */ scope: string; /** versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ versions: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionVersion[]; @@ -5725,14 +5722,14 @@ export namespace Schemas { acceptedNames?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames; /** conditions indicate state for particular aspects of a CustomResourceDefinition */ conditions?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionCondition[]; - /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from \`spec.versions\` while they exist in this list. */ + /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list. */ storedVersions?: string[]; } /** CustomResourceDefinitionVersion describes a version for CRD. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionVersion { /** additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used. */ additionalPrinterColumns?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceColumnDefinition[]; - /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at \`/apis///...\` if \`served\` is true. */ + /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis///...` if `served` is true. */ name: string; schema?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceValidation; /** served is a flag enabling/disabling this version from being served via REST APIs */ @@ -5743,14 +5740,14 @@ export namespace Schemas { } /** CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceScale { - /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.selector\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\` or \`.spec\`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the \`status.selector\` value in the \`/scale\` subresource will default to the empty string. */ + /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string. */ labelSelectorPath?: string; - /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`spec.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.spec\`. If there is no value under the given path in the custom resource, the \`/scale\` subresource will return an error on GET. */ + /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET. */ specReplicasPath: string; - /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\`. If there is no value under the given path in the custom resource, the \`status.replicas\` value in the \`/scale\` subresource will default to 0. */ + /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0. */ statusReplicasPath: string; } - /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the \`.status\` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ + /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceStatus { } /** CustomResourceSubresources defines the status and scale subresources for CustomResources. */ @@ -5793,7 +5790,7 @@ export namespace Schemas { /** * format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated: * - * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. + * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. */ format?: string; id?: string; @@ -5837,7 +5834,7 @@ export namespace Schemas { */ "x-kubernetes-int-or-string"?: boolean; /** - * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type \`map\` by specifying the keys used as the index of the map. + * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map. * * This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). * @@ -5847,14 +5844,14 @@ export namespace Schemas { /** * x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values: * - * 1) \`atomic\`: the list is treated as a single entity, like a scalar. + * 1) `atomic`: the list is treated as a single entity, like a scalar. * Atomic lists will be entirely replaced when updated. This extension * may be used on any type of list (struct, scalar, ...). - * 2) \`set\`: + * 2) `set`: * Sets are lists that must not have multiple items with the same value. Each - * value must be a scalar, an object with x-kubernetes-map-type \`atomic\` or an - * array with x-kubernetes-list-type \`atomic\`. - * 3) \`map\`: + * value must be a scalar, an object with x-kubernetes-map-type `atomic` or an + * array with x-kubernetes-list-type `atomic`. + * 3) `map`: * These lists are like maps in that their elements have a non-index key * used to identify them. Order is preserved upon merge. The map tag * must only be used on a list with elements of type object. @@ -5864,11 +5861,11 @@ export namespace Schemas { /** * x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: * - * 1) \`granular\`: + * 1) `granular`: * These maps are actual maps (key-value pairs) and each fields are independent * from each other (they can each be manipulated by separate actors). This is * the default behaviour for all maps. - * 2) \`atomic\`: the list is treated as a single entity, like a scalar. + * 2) `atomic`: the list is treated as a single entity, like a scalar. * Atomic maps will be entirely replaced when updated. */ "x-kubernetes-map-type"?: string; @@ -5889,7 +5886,7 @@ export namespace Schemas { namespace: string; /** path is an optional URL path at which the webhook will be contacted. */ path?: string; - /** port is an optional service port at which the webhook will be contacted. \`port\` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ + /** port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ port?: number; } /** WebhookClientConfig contains the information to make a TLS connection with the webhook. */ @@ -5898,11 +5895,11 @@ export namespace Schemas { caBundle?: string; service?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ServiceReference; /** - * url gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -5915,7 +5912,7 @@ export namespace Schemas { /** WebhookConversion describes how to call a conversion webhook */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookConversion { clientConfig?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookClientConfig; - /** conversionReviewVersions is an ordered list of preferred \`ConversionReview\` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. */ + /** conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. */ conversionReviewVersions: string[]; } /** CustomResourceColumnDefinition specifies a column for server side printing. */ @@ -5935,10 +5932,10 @@ export namespace Schemas { } /** CustomResourceConversion describes how to convert different versions of a CR. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceConversion { - /** conversionReviewVersions is an ordered list of preferred \`ConversionReview\` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to \`["v1beta1"]\`. */ + /** conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `["v1beta1"]`. */ conversionReviewVersions?: string[]; /** - * strategy specifies how custom resources are converted between versions. Allowed values are: - \`None\`: The converter only change the apiVersion and would not touch any other field in the custom resource. - \`Webhook\`: API Server will call to an external webhook to do the conversion. Additional information + * strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information * is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set. */ strategy: string; @@ -5978,17 +5975,17 @@ export namespace Schemas { } /** CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionNames { - /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like \`kubectl get all\`. */ + /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`. */ categories?: string[]; - /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the \`kind\` attribute in API calls. */ + /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls. */ kind: string; - /** listKind is the serialized kind of the list for this resource. Defaults to "\`kind\`List". */ + /** listKind is the serialized kind of the list for this resource. Defaults to "`kind`List". */ listKind?: string; - /** plural is the plural name of the resource to serve. The custom resources are served under \`/apis///.../\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). Must be all lowercase. */ + /** plural is the plural name of the resource to serve. The custom resources are served under `/apis///.../`. Must match the name of the CustomResourceDefinition (in the form `.`). Must be all lowercase. */ plural: string; - /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like \`kubectl get \`. It must be all lowercase. */ + /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get `. It must be all lowercase. */ shortNames?: string[]; - /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased \`kind\`. */ + /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`. */ singular?: string; } /** CustomResourceDefinitionSpec describes how a user wants their resource to appear */ @@ -5996,18 +5993,18 @@ export namespace Schemas { /** additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If present, this field configures columns for all versions. Top-level and per-version columns are mutually exclusive. If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used. */ additionalPrinterColumns?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceColumnDefinition[]; conversion?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceConversion; - /** group is the API group of the defined custom resource. The custom resources are served under \`/apis//...\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). */ + /** group is the API group of the defined custom resource. The custom resources are served under `/apis//...`. Must match the name of the CustomResourceDefinition (in the form `.`). */ group: string; names: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionNames; - /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the \`x-kubernetes-preserve-unknown-fields: true\` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ + /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the `x-kubernetes-preserve-unknown-fields: true` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ preserveUnknownFields?: boolean; - /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are \`Cluster\` and \`Namespaced\`. Default is \`Namespaced\`. */ + /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`. */ scope: string; subresources?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceSubresources; validation?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceValidation; - /** version is the API version of the defined custom resource. The custom resources are served under \`/apis///...\`. Must match the name of the first item in the \`versions\` list if \`version\` and \`versions\` are both specified. Optional if \`versions\` is specified. Deprecated: use \`versions\` instead. */ + /** version is the API version of the defined custom resource. The custom resources are served under `/apis///...`. Must match the name of the first item in the `versions` list if `version` and `versions` are both specified. Optional if `versions` is specified. Deprecated: use `versions` instead. */ version?: string; - /** versions is the list of all API versions of the defined custom resource. Optional if \`version\` is specified. The name of the first item in the \`versions\` list must match the \`version\` field if \`version\` and \`versions\` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ + /** versions is the list of all API versions of the defined custom resource. Optional if `version` is specified. The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ versions?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionVersion[]; } /** CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition */ @@ -6015,14 +6012,14 @@ export namespace Schemas { acceptedNames?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionNames; /** conditions indicate state for particular aspects of a CustomResourceDefinition */ conditions?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionCondition[]; - /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from \`spec.versions\` while they exist in this list. */ + /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list. */ storedVersions?: string[]; } /** CustomResourceDefinitionVersion describes a version for CRD. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionVersion { /** additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used. */ additionalPrinterColumns?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceColumnDefinition[]; - /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at \`/apis///...\` if \`served\` is true. */ + /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis///...` if `served` is true. */ name: string; schema?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceValidation; /** served is a flag enabling/disabling this version from being served via REST APIs */ @@ -6033,14 +6030,14 @@ export namespace Schemas { } /** CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceSubresourceScale { - /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.selector\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\` or \`.spec\`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the \`status.selector\` value in the \`/scale\` subresource will default to the empty string. */ + /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string. */ labelSelectorPath?: string; - /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`spec.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.spec\`. If there is no value under the given path in the custom resource, the \`/scale\` subresource will return an error on GET. */ + /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET. */ specReplicasPath: string; - /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\`. If there is no value under the given path in the custom resource, the \`status.replicas\` value in the \`/scale\` subresource will default to 0. */ + /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0. */ statusReplicasPath: string; } - /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the \`.status\` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ + /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceSubresourceStatus { } /** CustomResourceSubresources defines the status and scale subresources for CustomResources. */ @@ -6083,7 +6080,7 @@ export namespace Schemas { /** * format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated: * - * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. + * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. */ format?: string; id?: string; @@ -6127,7 +6124,7 @@ export namespace Schemas { */ "x-kubernetes-int-or-string"?: boolean; /** - * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type \`map\` by specifying the keys used as the index of the map. + * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map. * * This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). * @@ -6137,14 +6134,14 @@ export namespace Schemas { /** * x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values: * - * 1) \`atomic\`: the list is treated as a single entity, like a scalar. + * 1) `atomic`: the list is treated as a single entity, like a scalar. * Atomic lists will be entirely replaced when updated. This extension * may be used on any type of list (struct, scalar, ...). - * 2) \`set\`: + * 2) `set`: * Sets are lists that must not have multiple items with the same value. Each - * value must be a scalar, an object with x-kubernetes-map-type \`atomic\` or an - * array with x-kubernetes-list-type \`atomic\`. - * 3) \`map\`: + * value must be a scalar, an object with x-kubernetes-map-type `atomic` or an + * array with x-kubernetes-list-type `atomic`. + * 3) `map`: * These lists are like maps in that their elements have a non-index key * used to identify them. Order is preserved upon merge. The map tag * must only be used on a list with elements of type object. @@ -6154,11 +6151,11 @@ export namespace Schemas { /** * x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: * - * 1) \`granular\`: + * 1) `granular`: * These maps are actual maps (key-value pairs) and each fields are independent * from each other (they can each be manipulated by separate actors). This is * the default behaviour for all maps. - * 2) \`atomic\`: the list is treated as a single entity, like a scalar. + * 2) `atomic`: the list is treated as a single entity, like a scalar. * Atomic maps will be entirely replaced when updated. */ "x-kubernetes-map-type"?: string; @@ -6179,7 +6176,7 @@ export namespace Schemas { namespace: string; /** path is an optional URL path at which the webhook will be contacted. */ path?: string; - /** port is an optional service port at which the webhook will be contacted. \`port\` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ + /** port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ port?: number; } /** WebhookClientConfig contains the information to make a TLS connection with the webhook. */ @@ -6188,11 +6185,11 @@ export namespace Schemas { caBundle?: string; service?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$ServiceReference; /** - * url gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -6535,17 +6532,17 @@ export namespace Schemas { * To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. * * // Internal package: type MyAPIObject struct { - * runtime.TypeMeta \`json:",inline"\` - * MyPlugin runtime.Object \`json:"myPlugin"\` + * runtime.TypeMeta `json:",inline"` + * MyPlugin runtime.Object `json:"myPlugin"` * } type PluginA struct { - * AOption string \`json:"aOption"\` + * AOption string `json:"aOption"` * } * * // External package: type MyAPIObject struct { - * runtime.TypeMeta \`json:",inline"\` - * MyPlugin runtime.RawExtension \`json:"myPlugin"\` + * runtime.TypeMeta `json:",inline"` + * MyPlugin runtime.RawExtension `json:"myPlugin"` * } type PluginA struct { - * AOption string \`json:"aOption"\` + * AOption string `json:"aOption"` * } * * // On the wire, the JSON will look something like this: { @@ -6633,7 +6630,7 @@ export namespace Schemas { name?: string; /** Namespace is the namespace of the service */ namespace?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** APIService represents a server for a particular GroupVersion. Name must be "version.group". */ @@ -6694,7 +6691,7 @@ export namespace Schemas { name?: string; /** Namespace is the namespace of the service */ namespace?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } } @@ -7122,7 +7119,7 @@ export interface Parameter$listCoreV1ComponentStatus { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7168,7 +7165,7 @@ export interface Parameter$listCoreV1ConfigMapForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7203,7 +7200,7 @@ export interface Parameter$listCoreV1EndpointsForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7238,7 +7235,7 @@ export interface Parameter$listCoreV1EventForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7273,7 +7270,7 @@ export interface Parameter$listCoreV1LimitRangeForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7310,7 +7307,7 @@ export interface Parameter$listCoreV1Namespace { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7395,7 +7392,7 @@ export interface Parameter$listCoreV1NamespacedConfigMap { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7462,7 +7459,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedConfigMap { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7589,7 +7586,7 @@ export interface Parameter$listCoreV1NamespacedEndpoints { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7656,7 +7653,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEndpoints { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7783,7 +7780,7 @@ export interface Parameter$listCoreV1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7850,7 +7847,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7977,7 +7974,7 @@ export interface Parameter$listCoreV1NamespacedLimitRange { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8044,7 +8041,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedLimitRange { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8171,7 +8168,7 @@ export interface Parameter$listCoreV1NamespacedPersistentVolumeClaim { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8238,7 +8235,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPersistentVolumeClaim /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8421,7 +8418,7 @@ export interface Parameter$listCoreV1NamespacedPod { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8488,7 +8485,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPod { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9015,7 +9012,7 @@ export interface Parameter$listCoreV1NamespacedPodTemplate { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9082,7 +9079,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPodTemplate { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9209,7 +9206,7 @@ export interface Parameter$listCoreV1NamespacedReplicationController { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9276,7 +9273,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedReplicationController /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9515,7 +9512,7 @@ export interface Parameter$listCoreV1NamespacedResourceQuota { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9582,7 +9579,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedResourceQuota { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9765,7 +9762,7 @@ export interface Parameter$listCoreV1NamespacedSecret { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9832,7 +9829,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedSecret { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9959,7 +9956,7 @@ export interface Parameter$listCoreV1NamespacedServiceAccount { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10026,7 +10023,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedServiceAccount { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10183,7 +10180,7 @@ export interface Parameter$listCoreV1NamespacedService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10693,7 +10690,7 @@ export interface Parameter$listCoreV1Node { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10756,7 +10753,7 @@ export interface Parameter$deleteCoreV1CollectionNode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11047,7 +11044,7 @@ export interface Parameter$listCoreV1PersistentVolumeClaimForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11084,7 +11081,7 @@ export interface Parameter$listCoreV1PersistentVolume { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11147,7 +11144,7 @@ export interface Parameter$deleteCoreV1CollectionPersistentVolume { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11312,7 +11309,7 @@ export interface Parameter$listCoreV1PodForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11347,7 +11344,7 @@ export interface Parameter$listCoreV1PodTemplateForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11382,7 +11379,7 @@ export interface Parameter$listCoreV1ReplicationControllerForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11417,7 +11414,7 @@ export interface Parameter$listCoreV1ResourceQuotaForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11452,7 +11449,7 @@ export interface Parameter$listCoreV1SecretForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11487,7 +11484,7 @@ export interface Parameter$listCoreV1ServiceAccountForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11522,7 +11519,7 @@ export interface Parameter$listCoreV1ServiceForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11557,7 +11554,7 @@ export interface Parameter$watchCoreV1ConfigMapListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11592,7 +11589,7 @@ export interface Parameter$watchCoreV1EndpointsListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11627,7 +11624,7 @@ export interface Parameter$watchCoreV1EventListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11662,7 +11659,7 @@ export interface Parameter$watchCoreV1LimitRangeListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11697,7 +11694,7 @@ export interface Parameter$watchCoreV1NamespaceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11732,7 +11729,7 @@ export interface Parameter$watchCoreV1NamespacedConfigMapList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11769,7 +11766,7 @@ export interface Parameter$watchCoreV1NamespacedConfigMap { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11808,7 +11805,7 @@ export interface Parameter$watchCoreV1NamespacedEndpointsList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11845,7 +11842,7 @@ export interface Parameter$watchCoreV1NamespacedEndpoints { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11884,7 +11881,7 @@ export interface Parameter$watchCoreV1NamespacedEventList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11921,7 +11918,7 @@ export interface Parameter$watchCoreV1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11960,7 +11957,7 @@ export interface Parameter$watchCoreV1NamespacedLimitRangeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11997,7 +11994,7 @@ export interface Parameter$watchCoreV1NamespacedLimitRange { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12036,7 +12033,7 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaimList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12073,7 +12070,7 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12112,7 +12109,7 @@ export interface Parameter$watchCoreV1NamespacedPodList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12149,7 +12146,7 @@ export interface Parameter$watchCoreV1NamespacedPod { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12188,7 +12185,7 @@ export interface Parameter$watchCoreV1NamespacedPodTemplateList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12225,7 +12222,7 @@ export interface Parameter$watchCoreV1NamespacedPodTemplate { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12264,7 +12261,7 @@ export interface Parameter$watchCoreV1NamespacedReplicationControllerList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12301,7 +12298,7 @@ export interface Parameter$watchCoreV1NamespacedReplicationController { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12340,7 +12337,7 @@ export interface Parameter$watchCoreV1NamespacedResourceQuotaList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12377,7 +12374,7 @@ export interface Parameter$watchCoreV1NamespacedResourceQuota { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12416,7 +12413,7 @@ export interface Parameter$watchCoreV1NamespacedSecretList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12453,7 +12450,7 @@ export interface Parameter$watchCoreV1NamespacedSecret { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12492,7 +12489,7 @@ export interface Parameter$watchCoreV1NamespacedServiceAccountList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12529,7 +12526,7 @@ export interface Parameter$watchCoreV1NamespacedServiceAccount { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12568,7 +12565,7 @@ export interface Parameter$watchCoreV1NamespacedServiceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12605,7 +12602,7 @@ export interface Parameter$watchCoreV1NamespacedService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12644,7 +12641,7 @@ export interface Parameter$watchCoreV1Namespace { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12681,7 +12678,7 @@ export interface Parameter$watchCoreV1NodeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12716,7 +12713,7 @@ export interface Parameter$watchCoreV1Node { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12753,7 +12750,7 @@ export interface Parameter$watchCoreV1PersistentVolumeClaimListForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12788,7 +12785,7 @@ export interface Parameter$watchCoreV1PersistentVolumeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12823,7 +12820,7 @@ export interface Parameter$watchCoreV1PersistentVolume { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12860,7 +12857,7 @@ export interface Parameter$watchCoreV1PodListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12895,7 +12892,7 @@ export interface Parameter$watchCoreV1PodTemplateListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12930,7 +12927,7 @@ export interface Parameter$watchCoreV1ReplicationControllerListForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12965,7 +12962,7 @@ export interface Parameter$watchCoreV1ResourceQuotaListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13000,7 +12997,7 @@ export interface Parameter$watchCoreV1SecretListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13035,7 +13032,7 @@ export interface Parameter$watchCoreV1ServiceAccountListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13070,7 +13067,7 @@ export interface Parameter$watchCoreV1ServiceListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13122,7 +13119,7 @@ export interface Parameter$listAdmissionregistrationV1MutatingWebhookConfigurati /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13185,7 +13182,7 @@ export interface Parameter$deleteAdmissionregistrationV1CollectionMutatingWebhoo /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13302,7 +13299,7 @@ export interface Parameter$listAdmissionregistrationV1ValidatingWebhookConfigura /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13365,7 +13362,7 @@ export interface Parameter$deleteAdmissionregistrationV1CollectionValidatingWebh /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13480,7 +13477,7 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13515,7 +13512,7 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13552,7 +13549,7 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13587,7 +13584,7 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13631,7 +13628,7 @@ export interface Parameter$listAdmissionregistrationV1beta1MutatingWebhookConfig /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13694,7 +13691,7 @@ export interface Parameter$deleteAdmissionregistrationV1beta1CollectionMutatingW /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13811,7 +13808,7 @@ export interface Parameter$listAdmissionregistrationV1beta1ValidatingWebhookConf /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13874,7 +13871,7 @@ export interface Parameter$deleteAdmissionregistrationV1beta1CollectionValidatin /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13989,7 +13986,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14024,7 +14021,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14061,7 +14058,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14096,7 +14093,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14145,7 +14142,7 @@ export interface Parameter$listApiextensionsV1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14208,7 +14205,7 @@ export interface Parameter$deleteApiextensionsV1CollectionCustomResourceDefiniti /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14373,7 +14370,7 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinitionList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14408,7 +14405,7 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14452,7 +14449,7 @@ export interface Parameter$listApiextensionsV1beta1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14515,7 +14512,7 @@ export interface Parameter$deleteApiextensionsV1beta1CollectionCustomResourceDef /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14680,7 +14677,7 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinitionList /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14715,7 +14712,7 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14764,7 +14761,7 @@ export interface Parameter$listApiregistrationV1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14827,7 +14824,7 @@ export interface Parameter$deleteApiregistrationV1CollectionAPIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14992,7 +14989,7 @@ export interface Parameter$watchApiregistrationV1APIServiceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15027,7 +15024,7 @@ export interface Parameter$watchApiregistrationV1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15071,7 +15068,7 @@ export interface Parameter$listApiregistrationV1beta1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15134,7 +15131,7 @@ export interface Parameter$deleteApiregistrationV1beta1CollectionAPIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15299,7 +15296,7 @@ export interface Parameter$watchApiregistrationV1beta1APIServiceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15334,7 +15331,7 @@ export interface Parameter$watchApiregistrationV1beta1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15381,7 +15378,7 @@ export interface Parameter$listAppsV1ControllerRevisionForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15416,7 +15413,7 @@ export interface Parameter$listAppsV1DaemonSetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15451,7 +15448,7 @@ export interface Parameter$listAppsV1DeploymentForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15488,7 +15485,7 @@ export interface Parameter$listAppsV1NamespacedControllerRevision { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15555,7 +15552,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedControllerRevision { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15682,7 +15679,7 @@ export interface Parameter$listAppsV1NamespacedDaemonSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15749,7 +15746,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDaemonSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15932,7 +15929,7 @@ export interface Parameter$listAppsV1NamespacedDeployment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15999,7 +15996,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDeployment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16238,7 +16235,7 @@ export interface Parameter$listAppsV1NamespacedReplicaSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16305,7 +16302,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedReplicaSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16544,7 +16541,7 @@ export interface Parameter$listAppsV1NamespacedStatefulSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16611,7 +16608,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedStatefulSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16848,7 +16845,7 @@ export interface Parameter$listAppsV1ReplicaSetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16883,7 +16880,7 @@ export interface Parameter$listAppsV1StatefulSetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16918,7 +16915,7 @@ export interface Parameter$watchAppsV1ControllerRevisionListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16953,7 +16950,7 @@ export interface Parameter$watchAppsV1DaemonSetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16988,7 +16985,7 @@ export interface Parameter$watchAppsV1DeploymentListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17023,7 +17020,7 @@ export interface Parameter$watchAppsV1NamespacedControllerRevisionList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17060,7 +17057,7 @@ export interface Parameter$watchAppsV1NamespacedControllerRevision { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17099,7 +17096,7 @@ export interface Parameter$watchAppsV1NamespacedDaemonSetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17136,7 +17133,7 @@ export interface Parameter$watchAppsV1NamespacedDaemonSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17175,7 +17172,7 @@ export interface Parameter$watchAppsV1NamespacedDeploymentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17212,7 +17209,7 @@ export interface Parameter$watchAppsV1NamespacedDeployment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17251,7 +17248,7 @@ export interface Parameter$watchAppsV1NamespacedReplicaSetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17288,7 +17285,7 @@ export interface Parameter$watchAppsV1NamespacedReplicaSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17327,7 +17324,7 @@ export interface Parameter$watchAppsV1NamespacedStatefulSetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17364,7 +17361,7 @@ export interface Parameter$watchAppsV1NamespacedStatefulSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17403,7 +17400,7 @@ export interface Parameter$watchAppsV1ReplicaSetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17438,7 +17435,7 @@ export interface Parameter$watchAppsV1StatefulSetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17485,7 +17482,7 @@ export interface Parameter$listAuditregistrationV1alpha1AuditSink { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17548,7 +17545,7 @@ export interface Parameter$deleteAuditregistrationV1alpha1CollectionAuditSink { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17663,7 +17660,7 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSinkList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17698,7 +17695,7 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSink { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18039,7 +18036,7 @@ export interface Parameter$listAutoscalingV1HorizontalPodAutoscalerForAllNamespa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18076,7 +18073,7 @@ export interface Parameter$listAutoscalingV1NamespacedHorizontalPodAutoscaler { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18143,7 +18140,7 @@ export interface Parameter$deleteAutoscalingV1CollectionNamespacedHorizontalPodA /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18324,7 +18321,7 @@ export interface Parameter$watchAutoscalingV1HorizontalPodAutoscalerListForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18359,7 +18356,7 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerLi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18396,7 +18393,7 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18440,7 +18437,7 @@ export interface Parameter$listAutoscalingV2beta1HorizontalPodAutoscalerForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18477,7 +18474,7 @@ export interface Parameter$listAutoscalingV2beta1NamespacedHorizontalPodAutoscal /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18544,7 +18541,7 @@ export interface Parameter$deleteAutoscalingV2beta1CollectionNamespacedHorizonta /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18725,7 +18722,7 @@ export interface Parameter$watchAutoscalingV2beta1HorizontalPodAutoscalerListFor /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18760,7 +18757,7 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18797,7 +18794,7 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18841,7 +18838,7 @@ export interface Parameter$listAutoscalingV2beta2HorizontalPodAutoscalerForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18878,7 +18875,7 @@ export interface Parameter$listAutoscalingV2beta2NamespacedHorizontalPodAutoscal /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18945,7 +18942,7 @@ export interface Parameter$deleteAutoscalingV2beta2CollectionNamespacedHorizonta /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19126,7 +19123,7 @@ export interface Parameter$watchAutoscalingV2beta2HorizontalPodAutoscalerListFor /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19161,7 +19158,7 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19198,7 +19195,7 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19247,7 +19244,7 @@ export interface Parameter$listBatchV1JobForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19284,7 +19281,7 @@ export interface Parameter$listBatchV1NamespacedJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19351,7 +19348,7 @@ export interface Parameter$deleteBatchV1CollectionNamespacedJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19532,7 +19529,7 @@ export interface Parameter$watchBatchV1JobListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19567,7 +19564,7 @@ export interface Parameter$watchBatchV1NamespacedJobList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19604,7 +19601,7 @@ export interface Parameter$watchBatchV1NamespacedJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19648,7 +19645,7 @@ export interface Parameter$listBatchV1beta1CronJobForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19685,7 +19682,7 @@ export interface Parameter$listBatchV1beta1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19752,7 +19749,7 @@ export interface Parameter$deleteBatchV1beta1CollectionNamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19933,7 +19930,7 @@ export interface Parameter$watchBatchV1beta1CronJobListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19968,7 +19965,7 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJobList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20005,7 +20002,7 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20049,7 +20046,7 @@ export interface Parameter$listBatchV2alpha1CronJobForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20086,7 +20083,7 @@ export interface Parameter$listBatchV2alpha1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20153,7 +20150,7 @@ export interface Parameter$deleteBatchV2alpha1CollectionNamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20334,7 +20331,7 @@ export interface Parameter$watchBatchV2alpha1CronJobListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20369,7 +20366,7 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJobList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20406,7 +20403,7 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20457,7 +20454,7 @@ export interface Parameter$listCertificatesV1beta1CertificateSigningRequest { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20520,7 +20517,7 @@ export interface Parameter$deleteCertificatesV1beta1CollectionCertificateSigning /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20706,7 +20703,7 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequestList /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20741,7 +20738,7 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequest { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20788,7 +20785,7 @@ export interface Parameter$listCoordinationV1LeaseForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20825,7 +20822,7 @@ export interface Parameter$listCoordinationV1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20892,7 +20889,7 @@ export interface Parameter$deleteCoordinationV1CollectionNamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21017,7 +21014,7 @@ export interface Parameter$watchCoordinationV1LeaseListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21052,7 +21049,7 @@ export interface Parameter$watchCoordinationV1NamespacedLeaseList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21089,7 +21086,7 @@ export interface Parameter$watchCoordinationV1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21133,7 +21130,7 @@ export interface Parameter$listCoordinationV1beta1LeaseForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21170,7 +21167,7 @@ export interface Parameter$listCoordinationV1beta1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21237,7 +21234,7 @@ export interface Parameter$deleteCoordinationV1beta1CollectionNamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21362,7 +21359,7 @@ export interface Parameter$watchCoordinationV1beta1LeaseListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21397,7 +21394,7 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLeaseList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21434,7 +21431,7 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21483,7 +21480,7 @@ export interface Parameter$listDiscoveryV1beta1EndpointSliceForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21520,7 +21517,7 @@ export interface Parameter$listDiscoveryV1beta1NamespacedEndpointSlice { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21587,7 +21584,7 @@ export interface Parameter$deleteDiscoveryV1beta1CollectionNamespacedEndpointSli /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21712,7 +21709,7 @@ export interface Parameter$watchDiscoveryV1beta1EndpointSliceListForAllNamespace /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21747,7 +21744,7 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSliceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21784,7 +21781,7 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSlice { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21833,7 +21830,7 @@ export interface Parameter$listEventsV1beta1EventForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21870,7 +21867,7 @@ export interface Parameter$listEventsV1beta1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21937,7 +21934,7 @@ export interface Parameter$deleteEventsV1beta1CollectionNamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22062,7 +22059,7 @@ export interface Parameter$watchEventsV1beta1EventListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22097,7 +22094,7 @@ export interface Parameter$watchEventsV1beta1NamespacedEventList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22134,7 +22131,7 @@ export interface Parameter$watchEventsV1beta1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22183,7 +22180,7 @@ export interface Parameter$listExtensionsV1beta1IngressForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22220,7 +22217,7 @@ export interface Parameter$listExtensionsV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22287,7 +22284,7 @@ export interface Parameter$deleteExtensionsV1beta1CollectionNamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22468,7 +22465,7 @@ export interface Parameter$watchExtensionsV1beta1IngressListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22503,7 +22500,7 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngressList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22540,7 +22537,7 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22591,7 +22588,7 @@ export interface Parameter$listFlowcontrolApiserverV1alpha1FlowSchema { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22654,7 +22651,7 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1CollectionFlowSchem /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22821,7 +22818,7 @@ export interface Parameter$listFlowcontrolApiserverV1alpha1PriorityLevelConfigur /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22884,7 +22881,7 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1CollectionPriorityL /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23049,7 +23046,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchemaList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23084,7 +23081,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchema { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23121,7 +23118,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23156,7 +23153,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23205,7 +23202,7 @@ export interface Parameter$listNetworkingV1NamespacedNetworkPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23272,7 +23269,7 @@ export interface Parameter$deleteNetworkingV1CollectionNamespacedNetworkPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23397,7 +23394,7 @@ export interface Parameter$listNetworkingV1NetworkPolicyForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23432,7 +23429,7 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicyList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23469,7 +23466,7 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23508,7 +23505,7 @@ export interface Parameter$watchNetworkingV1NetworkPolicyListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23550,7 +23547,7 @@ export interface Parameter$listNetworkingV1beta1IngressClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23613,7 +23610,7 @@ export interface Parameter$deleteNetworkingV1beta1CollectionIngressClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23728,7 +23725,7 @@ export interface Parameter$listNetworkingV1beta1IngressForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23765,7 +23762,7 @@ export interface Parameter$listNetworkingV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23832,7 +23829,7 @@ export interface Parameter$deleteNetworkingV1beta1CollectionNamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24013,7 +24010,7 @@ export interface Parameter$watchNetworkingV1beta1IngressClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24048,7 +24045,7 @@ export interface Parameter$watchNetworkingV1beta1IngressClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24085,7 +24082,7 @@ export interface Parameter$watchNetworkingV1beta1IngressListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24120,7 +24117,7 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngressList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24157,7 +24154,7 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24208,7 +24205,7 @@ export interface Parameter$listNodeV1alpha1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24271,7 +24268,7 @@ export interface Parameter$deleteNodeV1alpha1CollectionRuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24386,7 +24383,7 @@ export interface Parameter$watchNodeV1alpha1RuntimeClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24421,7 +24418,7 @@ export interface Parameter$watchNodeV1alpha1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24465,7 +24462,7 @@ export interface Parameter$listNodeV1beta1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24528,7 +24525,7 @@ export interface Parameter$deleteNodeV1beta1CollectionRuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24643,7 +24640,7 @@ export interface Parameter$watchNodeV1beta1RuntimeClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24678,7 +24675,7 @@ export interface Parameter$watchNodeV1beta1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24727,7 +24724,7 @@ export interface Parameter$listPolicyV1beta1NamespacedPodDisruptionBudget { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24794,7 +24791,7 @@ export interface Parameter$deletePolicyV1beta1CollectionNamespacedPodDisruptionB /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24975,7 +24972,7 @@ export interface Parameter$listPolicyV1beta1PodDisruptionBudgetForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25012,7 +25009,7 @@ export interface Parameter$listPolicyV1beta1PodSecurityPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25075,7 +25072,7 @@ export interface Parameter$deletePolicyV1beta1CollectionPodSecurityPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25190,7 +25187,7 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudgetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25227,7 +25224,7 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudget { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25266,7 +25263,7 @@ export interface Parameter$watchPolicyV1beta1PodDisruptionBudgetListForAllNamesp /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25301,7 +25298,7 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicyList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25336,7 +25333,7 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25385,7 +25382,7 @@ export interface Parameter$listRbacAuthorizationV1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25448,7 +25445,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionClusterRoleBinding /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25561,7 +25558,7 @@ export interface Parameter$listRbacAuthorizationV1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25624,7 +25621,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25737,7 +25734,7 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25804,7 +25801,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRoleBind /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25927,7 +25924,7 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25994,7 +25991,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26115,7 +26112,7 @@ export interface Parameter$listRbacAuthorizationV1RoleBindingForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26150,7 +26147,7 @@ export interface Parameter$listRbacAuthorizationV1RoleForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26185,7 +26182,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBindingList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26220,7 +26217,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26257,7 +26254,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26292,7 +26289,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26329,7 +26326,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26366,7 +26363,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26405,7 +26402,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26442,7 +26439,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26481,7 +26478,7 @@ export interface Parameter$watchRbacAuthorizationV1RoleBindingListForAllNamespac /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26516,7 +26513,7 @@ export interface Parameter$watchRbacAuthorizationV1RoleListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26558,7 +26555,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26621,7 +26618,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionClusterRoleB /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26734,7 +26731,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26797,7 +26794,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionClusterRole /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26910,7 +26907,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26977,7 +26974,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27100,7 +27097,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27167,7 +27164,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27288,7 +27285,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1RoleBindingForAllNamespa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27323,7 +27320,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1RoleForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27358,7 +27355,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBindingList /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27393,7 +27390,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27430,7 +27427,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27465,7 +27462,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27502,7 +27499,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBindingLi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27539,7 +27536,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27578,7 +27575,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27615,7 +27612,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27654,7 +27651,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1RoleBindingListForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27689,7 +27686,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1RoleListForAllNamespace /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27731,7 +27728,7 @@ export interface Parameter$listRbacAuthorizationV1beta1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27794,7 +27791,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionClusterRoleBi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27907,7 +27904,7 @@ export interface Parameter$listRbacAuthorizationV1beta1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27970,7 +27967,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28083,7 +28080,7 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28150,7 +28147,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28273,7 +28270,7 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28340,7 +28337,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28461,7 +28458,7 @@ export interface Parameter$listRbacAuthorizationV1beta1RoleBindingForAllNamespac /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28496,7 +28493,7 @@ export interface Parameter$listRbacAuthorizationV1beta1RoleForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28531,7 +28528,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBindingList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28566,7 +28563,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28603,7 +28600,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28638,7 +28635,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28675,7 +28672,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBindingLis /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28712,7 +28709,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28751,7 +28748,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28788,7 +28785,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28827,7 +28824,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1RoleBindingListForAllNam /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28862,7 +28859,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1RoleListForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28909,7 +28906,7 @@ export interface Parameter$listSchedulingV1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28972,7 +28969,7 @@ export interface Parameter$deleteSchedulingV1CollectionPriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29087,7 +29084,7 @@ export interface Parameter$watchSchedulingV1PriorityClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29122,7 +29119,7 @@ export interface Parameter$watchSchedulingV1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29166,7 +29163,7 @@ export interface Parameter$listSchedulingV1alpha1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29229,7 +29226,7 @@ export interface Parameter$deleteSchedulingV1alpha1CollectionPriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29344,7 +29341,7 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29379,7 +29376,7 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29423,7 +29420,7 @@ export interface Parameter$listSchedulingV1beta1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29486,7 +29483,7 @@ export interface Parameter$deleteSchedulingV1beta1CollectionPriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29601,7 +29598,7 @@ export interface Parameter$watchSchedulingV1beta1PriorityClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29636,7 +29633,7 @@ export interface Parameter$watchSchedulingV1beta1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29685,7 +29682,7 @@ export interface Parameter$listSettingsV1alpha1NamespacedPodPreset { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29752,7 +29749,7 @@ export interface Parameter$deleteSettingsV1alpha1CollectionNamespacedPodPreset { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29877,7 +29874,7 @@ export interface Parameter$listSettingsV1alpha1PodPresetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29912,7 +29909,7 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPresetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29949,7 +29946,7 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPreset { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29988,7 +29985,7 @@ export interface Parameter$watchSettingsV1alpha1PodPresetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30035,7 +30032,7 @@ export interface Parameter$listStorageV1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30098,7 +30095,7 @@ export interface Parameter$deleteStorageV1CollectionCSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30215,7 +30212,7 @@ export interface Parameter$listStorageV1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30278,7 +30275,7 @@ export interface Parameter$deleteStorageV1CollectionCSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30395,7 +30392,7 @@ export interface Parameter$listStorageV1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30458,7 +30455,7 @@ export interface Parameter$deleteStorageV1CollectionStorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30575,7 +30572,7 @@ export interface Parameter$listStorageV1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30638,7 +30635,7 @@ export interface Parameter$deleteStorageV1CollectionVolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30803,7 +30800,7 @@ export interface Parameter$watchStorageV1CSIDriverList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30838,7 +30835,7 @@ export interface Parameter$watchStorageV1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30875,7 +30872,7 @@ export interface Parameter$watchStorageV1CSINodeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30910,7 +30907,7 @@ export interface Parameter$watchStorageV1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30947,7 +30944,7 @@ export interface Parameter$watchStorageV1StorageClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30982,7 +30979,7 @@ export interface Parameter$watchStorageV1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31019,7 +31016,7 @@ export interface Parameter$watchStorageV1VolumeAttachmentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31054,7 +31051,7 @@ export interface Parameter$watchStorageV1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31098,7 +31095,7 @@ export interface Parameter$listStorageV1alpha1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31161,7 +31158,7 @@ export interface Parameter$deleteStorageV1alpha1CollectionVolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31276,7 +31273,7 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachmentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31311,7 +31308,7 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31355,7 +31352,7 @@ export interface Parameter$listStorageV1beta1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31418,7 +31415,7 @@ export interface Parameter$deleteStorageV1beta1CollectionCSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31535,7 +31532,7 @@ export interface Parameter$listStorageV1beta1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31598,7 +31595,7 @@ export interface Parameter$deleteStorageV1beta1CollectionCSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31715,7 +31712,7 @@ export interface Parameter$listStorageV1beta1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31778,7 +31775,7 @@ export interface Parameter$deleteStorageV1beta1CollectionStorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31895,7 +31892,7 @@ export interface Parameter$listStorageV1beta1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31958,7 +31955,7 @@ export interface Parameter$deleteStorageV1beta1CollectionVolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32073,7 +32070,7 @@ export interface Parameter$watchStorageV1beta1CSIDriverList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32108,7 +32105,7 @@ export interface Parameter$watchStorageV1beta1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32145,7 +32142,7 @@ export interface Parameter$watchStorageV1beta1CSINodeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32180,7 +32177,7 @@ export interface Parameter$watchStorageV1beta1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32217,7 +32214,7 @@ export interface Parameter$watchStorageV1beta1StorageClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32252,7 +32249,7 @@ export interface Parameter$watchStorageV1beta1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32289,7 +32286,7 @@ export interface Parameter$watchStorageV1beta1VolumeAttachmentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32324,7 +32321,7 @@ export interface Parameter$watchStorageV1beta1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -41045,10 +41042,10 @@ export interface ApiClient { } export class Client { private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } /** get available API versions */ public async getCoreAPIVersions(params: Params$getCoreAPIVersions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/\`; + const url = this.baseUrl + `/api/`; const headers = { Accept: params.headers.Accept }; @@ -41060,7 +41057,7 @@ export class Client { } /** get available resources */ public async getCoreV1APIResources(params: Params$getCoreV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/\`; + const url = this.baseUrl + `/api/v1/`; const headers = { Accept: params.headers.Accept }; @@ -41072,7 +41069,7 @@ export class Client { } /** list objects of kind ComponentStatus */ public async listCoreV1ComponentStatus(params: Params$listCoreV1ComponentStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/componentstatuses\`; + const url = this.baseUrl + `/api/v1/componentstatuses`; const headers = { Accept: params.headers.Accept }; @@ -41096,7 +41093,7 @@ export class Client { } /** read the specified ComponentStatus */ public async readCoreV1ComponentStatus(params: Params$readCoreV1ComponentStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/componentstatuses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/componentstatuses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41112,7 +41109,7 @@ export class Client { } /** list or watch objects of kind ConfigMap */ public async listCoreV1ConfigMapForAllNamespaces(params: Params$listCoreV1ConfigMapForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/configmaps\`; + const url = this.baseUrl + `/api/v1/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -41136,7 +41133,7 @@ export class Client { } /** list or watch objects of kind Endpoints */ public async listCoreV1EndpointsForAllNamespaces(params: Params$listCoreV1EndpointsForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/endpoints\`; + const url = this.baseUrl + `/api/v1/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -41160,7 +41157,7 @@ export class Client { } /** list or watch objects of kind Event */ public async listCoreV1EventForAllNamespaces(params: Params$listCoreV1EventForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/events\`; + const url = this.baseUrl + `/api/v1/events`; const headers = { Accept: params.headers.Accept }; @@ -41184,7 +41181,7 @@ export class Client { } /** list or watch objects of kind LimitRange */ public async listCoreV1LimitRangeForAllNamespaces(params: Params$listCoreV1LimitRangeForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/limitranges\`; + const url = this.baseUrl + `/api/v1/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -41208,7 +41205,7 @@ export class Client { } /** list or watch objects of kind Namespace */ public async listCoreV1Namespace(params: Params$listCoreV1Namespace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces\`; + const url = this.baseUrl + `/api/v1/namespaces`; const headers = { Accept: params.headers.Accept }; @@ -41232,7 +41229,7 @@ export class Client { } /** create a Namespace */ public async createCoreV1Namespace(params: Params$createCoreV1Namespace, option?: RequestOption): Promise<(Response$createCoreV1Namespace$Status$200 | Response$createCoreV1Namespace$Status$201 | Response$createCoreV1Namespace$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces\`; + const url = this.baseUrl + `/api/v1/namespaces`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41252,7 +41249,7 @@ export class Client { } /** create a Binding */ public async createCoreV1NamespacedBinding(params: Params$createCoreV1NamespacedBinding, option?: RequestOption): Promise<(Response$createCoreV1NamespacedBinding$Status$200 | Response$createCoreV1NamespacedBinding$Status$201 | Response$createCoreV1NamespacedBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/bindings\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/bindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41272,7 +41269,7 @@ export class Client { } /** list or watch objects of kind ConfigMap */ public async listCoreV1NamespacedConfigMap(params: Params$listCoreV1NamespacedConfigMap, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -41296,7 +41293,7 @@ export class Client { } /** create a ConfigMap */ public async createCoreV1NamespacedConfigMap(params: Params$createCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$createCoreV1NamespacedConfigMap$Status$200 | Response$createCoreV1NamespacedConfigMap$Status$201 | Response$createCoreV1NamespacedConfigMap$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41316,7 +41313,7 @@ export class Client { } /** delete collection of ConfigMap */ public async deleteCoreV1CollectionNamespacedConfigMap(params: Params$deleteCoreV1CollectionNamespacedConfigMap, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41346,7 +41343,7 @@ export class Client { } /** read the specified ConfigMap */ public async readCoreV1NamespacedConfigMap(params: Params$readCoreV1NamespacedConfigMap, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41364,7 +41361,7 @@ export class Client { } /** replace the specified ConfigMap */ public async replaceCoreV1NamespacedConfigMap(params: Params$replaceCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedConfigMap$Status$200 | Response$replaceCoreV1NamespacedConfigMap$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41384,7 +41381,7 @@ export class Client { } /** delete a ConfigMap */ public async deleteCoreV1NamespacedConfigMap(params: Params$deleteCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedConfigMap$Status$200 | Response$deleteCoreV1NamespacedConfigMap$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41406,7 +41403,7 @@ export class Client { } /** partially update the specified ConfigMap */ public async patchCoreV1NamespacedConfigMap(params: Params$patchCoreV1NamespacedConfigMap, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41427,7 +41424,7 @@ export class Client { } /** list or watch objects of kind Endpoints */ public async listCoreV1NamespacedEndpoints(params: Params$listCoreV1NamespacedEndpoints, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -41451,7 +41448,7 @@ export class Client { } /** create Endpoints */ public async createCoreV1NamespacedEndpoints(params: Params$createCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$createCoreV1NamespacedEndpoints$Status$200 | Response$createCoreV1NamespacedEndpoints$Status$201 | Response$createCoreV1NamespacedEndpoints$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41471,7 +41468,7 @@ export class Client { } /** delete collection of Endpoints */ public async deleteCoreV1CollectionNamespacedEndpoints(params: Params$deleteCoreV1CollectionNamespacedEndpoints, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41501,7 +41498,7 @@ export class Client { } /** read the specified Endpoints */ public async readCoreV1NamespacedEndpoints(params: Params$readCoreV1NamespacedEndpoints, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41519,7 +41516,7 @@ export class Client { } /** replace the specified Endpoints */ public async replaceCoreV1NamespacedEndpoints(params: Params$replaceCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedEndpoints$Status$200 | Response$replaceCoreV1NamespacedEndpoints$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41539,7 +41536,7 @@ export class Client { } /** delete Endpoints */ public async deleteCoreV1NamespacedEndpoints(params: Params$deleteCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedEndpoints$Status$200 | Response$deleteCoreV1NamespacedEndpoints$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41561,7 +41558,7 @@ export class Client { } /** partially update the specified Endpoints */ public async patchCoreV1NamespacedEndpoints(params: Params$patchCoreV1NamespacedEndpoints, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41582,7 +41579,7 @@ export class Client { } /** list or watch objects of kind Event */ public async listCoreV1NamespacedEvent(params: Params$listCoreV1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -41606,7 +41603,7 @@ export class Client { } /** create an Event */ public async createCoreV1NamespacedEvent(params: Params$createCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$createCoreV1NamespacedEvent$Status$200 | Response$createCoreV1NamespacedEvent$Status$201 | Response$createCoreV1NamespacedEvent$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41626,7 +41623,7 @@ export class Client { } /** delete collection of Event */ public async deleteCoreV1CollectionNamespacedEvent(params: Params$deleteCoreV1CollectionNamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41656,7 +41653,7 @@ export class Client { } /** read the specified Event */ public async readCoreV1NamespacedEvent(params: Params$readCoreV1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41674,7 +41671,7 @@ export class Client { } /** replace the specified Event */ public async replaceCoreV1NamespacedEvent(params: Params$replaceCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedEvent$Status$200 | Response$replaceCoreV1NamespacedEvent$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41694,7 +41691,7 @@ export class Client { } /** delete an Event */ public async deleteCoreV1NamespacedEvent(params: Params$deleteCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedEvent$Status$200 | Response$deleteCoreV1NamespacedEvent$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41716,7 +41713,7 @@ export class Client { } /** partially update the specified Event */ public async patchCoreV1NamespacedEvent(params: Params$patchCoreV1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41737,7 +41734,7 @@ export class Client { } /** list or watch objects of kind LimitRange */ public async listCoreV1NamespacedLimitRange(params: Params$listCoreV1NamespacedLimitRange, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -41761,7 +41758,7 @@ export class Client { } /** create a LimitRange */ public async createCoreV1NamespacedLimitRange(params: Params$createCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$createCoreV1NamespacedLimitRange$Status$200 | Response$createCoreV1NamespacedLimitRange$Status$201 | Response$createCoreV1NamespacedLimitRange$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41781,7 +41778,7 @@ export class Client { } /** delete collection of LimitRange */ public async deleteCoreV1CollectionNamespacedLimitRange(params: Params$deleteCoreV1CollectionNamespacedLimitRange, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41811,7 +41808,7 @@ export class Client { } /** read the specified LimitRange */ public async readCoreV1NamespacedLimitRange(params: Params$readCoreV1NamespacedLimitRange, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41829,7 +41826,7 @@ export class Client { } /** replace the specified LimitRange */ public async replaceCoreV1NamespacedLimitRange(params: Params$replaceCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedLimitRange$Status$200 | Response$replaceCoreV1NamespacedLimitRange$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41849,7 +41846,7 @@ export class Client { } /** delete a LimitRange */ public async deleteCoreV1NamespacedLimitRange(params: Params$deleteCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedLimitRange$Status$200 | Response$deleteCoreV1NamespacedLimitRange$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41871,7 +41868,7 @@ export class Client { } /** partially update the specified LimitRange */ public async patchCoreV1NamespacedLimitRange(params: Params$patchCoreV1NamespacedLimitRange, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41892,7 +41889,7 @@ export class Client { } /** list or watch objects of kind PersistentVolumeClaim */ public async listCoreV1NamespacedPersistentVolumeClaim(params: Params$listCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -41916,7 +41913,7 @@ export class Client { } /** create a PersistentVolumeClaim */ public async createCoreV1NamespacedPersistentVolumeClaim(params: Params$createCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$201 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41936,7 +41933,7 @@ export class Client { } /** delete collection of PersistentVolumeClaim */ public async deleteCoreV1CollectionNamespacedPersistentVolumeClaim(params: Params$deleteCoreV1CollectionNamespacedPersistentVolumeClaim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41966,7 +41963,7 @@ export class Client { } /** read the specified PersistentVolumeClaim */ public async readCoreV1NamespacedPersistentVolumeClaim(params: Params$readCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41984,7 +41981,7 @@ export class Client { } /** replace the specified PersistentVolumeClaim */ public async replaceCoreV1NamespacedPersistentVolumeClaim(params: Params$replaceCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42004,7 +42001,7 @@ export class Client { } /** delete a PersistentVolumeClaim */ public async deleteCoreV1NamespacedPersistentVolumeClaim(params: Params$deleteCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42026,7 +42023,7 @@ export class Client { } /** partially update the specified PersistentVolumeClaim */ public async patchCoreV1NamespacedPersistentVolumeClaim(params: Params$patchCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42047,7 +42044,7 @@ export class Client { } /** read status of the specified PersistentVolumeClaim */ public async readCoreV1NamespacedPersistentVolumeClaimStatus(params: Params$readCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -42063,7 +42060,7 @@ export class Client { } /** replace status of the specified PersistentVolumeClaim */ public async replaceCoreV1NamespacedPersistentVolumeClaimStatus(params: Params$replaceCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42083,7 +42080,7 @@ export class Client { } /** partially update status of the specified PersistentVolumeClaim */ public async patchCoreV1NamespacedPersistentVolumeClaimStatus(params: Params$patchCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42104,7 +42101,7 @@ export class Client { } /** list or watch objects of kind Pod */ public async listCoreV1NamespacedPod(params: Params$listCoreV1NamespacedPod, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { Accept: params.headers.Accept }; @@ -42128,7 +42125,7 @@ export class Client { } /** create a Pod */ public async createCoreV1NamespacedPod(params: Params$createCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPod$Status$200 | Response$createCoreV1NamespacedPod$Status$201 | Response$createCoreV1NamespacedPod$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42148,7 +42145,7 @@ export class Client { } /** delete collection of Pod */ public async deleteCoreV1CollectionNamespacedPod(params: Params$deleteCoreV1CollectionNamespacedPod, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42178,7 +42175,7 @@ export class Client { } /** read the specified Pod */ public async readCoreV1NamespacedPod(params: Params$readCoreV1NamespacedPod, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -42196,7 +42193,7 @@ export class Client { } /** replace the specified Pod */ public async replaceCoreV1NamespacedPod(params: Params$replaceCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPod$Status$200 | Response$replaceCoreV1NamespacedPod$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42216,7 +42213,7 @@ export class Client { } /** delete a Pod */ public async deleteCoreV1NamespacedPod(params: Params$deleteCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPod$Status$200 | Response$deleteCoreV1NamespacedPod$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42238,7 +42235,7 @@ export class Client { } /** partially update the specified Pod */ public async patchCoreV1NamespacedPod(params: Params$patchCoreV1NamespacedPod, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42259,7 +42256,7 @@ export class Client { } /** connect GET requests to attach of Pod */ public async connectCoreV1GetNamespacedPodAttach(params: Params$connectCoreV1GetNamespacedPodAttach, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/attach\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/attach`; const headers = { Accept: "*/*" }; @@ -42279,7 +42276,7 @@ export class Client { } /** connect POST requests to attach of Pod */ public async connectCoreV1PostNamespacedPodAttach(params: Params$connectCoreV1PostNamespacedPodAttach, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/attach\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/attach`; const headers = { Accept: "*/*" }; @@ -42299,7 +42296,7 @@ export class Client { } /** create binding of a Pod */ public async createCoreV1NamespacedPodBinding(params: Params$createCoreV1NamespacedPodBinding, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodBinding$Status$200 | Response$createCoreV1NamespacedPodBinding$Status$201 | Response$createCoreV1NamespacedPodBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/binding\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/binding`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42319,7 +42316,7 @@ export class Client { } /** create eviction of a Pod */ public async createCoreV1NamespacedPodEviction(params: Params$createCoreV1NamespacedPodEviction, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodEviction$Status$200 | Response$createCoreV1NamespacedPodEviction$Status$201 | Response$createCoreV1NamespacedPodEviction$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/eviction\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/eviction`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42339,7 +42336,7 @@ export class Client { } /** connect GET requests to exec of Pod */ public async connectCoreV1GetNamespacedPodExec(params: Params$connectCoreV1GetNamespacedPodExec, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/exec\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/exec`; const headers = { Accept: "*/*" }; @@ -42360,7 +42357,7 @@ export class Client { } /** connect POST requests to exec of Pod */ public async connectCoreV1PostNamespacedPodExec(params: Params$connectCoreV1PostNamespacedPodExec, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/exec\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/exec`; const headers = { Accept: "*/*" }; @@ -42381,7 +42378,7 @@ export class Client { } /** read log of the specified Pod */ public async readCoreV1NamespacedPodLog(params: Params$readCoreV1NamespacedPodLog, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/log\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/log`; const headers = { Accept: params.headers.Accept }; @@ -42405,7 +42402,7 @@ export class Client { } /** connect GET requests to portforward of Pod */ public async connectCoreV1GetNamespacedPodPortforward(params: Params$connectCoreV1GetNamespacedPodPortforward, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/portforward\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/portforward`; const headers = { Accept: "*/*" }; @@ -42421,7 +42418,7 @@ export class Client { } /** connect POST requests to portforward of Pod */ public async connectCoreV1PostNamespacedPodPortforward(params: Params$connectCoreV1PostNamespacedPodPortforward, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/portforward\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/portforward`; const headers = { Accept: "*/*" }; @@ -42437,7 +42434,7 @@ export class Client { } /** connect GET requests to proxy of Pod */ public async connectCoreV1GetNamespacedPodProxy(params: Params$connectCoreV1GetNamespacedPodProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42453,7 +42450,7 @@ export class Client { } /** connect PUT requests to proxy of Pod */ public async connectCoreV1PutNamespacedPodProxy(params: Params$connectCoreV1PutNamespacedPodProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42469,7 +42466,7 @@ export class Client { } /** connect POST requests to proxy of Pod */ public async connectCoreV1PostNamespacedPodProxy(params: Params$connectCoreV1PostNamespacedPodProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42485,7 +42482,7 @@ export class Client { } /** connect DELETE requests to proxy of Pod */ public async connectCoreV1DeleteNamespacedPodProxy(params: Params$connectCoreV1DeleteNamespacedPodProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42501,7 +42498,7 @@ export class Client { } /** connect OPTIONS requests to proxy of Pod */ public async connectCoreV1OptionsNamespacedPodProxy(params: Params$connectCoreV1OptionsNamespacedPodProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42517,7 +42514,7 @@ export class Client { } /** connect HEAD requests to proxy of Pod */ public async connectCoreV1HeadNamespacedPodProxy(params: Params$connectCoreV1HeadNamespacedPodProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42533,7 +42530,7 @@ export class Client { } /** connect PATCH requests to proxy of Pod */ public async connectCoreV1PatchNamespacedPodProxy(params: Params$connectCoreV1PatchNamespacedPodProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42549,7 +42546,7 @@ export class Client { } /** connect GET requests to proxy of Pod */ public async connectCoreV1GetNamespacedPodProxyWithPath(params: Params$connectCoreV1GetNamespacedPodProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42565,7 +42562,7 @@ export class Client { } /** connect PUT requests to proxy of Pod */ public async connectCoreV1PutNamespacedPodProxyWithPath(params: Params$connectCoreV1PutNamespacedPodProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42581,7 +42578,7 @@ export class Client { } /** connect POST requests to proxy of Pod */ public async connectCoreV1PostNamespacedPodProxyWithPath(params: Params$connectCoreV1PostNamespacedPodProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42597,7 +42594,7 @@ export class Client { } /** connect DELETE requests to proxy of Pod */ public async connectCoreV1DeleteNamespacedPodProxyWithPath(params: Params$connectCoreV1DeleteNamespacedPodProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42613,7 +42610,7 @@ export class Client { } /** connect OPTIONS requests to proxy of Pod */ public async connectCoreV1OptionsNamespacedPodProxyWithPath(params: Params$connectCoreV1OptionsNamespacedPodProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42629,7 +42626,7 @@ export class Client { } /** connect HEAD requests to proxy of Pod */ public async connectCoreV1HeadNamespacedPodProxyWithPath(params: Params$connectCoreV1HeadNamespacedPodProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42645,7 +42642,7 @@ export class Client { } /** connect PATCH requests to proxy of Pod */ public async connectCoreV1PatchNamespacedPodProxyWithPath(params: Params$connectCoreV1PatchNamespacedPodProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42661,7 +42658,7 @@ export class Client { } /** read status of the specified Pod */ public async readCoreV1NamespacedPodStatus(params: Params$readCoreV1NamespacedPodStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -42677,7 +42674,7 @@ export class Client { } /** replace status of the specified Pod */ public async replaceCoreV1NamespacedPodStatus(params: Params$replaceCoreV1NamespacedPodStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPodStatus$Status$200 | Response$replaceCoreV1NamespacedPodStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42697,7 +42694,7 @@ export class Client { } /** partially update status of the specified Pod */ public async patchCoreV1NamespacedPodStatus(params: Params$patchCoreV1NamespacedPodStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42718,7 +42715,7 @@ export class Client { } /** list or watch objects of kind PodTemplate */ public async listCoreV1NamespacedPodTemplate(params: Params$listCoreV1NamespacedPodTemplate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -42742,7 +42739,7 @@ export class Client { } /** create a PodTemplate */ public async createCoreV1NamespacedPodTemplate(params: Params$createCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodTemplate$Status$200 | Response$createCoreV1NamespacedPodTemplate$Status$201 | Response$createCoreV1NamespacedPodTemplate$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42762,7 +42759,7 @@ export class Client { } /** delete collection of PodTemplate */ public async deleteCoreV1CollectionNamespacedPodTemplate(params: Params$deleteCoreV1CollectionNamespacedPodTemplate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42792,7 +42789,7 @@ export class Client { } /** read the specified PodTemplate */ public async readCoreV1NamespacedPodTemplate(params: Params$readCoreV1NamespacedPodTemplate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -42810,7 +42807,7 @@ export class Client { } /** replace the specified PodTemplate */ public async replaceCoreV1NamespacedPodTemplate(params: Params$replaceCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPodTemplate$Status$200 | Response$replaceCoreV1NamespacedPodTemplate$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42830,7 +42827,7 @@ export class Client { } /** delete a PodTemplate */ public async deleteCoreV1NamespacedPodTemplate(params: Params$deleteCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPodTemplate$Status$200 | Response$deleteCoreV1NamespacedPodTemplate$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42852,7 +42849,7 @@ export class Client { } /** partially update the specified PodTemplate */ public async patchCoreV1NamespacedPodTemplate(params: Params$patchCoreV1NamespacedPodTemplate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42873,7 +42870,7 @@ export class Client { } /** list or watch objects of kind ReplicationController */ public async listCoreV1NamespacedReplicationController(params: Params$listCoreV1NamespacedReplicationController, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -42897,7 +42894,7 @@ export class Client { } /** create a ReplicationController */ public async createCoreV1NamespacedReplicationController(params: Params$createCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$createCoreV1NamespacedReplicationController$Status$200 | Response$createCoreV1NamespacedReplicationController$Status$201 | Response$createCoreV1NamespacedReplicationController$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42917,7 +42914,7 @@ export class Client { } /** delete collection of ReplicationController */ public async deleteCoreV1CollectionNamespacedReplicationController(params: Params$deleteCoreV1CollectionNamespacedReplicationController, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42947,7 +42944,7 @@ export class Client { } /** read the specified ReplicationController */ public async readCoreV1NamespacedReplicationController(params: Params$readCoreV1NamespacedReplicationController, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -42965,7 +42962,7 @@ export class Client { } /** replace the specified ReplicationController */ public async replaceCoreV1NamespacedReplicationController(params: Params$replaceCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationController$Status$200 | Response$replaceCoreV1NamespacedReplicationController$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42985,7 +42982,7 @@ export class Client { } /** delete a ReplicationController */ public async deleteCoreV1NamespacedReplicationController(params: Params$deleteCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedReplicationController$Status$200 | Response$deleteCoreV1NamespacedReplicationController$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43007,7 +43004,7 @@ export class Client { } /** partially update the specified ReplicationController */ public async patchCoreV1NamespacedReplicationController(params: Params$patchCoreV1NamespacedReplicationController, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43028,7 +43025,7 @@ export class Client { } /** read scale of the specified ReplicationController */ public async readCoreV1NamespacedReplicationControllerScale(params: Params$readCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -43044,7 +43041,7 @@ export class Client { } /** replace scale of the specified ReplicationController */ public async replaceCoreV1NamespacedReplicationControllerScale(params: Params$replaceCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerScale$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43064,7 +43061,7 @@ export class Client { } /** partially update scale of the specified ReplicationController */ public async patchCoreV1NamespacedReplicationControllerScale(params: Params$patchCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43085,7 +43082,7 @@ export class Client { } /** read status of the specified ReplicationController */ public async readCoreV1NamespacedReplicationControllerStatus(params: Params$readCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -43101,7 +43098,7 @@ export class Client { } /** replace status of the specified ReplicationController */ public async replaceCoreV1NamespacedReplicationControllerStatus(params: Params$replaceCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43121,7 +43118,7 @@ export class Client { } /** partially update status of the specified ReplicationController */ public async patchCoreV1NamespacedReplicationControllerStatus(params: Params$patchCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43142,7 +43139,7 @@ export class Client { } /** list or watch objects of kind ResourceQuota */ public async listCoreV1NamespacedResourceQuota(params: Params$listCoreV1NamespacedResourceQuota, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -43166,7 +43163,7 @@ export class Client { } /** create a ResourceQuota */ public async createCoreV1NamespacedResourceQuota(params: Params$createCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$createCoreV1NamespacedResourceQuota$Status$200 | Response$createCoreV1NamespacedResourceQuota$Status$201 | Response$createCoreV1NamespacedResourceQuota$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43186,7 +43183,7 @@ export class Client { } /** delete collection of ResourceQuota */ public async deleteCoreV1CollectionNamespacedResourceQuota(params: Params$deleteCoreV1CollectionNamespacedResourceQuota, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43216,7 +43213,7 @@ export class Client { } /** read the specified ResourceQuota */ public async readCoreV1NamespacedResourceQuota(params: Params$readCoreV1NamespacedResourceQuota, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43234,7 +43231,7 @@ export class Client { } /** replace the specified ResourceQuota */ public async replaceCoreV1NamespacedResourceQuota(params: Params$replaceCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedResourceQuota$Status$200 | Response$replaceCoreV1NamespacedResourceQuota$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43254,7 +43251,7 @@ export class Client { } /** delete a ResourceQuota */ public async deleteCoreV1NamespacedResourceQuota(params: Params$deleteCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedResourceQuota$Status$200 | Response$deleteCoreV1NamespacedResourceQuota$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43276,7 +43273,7 @@ export class Client { } /** partially update the specified ResourceQuota */ public async patchCoreV1NamespacedResourceQuota(params: Params$patchCoreV1NamespacedResourceQuota, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43297,7 +43294,7 @@ export class Client { } /** read status of the specified ResourceQuota */ public async readCoreV1NamespacedResourceQuotaStatus(params: Params$readCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -43313,7 +43310,7 @@ export class Client { } /** replace status of the specified ResourceQuota */ public async replaceCoreV1NamespacedResourceQuotaStatus(params: Params$replaceCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 | Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43333,7 +43330,7 @@ export class Client { } /** partially update status of the specified ResourceQuota */ public async patchCoreV1NamespacedResourceQuotaStatus(params: Params$patchCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43354,7 +43351,7 @@ export class Client { } /** list or watch objects of kind Secret */ public async listCoreV1NamespacedSecret(params: Params$listCoreV1NamespacedSecret, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { Accept: params.headers.Accept }; @@ -43378,7 +43375,7 @@ export class Client { } /** create a Secret */ public async createCoreV1NamespacedSecret(params: Params$createCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$createCoreV1NamespacedSecret$Status$200 | Response$createCoreV1NamespacedSecret$Status$201 | Response$createCoreV1NamespacedSecret$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43398,7 +43395,7 @@ export class Client { } /** delete collection of Secret */ public async deleteCoreV1CollectionNamespacedSecret(params: Params$deleteCoreV1CollectionNamespacedSecret, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43428,7 +43425,7 @@ export class Client { } /** read the specified Secret */ public async readCoreV1NamespacedSecret(params: Params$readCoreV1NamespacedSecret, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43446,7 +43443,7 @@ export class Client { } /** replace the specified Secret */ public async replaceCoreV1NamespacedSecret(params: Params$replaceCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedSecret$Status$200 | Response$replaceCoreV1NamespacedSecret$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43466,7 +43463,7 @@ export class Client { } /** delete a Secret */ public async deleteCoreV1NamespacedSecret(params: Params$deleteCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedSecret$Status$200 | Response$deleteCoreV1NamespacedSecret$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43488,7 +43485,7 @@ export class Client { } /** partially update the specified Secret */ public async patchCoreV1NamespacedSecret(params: Params$patchCoreV1NamespacedSecret, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43509,7 +43506,7 @@ export class Client { } /** list or watch objects of kind ServiceAccount */ public async listCoreV1NamespacedServiceAccount(params: Params$listCoreV1NamespacedServiceAccount, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -43533,7 +43530,7 @@ export class Client { } /** create a ServiceAccount */ public async createCoreV1NamespacedServiceAccount(params: Params$createCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$createCoreV1NamespacedServiceAccount$Status$200 | Response$createCoreV1NamespacedServiceAccount$Status$201 | Response$createCoreV1NamespacedServiceAccount$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43553,7 +43550,7 @@ export class Client { } /** delete collection of ServiceAccount */ public async deleteCoreV1CollectionNamespacedServiceAccount(params: Params$deleteCoreV1CollectionNamespacedServiceAccount, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43583,7 +43580,7 @@ export class Client { } /** read the specified ServiceAccount */ public async readCoreV1NamespacedServiceAccount(params: Params$readCoreV1NamespacedServiceAccount, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43601,7 +43598,7 @@ export class Client { } /** replace the specified ServiceAccount */ public async replaceCoreV1NamespacedServiceAccount(params: Params$replaceCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedServiceAccount$Status$200 | Response$replaceCoreV1NamespacedServiceAccount$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43621,7 +43618,7 @@ export class Client { } /** delete a ServiceAccount */ public async deleteCoreV1NamespacedServiceAccount(params: Params$deleteCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedServiceAccount$Status$200 | Response$deleteCoreV1NamespacedServiceAccount$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43643,7 +43640,7 @@ export class Client { } /** partially update the specified ServiceAccount */ public async patchCoreV1NamespacedServiceAccount(params: Params$patchCoreV1NamespacedServiceAccount, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43664,7 +43661,7 @@ export class Client { } /** create token of a ServiceAccount */ public async createCoreV1NamespacedServiceAccountToken(params: Params$createCoreV1NamespacedServiceAccountToken, option?: RequestOption): Promise<(Response$createCoreV1NamespacedServiceAccountToken$Status$200 | Response$createCoreV1NamespacedServiceAccountToken$Status$201 | Response$createCoreV1NamespacedServiceAccountToken$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}/token\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}/token`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43684,7 +43681,7 @@ export class Client { } /** list or watch objects of kind Service */ public async listCoreV1NamespacedService(params: Params$listCoreV1NamespacedService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; const headers = { Accept: params.headers.Accept }; @@ -43708,7 +43705,7 @@ export class Client { } /** create a Service */ public async createCoreV1NamespacedService(params: Params$createCoreV1NamespacedService, option?: RequestOption): Promise<(Response$createCoreV1NamespacedService$Status$200 | Response$createCoreV1NamespacedService$Status$201 | Response$createCoreV1NamespacedService$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43728,7 +43725,7 @@ export class Client { } /** read the specified Service */ public async readCoreV1NamespacedService(params: Params$readCoreV1NamespacedService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43746,7 +43743,7 @@ export class Client { } /** replace the specified Service */ public async replaceCoreV1NamespacedService(params: Params$replaceCoreV1NamespacedService, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedService$Status$200 | Response$replaceCoreV1NamespacedService$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43766,7 +43763,7 @@ export class Client { } /** delete a Service */ public async deleteCoreV1NamespacedService(params: Params$deleteCoreV1NamespacedService, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedService$Status$200 | Response$deleteCoreV1NamespacedService$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43788,7 +43785,7 @@ export class Client { } /** partially update the specified Service */ public async patchCoreV1NamespacedService(params: Params$patchCoreV1NamespacedService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43809,7 +43806,7 @@ export class Client { } /** connect GET requests to proxy of Service */ public async connectCoreV1GetNamespacedServiceProxy(params: Params$connectCoreV1GetNamespacedServiceProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43825,7 +43822,7 @@ export class Client { } /** connect PUT requests to proxy of Service */ public async connectCoreV1PutNamespacedServiceProxy(params: Params$connectCoreV1PutNamespacedServiceProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43841,7 +43838,7 @@ export class Client { } /** connect POST requests to proxy of Service */ public async connectCoreV1PostNamespacedServiceProxy(params: Params$connectCoreV1PostNamespacedServiceProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43857,7 +43854,7 @@ export class Client { } /** connect DELETE requests to proxy of Service */ public async connectCoreV1DeleteNamespacedServiceProxy(params: Params$connectCoreV1DeleteNamespacedServiceProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43873,7 +43870,7 @@ export class Client { } /** connect OPTIONS requests to proxy of Service */ public async connectCoreV1OptionsNamespacedServiceProxy(params: Params$connectCoreV1OptionsNamespacedServiceProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43889,7 +43886,7 @@ export class Client { } /** connect HEAD requests to proxy of Service */ public async connectCoreV1HeadNamespacedServiceProxy(params: Params$connectCoreV1HeadNamespacedServiceProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43905,7 +43902,7 @@ export class Client { } /** connect PATCH requests to proxy of Service */ public async connectCoreV1PatchNamespacedServiceProxy(params: Params$connectCoreV1PatchNamespacedServiceProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43921,7 +43918,7 @@ export class Client { } /** connect GET requests to proxy of Service */ public async connectCoreV1GetNamespacedServiceProxyWithPath(params: Params$connectCoreV1GetNamespacedServiceProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43937,7 +43934,7 @@ export class Client { } /** connect PUT requests to proxy of Service */ public async connectCoreV1PutNamespacedServiceProxyWithPath(params: Params$connectCoreV1PutNamespacedServiceProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43953,7 +43950,7 @@ export class Client { } /** connect POST requests to proxy of Service */ public async connectCoreV1PostNamespacedServiceProxyWithPath(params: Params$connectCoreV1PostNamespacedServiceProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43969,7 +43966,7 @@ export class Client { } /** connect DELETE requests to proxy of Service */ public async connectCoreV1DeleteNamespacedServiceProxyWithPath(params: Params$connectCoreV1DeleteNamespacedServiceProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43985,7 +43982,7 @@ export class Client { } /** connect OPTIONS requests to proxy of Service */ public async connectCoreV1OptionsNamespacedServiceProxyWithPath(params: Params$connectCoreV1OptionsNamespacedServiceProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44001,7 +43998,7 @@ export class Client { } /** connect HEAD requests to proxy of Service */ public async connectCoreV1HeadNamespacedServiceProxyWithPath(params: Params$connectCoreV1HeadNamespacedServiceProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44017,7 +44014,7 @@ export class Client { } /** connect PATCH requests to proxy of Service */ public async connectCoreV1PatchNamespacedServiceProxyWithPath(params: Params$connectCoreV1PatchNamespacedServiceProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44033,7 +44030,7 @@ export class Client { } /** read status of the specified Service */ public async readCoreV1NamespacedServiceStatus(params: Params$readCoreV1NamespacedServiceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44049,7 +44046,7 @@ export class Client { } /** replace status of the specified Service */ public async replaceCoreV1NamespacedServiceStatus(params: Params$replaceCoreV1NamespacedServiceStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedServiceStatus$Status$200 | Response$replaceCoreV1NamespacedServiceStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44069,7 +44066,7 @@ export class Client { } /** partially update status of the specified Service */ public async patchCoreV1NamespacedServiceStatus(params: Params$patchCoreV1NamespacedServiceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44090,7 +44087,7 @@ export class Client { } /** read the specified Namespace */ public async readCoreV1Namespace(params: Params$readCoreV1Namespace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -44108,7 +44105,7 @@ export class Client { } /** replace the specified Namespace */ public async replaceCoreV1Namespace(params: Params$replaceCoreV1Namespace, option?: RequestOption): Promise<(Response$replaceCoreV1Namespace$Status$200 | Response$replaceCoreV1Namespace$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44128,7 +44125,7 @@ export class Client { } /** delete a Namespace */ public async deleteCoreV1Namespace(params: Params$deleteCoreV1Namespace, option?: RequestOption): Promise<(Response$deleteCoreV1Namespace$Status$200 | Response$deleteCoreV1Namespace$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44150,7 +44147,7 @@ export class Client { } /** partially update the specified Namespace */ public async patchCoreV1Namespace(params: Params$patchCoreV1Namespace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44171,7 +44168,7 @@ export class Client { } /** replace finalize of the specified Namespace */ public async replaceCoreV1NamespaceFinalize(params: Params$replaceCoreV1NamespaceFinalize, option?: RequestOption): Promise<(Response$replaceCoreV1NamespaceFinalize$Status$200 | Response$replaceCoreV1NamespaceFinalize$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/finalize\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/finalize`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44191,7 +44188,7 @@ export class Client { } /** read status of the specified Namespace */ public async readCoreV1NamespaceStatus(params: Params$readCoreV1NamespaceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44207,7 +44204,7 @@ export class Client { } /** replace status of the specified Namespace */ public async replaceCoreV1NamespaceStatus(params: Params$replaceCoreV1NamespaceStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespaceStatus$Status$200 | Response$replaceCoreV1NamespaceStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44227,7 +44224,7 @@ export class Client { } /** partially update status of the specified Namespace */ public async patchCoreV1NamespaceStatus(params: Params$patchCoreV1NamespaceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44248,7 +44245,7 @@ export class Client { } /** list or watch objects of kind Node */ public async listCoreV1Node(params: Params$listCoreV1Node, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes\`; + const url = this.baseUrl + `/api/v1/nodes`; const headers = { Accept: params.headers.Accept }; @@ -44272,7 +44269,7 @@ export class Client { } /** create a Node */ public async createCoreV1Node(params: Params$createCoreV1Node, option?: RequestOption): Promise<(Response$createCoreV1Node$Status$200 | Response$createCoreV1Node$Status$201 | Response$createCoreV1Node$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/nodes\`; + const url = this.baseUrl + `/api/v1/nodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44292,7 +44289,7 @@ export class Client { } /** delete collection of Node */ public async deleteCoreV1CollectionNode(params: Params$deleteCoreV1CollectionNode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes\`; + const url = this.baseUrl + `/api/v1/nodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44322,7 +44319,7 @@ export class Client { } /** read the specified Node */ public async readCoreV1Node(params: Params$readCoreV1Node, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -44340,7 +44337,7 @@ export class Client { } /** replace the specified Node */ public async replaceCoreV1Node(params: Params$replaceCoreV1Node, option?: RequestOption): Promise<(Response$replaceCoreV1Node$Status$200 | Response$replaceCoreV1Node$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44360,7 +44357,7 @@ export class Client { } /** delete a Node */ public async deleteCoreV1Node(params: Params$deleteCoreV1Node, option?: RequestOption): Promise<(Response$deleteCoreV1Node$Status$200 | Response$deleteCoreV1Node$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44382,7 +44379,7 @@ export class Client { } /** partially update the specified Node */ public async patchCoreV1Node(params: Params$patchCoreV1Node, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44403,7 +44400,7 @@ export class Client { } /** connect GET requests to proxy of Node */ public async connectCoreV1GetNodeProxy(params: Params$connectCoreV1GetNodeProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44419,7 +44416,7 @@ export class Client { } /** connect PUT requests to proxy of Node */ public async connectCoreV1PutNodeProxy(params: Params$connectCoreV1PutNodeProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44435,7 +44432,7 @@ export class Client { } /** connect POST requests to proxy of Node */ public async connectCoreV1PostNodeProxy(params: Params$connectCoreV1PostNodeProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44451,7 +44448,7 @@ export class Client { } /** connect DELETE requests to proxy of Node */ public async connectCoreV1DeleteNodeProxy(params: Params$connectCoreV1DeleteNodeProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44467,7 +44464,7 @@ export class Client { } /** connect OPTIONS requests to proxy of Node */ public async connectCoreV1OptionsNodeProxy(params: Params$connectCoreV1OptionsNodeProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44483,7 +44480,7 @@ export class Client { } /** connect HEAD requests to proxy of Node */ public async connectCoreV1HeadNodeProxy(params: Params$connectCoreV1HeadNodeProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44499,7 +44496,7 @@ export class Client { } /** connect PATCH requests to proxy of Node */ public async connectCoreV1PatchNodeProxy(params: Params$connectCoreV1PatchNodeProxy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44515,7 +44512,7 @@ export class Client { } /** connect GET requests to proxy of Node */ public async connectCoreV1GetNodeProxyWithPath(params: Params$connectCoreV1GetNodeProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44531,7 +44528,7 @@ export class Client { } /** connect PUT requests to proxy of Node */ public async connectCoreV1PutNodeProxyWithPath(params: Params$connectCoreV1PutNodeProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44547,7 +44544,7 @@ export class Client { } /** connect POST requests to proxy of Node */ public async connectCoreV1PostNodeProxyWithPath(params: Params$connectCoreV1PostNodeProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44563,7 +44560,7 @@ export class Client { } /** connect DELETE requests to proxy of Node */ public async connectCoreV1DeleteNodeProxyWithPath(params: Params$connectCoreV1DeleteNodeProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44579,7 +44576,7 @@ export class Client { } /** connect OPTIONS requests to proxy of Node */ public async connectCoreV1OptionsNodeProxyWithPath(params: Params$connectCoreV1OptionsNodeProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44595,7 +44592,7 @@ export class Client { } /** connect HEAD requests to proxy of Node */ public async connectCoreV1HeadNodeProxyWithPath(params: Params$connectCoreV1HeadNodeProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44611,7 +44608,7 @@ export class Client { } /** connect PATCH requests to proxy of Node */ public async connectCoreV1PatchNodeProxyWithPath(params: Params$connectCoreV1PatchNodeProxyWithPath, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44627,7 +44624,7 @@ export class Client { } /** read status of the specified Node */ public async readCoreV1NodeStatus(params: Params$readCoreV1NodeStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44643,7 +44640,7 @@ export class Client { } /** replace status of the specified Node */ public async replaceCoreV1NodeStatus(params: Params$replaceCoreV1NodeStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NodeStatus$Status$200 | Response$replaceCoreV1NodeStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44663,7 +44660,7 @@ export class Client { } /** partially update status of the specified Node */ public async patchCoreV1NodeStatus(params: Params$patchCoreV1NodeStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44684,7 +44681,7 @@ export class Client { } /** list or watch objects of kind PersistentVolumeClaim */ public async listCoreV1PersistentVolumeClaimForAllNamespaces(params: Params$listCoreV1PersistentVolumeClaimForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/persistentvolumeclaims\`; + const url = this.baseUrl + `/api/v1/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -44708,7 +44705,7 @@ export class Client { } /** list or watch objects of kind PersistentVolume */ public async listCoreV1PersistentVolume(params: Params$listCoreV1PersistentVolume, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/persistentvolumes\`; + const url = this.baseUrl + `/api/v1/persistentvolumes`; const headers = { Accept: params.headers.Accept }; @@ -44732,7 +44729,7 @@ export class Client { } /** create a PersistentVolume */ public async createCoreV1PersistentVolume(params: Params$createCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$createCoreV1PersistentVolume$Status$200 | Response$createCoreV1PersistentVolume$Status$201 | Response$createCoreV1PersistentVolume$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/persistentvolumes\`; + const url = this.baseUrl + `/api/v1/persistentvolumes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44752,7 +44749,7 @@ export class Client { } /** delete collection of PersistentVolume */ public async deleteCoreV1CollectionPersistentVolume(params: Params$deleteCoreV1CollectionPersistentVolume, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/persistentvolumes\`; + const url = this.baseUrl + `/api/v1/persistentvolumes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44782,7 +44779,7 @@ export class Client { } /** read the specified PersistentVolume */ public async readCoreV1PersistentVolume(params: Params$readCoreV1PersistentVolume, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -44800,7 +44797,7 @@ export class Client { } /** replace the specified PersistentVolume */ public async replaceCoreV1PersistentVolume(params: Params$replaceCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$replaceCoreV1PersistentVolume$Status$200 | Response$replaceCoreV1PersistentVolume$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44820,7 +44817,7 @@ export class Client { } /** delete a PersistentVolume */ public async deleteCoreV1PersistentVolume(params: Params$deleteCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$deleteCoreV1PersistentVolume$Status$200 | Response$deleteCoreV1PersistentVolume$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44842,7 +44839,7 @@ export class Client { } /** partially update the specified PersistentVolume */ public async patchCoreV1PersistentVolume(params: Params$patchCoreV1PersistentVolume, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44863,7 +44860,7 @@ export class Client { } /** read status of the specified PersistentVolume */ public async readCoreV1PersistentVolumeStatus(params: Params$readCoreV1PersistentVolumeStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44879,7 +44876,7 @@ export class Client { } /** replace status of the specified PersistentVolume */ public async replaceCoreV1PersistentVolumeStatus(params: Params$replaceCoreV1PersistentVolumeStatus, option?: RequestOption): Promise<(Response$replaceCoreV1PersistentVolumeStatus$Status$200 | Response$replaceCoreV1PersistentVolumeStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44899,7 +44896,7 @@ export class Client { } /** partially update status of the specified PersistentVolume */ public async patchCoreV1PersistentVolumeStatus(params: Params$patchCoreV1PersistentVolumeStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44920,7 +44917,7 @@ export class Client { } /** list or watch objects of kind Pod */ public async listCoreV1PodForAllNamespaces(params: Params$listCoreV1PodForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/pods\`; + const url = this.baseUrl + `/api/v1/pods`; const headers = { Accept: params.headers.Accept }; @@ -44944,7 +44941,7 @@ export class Client { } /** list or watch objects of kind PodTemplate */ public async listCoreV1PodTemplateForAllNamespaces(params: Params$listCoreV1PodTemplateForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/podtemplates\`; + const url = this.baseUrl + `/api/v1/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -44968,7 +44965,7 @@ export class Client { } /** list or watch objects of kind ReplicationController */ public async listCoreV1ReplicationControllerForAllNamespaces(params: Params$listCoreV1ReplicationControllerForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/replicationcontrollers\`; + const url = this.baseUrl + `/api/v1/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -44992,7 +44989,7 @@ export class Client { } /** list or watch objects of kind ResourceQuota */ public async listCoreV1ResourceQuotaForAllNamespaces(params: Params$listCoreV1ResourceQuotaForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/resourcequotas\`; + const url = this.baseUrl + `/api/v1/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -45016,7 +45013,7 @@ export class Client { } /** list or watch objects of kind Secret */ public async listCoreV1SecretForAllNamespaces(params: Params$listCoreV1SecretForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/secrets\`; + const url = this.baseUrl + `/api/v1/secrets`; const headers = { Accept: params.headers.Accept }; @@ -45040,7 +45037,7 @@ export class Client { } /** list or watch objects of kind ServiceAccount */ public async listCoreV1ServiceAccountForAllNamespaces(params: Params$listCoreV1ServiceAccountForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/serviceaccounts\`; + const url = this.baseUrl + `/api/v1/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -45064,7 +45061,7 @@ export class Client { } /** list or watch objects of kind Service */ public async listCoreV1ServiceForAllNamespaces(params: Params$listCoreV1ServiceForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/services\`; + const url = this.baseUrl + `/api/v1/services`; const headers = { Accept: params.headers.Accept }; @@ -45088,7 +45085,7 @@ export class Client { } /** watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1ConfigMapListForAllNamespaces(params: Params$watchCoreV1ConfigMapListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/configmaps\`; + const url = this.baseUrl + `/api/v1/watch/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -45112,7 +45109,7 @@ export class Client { } /** watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1EndpointsListForAllNamespaces(params: Params$watchCoreV1EndpointsListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/endpoints\`; + const url = this.baseUrl + `/api/v1/watch/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -45136,7 +45133,7 @@ export class Client { } /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1EventListForAllNamespaces(params: Params$watchCoreV1EventListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/events\`; + const url = this.baseUrl + `/api/v1/watch/events`; const headers = { Accept: params.headers.Accept }; @@ -45160,7 +45157,7 @@ export class Client { } /** watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1LimitRangeListForAllNamespaces(params: Params$watchCoreV1LimitRangeListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/limitranges\`; + const url = this.baseUrl + `/api/v1/watch/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -45184,7 +45181,7 @@ export class Client { } /** watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespaceList(params: Params$watchCoreV1NamespaceList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces\`; + const url = this.baseUrl + `/api/v1/watch/namespaces`; const headers = { Accept: params.headers.Accept }; @@ -45208,7 +45205,7 @@ export class Client { } /** watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedConfigMapList(params: Params$watchCoreV1NamespacedConfigMapList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -45232,7 +45229,7 @@ export class Client { } /** watch changes to an object of kind ConfigMap. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedConfigMap(params: Params$watchCoreV1NamespacedConfigMap, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45256,7 +45253,7 @@ export class Client { } /** watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedEndpointsList(params: Params$watchCoreV1NamespacedEndpointsList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -45280,7 +45277,7 @@ export class Client { } /** watch changes to an object of kind Endpoints. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedEndpoints(params: Params$watchCoreV1NamespacedEndpoints, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45304,7 +45301,7 @@ export class Client { } /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedEventList(params: Params$watchCoreV1NamespacedEventList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -45328,7 +45325,7 @@ export class Client { } /** watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedEvent(params: Params$watchCoreV1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45352,7 +45349,7 @@ export class Client { } /** watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedLimitRangeList(params: Params$watchCoreV1NamespacedLimitRangeList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -45376,7 +45373,7 @@ export class Client { } /** watch changes to an object of kind LimitRange. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedLimitRange(params: Params$watchCoreV1NamespacedLimitRange, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45400,7 +45397,7 @@ export class Client { } /** watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedPersistentVolumeClaimList(params: Params$watchCoreV1NamespacedPersistentVolumeClaimList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -45424,7 +45421,7 @@ export class Client { } /** watch changes to an object of kind PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedPersistentVolumeClaim(params: Params$watchCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45448,7 +45445,7 @@ export class Client { } /** watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedPodList(params: Params$watchCoreV1NamespacedPodList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { Accept: params.headers.Accept }; @@ -45472,7 +45469,7 @@ export class Client { } /** watch changes to an object of kind Pod. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedPod(params: Params$watchCoreV1NamespacedPod, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45496,7 +45493,7 @@ export class Client { } /** watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedPodTemplateList(params: Params$watchCoreV1NamespacedPodTemplateList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -45520,7 +45517,7 @@ export class Client { } /** watch changes to an object of kind PodTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedPodTemplate(params: Params$watchCoreV1NamespacedPodTemplate, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45544,7 +45541,7 @@ export class Client { } /** watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedReplicationControllerList(params: Params$watchCoreV1NamespacedReplicationControllerList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -45568,7 +45565,7 @@ export class Client { } /** watch changes to an object of kind ReplicationController. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedReplicationController(params: Params$watchCoreV1NamespacedReplicationController, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45592,7 +45589,7 @@ export class Client { } /** watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedResourceQuotaList(params: Params$watchCoreV1NamespacedResourceQuotaList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -45616,7 +45613,7 @@ export class Client { } /** watch changes to an object of kind ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedResourceQuota(params: Params$watchCoreV1NamespacedResourceQuota, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45640,7 +45637,7 @@ export class Client { } /** watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedSecretList(params: Params$watchCoreV1NamespacedSecretList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { Accept: params.headers.Accept }; @@ -45664,7 +45661,7 @@ export class Client { } /** watch changes to an object of kind Secret. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedSecret(params: Params$watchCoreV1NamespacedSecret, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45688,7 +45685,7 @@ export class Client { } /** watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedServiceAccountList(params: Params$watchCoreV1NamespacedServiceAccountList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -45712,7 +45709,7 @@ export class Client { } /** watch changes to an object of kind ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedServiceAccount(params: Params$watchCoreV1NamespacedServiceAccount, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45736,7 +45733,7 @@ export class Client { } /** watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NamespacedServiceList(params: Params$watchCoreV1NamespacedServiceList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; const headers = { Accept: params.headers.Accept }; @@ -45760,7 +45757,7 @@ export class Client { } /** watch changes to an object of kind Service. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1NamespacedService(params: Params$watchCoreV1NamespacedService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45784,7 +45781,7 @@ export class Client { } /** watch changes to an object of kind Namespace. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1Namespace(params: Params$watchCoreV1Namespace, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45808,7 +45805,7 @@ export class Client { } /** watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1NodeList(params: Params$watchCoreV1NodeList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/nodes\`; + const url = this.baseUrl + `/api/v1/watch/nodes`; const headers = { Accept: params.headers.Accept }; @@ -45832,7 +45829,7 @@ export class Client { } /** watch changes to an object of kind Node. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1Node(params: Params$watchCoreV1Node, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45856,7 +45853,7 @@ export class Client { } /** watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1PersistentVolumeClaimListForAllNamespaces(params: Params$watchCoreV1PersistentVolumeClaimListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/persistentvolumeclaims\`; + const url = this.baseUrl + `/api/v1/watch/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -45880,7 +45877,7 @@ export class Client { } /** watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1PersistentVolumeList(params: Params$watchCoreV1PersistentVolumeList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/persistentvolumes\`; + const url = this.baseUrl + `/api/v1/watch/persistentvolumes`; const headers = { Accept: params.headers.Accept }; @@ -45904,7 +45901,7 @@ export class Client { } /** watch changes to an object of kind PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoreV1PersistentVolume(params: Params$watchCoreV1PersistentVolume, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/api/v1/watch/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45928,7 +45925,7 @@ export class Client { } /** watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1PodListForAllNamespaces(params: Params$watchCoreV1PodListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/pods\`; + const url = this.baseUrl + `/api/v1/watch/pods`; const headers = { Accept: params.headers.Accept }; @@ -45952,7 +45949,7 @@ export class Client { } /** watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1PodTemplateListForAllNamespaces(params: Params$watchCoreV1PodTemplateListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/podtemplates\`; + const url = this.baseUrl + `/api/v1/watch/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -45976,7 +45973,7 @@ export class Client { } /** watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1ReplicationControllerListForAllNamespaces(params: Params$watchCoreV1ReplicationControllerListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/replicationcontrollers\`; + const url = this.baseUrl + `/api/v1/watch/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -46000,7 +45997,7 @@ export class Client { } /** watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1ResourceQuotaListForAllNamespaces(params: Params$watchCoreV1ResourceQuotaListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/resourcequotas\`; + const url = this.baseUrl + `/api/v1/watch/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -46024,7 +46021,7 @@ export class Client { } /** watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1SecretListForAllNamespaces(params: Params$watchCoreV1SecretListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/secrets\`; + const url = this.baseUrl + `/api/v1/watch/secrets`; const headers = { Accept: params.headers.Accept }; @@ -46048,7 +46045,7 @@ export class Client { } /** watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1ServiceAccountListForAllNamespaces(params: Params$watchCoreV1ServiceAccountListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/serviceaccounts\`; + const url = this.baseUrl + `/api/v1/watch/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -46072,7 +46069,7 @@ export class Client { } /** watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoreV1ServiceListForAllNamespaces(params: Params$watchCoreV1ServiceListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/api/v1/watch/services\`; + const url = this.baseUrl + `/api/v1/watch/services`; const headers = { Accept: params.headers.Accept }; @@ -46096,7 +46093,7 @@ export class Client { } /** get available API versions */ public async getAPIVersions(params: Params$getAPIVersions, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/\`; + const url = this.baseUrl + `/apis/`; const headers = { Accept: params.headers.Accept }; @@ -46108,7 +46105,7 @@ export class Client { } /** get information of a group */ public async getAdmissionregistrationAPIGroup(params: Params$getAdmissionregistrationAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -46120,7 +46117,7 @@ export class Client { } /** get available resources */ public async getAdmissionregistrationV1APIResources(params: Params$getAdmissionregistrationV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -46132,7 +46129,7 @@ export class Client { } /** list or watch objects of kind MutatingWebhookConfiguration */ public async listAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$listAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46156,7 +46153,7 @@ export class Client { } /** create a MutatingWebhookConfiguration */ public async createAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$createAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46176,7 +46173,7 @@ export class Client { } /** delete collection of MutatingWebhookConfiguration */ public async deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46206,7 +46203,7 @@ export class Client { } /** read the specified MutatingWebhookConfiguration */ public async readAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$readAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46224,7 +46221,7 @@ export class Client { } /** replace the specified MutatingWebhookConfiguration */ public async replaceAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$replaceAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46244,7 +46241,7 @@ export class Client { } /** delete a MutatingWebhookConfiguration */ public async deleteAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46266,7 +46263,7 @@ export class Client { } /** partially update the specified MutatingWebhookConfiguration */ public async patchAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$patchAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46287,7 +46284,7 @@ export class Client { } /** list or watch objects of kind ValidatingWebhookConfiguration */ public async listAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$listAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46311,7 +46308,7 @@ export class Client { } /** create a ValidatingWebhookConfiguration */ public async createAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$createAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46331,7 +46328,7 @@ export class Client { } /** delete collection of ValidatingWebhookConfiguration */ public async deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46361,7 +46358,7 @@ export class Client { } /** read the specified ValidatingWebhookConfiguration */ public async readAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$readAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46379,7 +46376,7 @@ export class Client { } /** replace the specified ValidatingWebhookConfiguration */ public async replaceAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$replaceAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46399,7 +46396,7 @@ export class Client { } /** delete a ValidatingWebhookConfiguration */ public async deleteAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46421,7 +46418,7 @@ export class Client { } /** partially update the specified ValidatingWebhookConfiguration */ public async patchAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$patchAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46442,7 +46439,7 @@ export class Client { } /** watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAdmissionregistrationV1MutatingWebhookConfigurationList(params: Params$watchAdmissionregistrationV1MutatingWebhookConfigurationList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46466,7 +46463,7 @@ export class Client { } /** watch changes to an object of kind MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$watchAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46490,7 +46487,7 @@ export class Client { } /** watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAdmissionregistrationV1ValidatingWebhookConfigurationList(params: Params$watchAdmissionregistrationV1ValidatingWebhookConfigurationList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46514,7 +46511,7 @@ export class Client { } /** watch changes to an object of kind ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$watchAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46538,7 +46535,7 @@ export class Client { } /** get available resources */ public async getAdmissionregistrationV1beta1APIResources(params: Params$getAdmissionregistrationV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -46550,7 +46547,7 @@ export class Client { } /** list or watch objects of kind MutatingWebhookConfiguration */ public async listAdmissionregistrationV1beta1MutatingWebhookConfiguration(params: Params$listAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46574,7 +46571,7 @@ export class Client { } /** create a MutatingWebhookConfiguration */ public async createAdmissionregistrationV1beta1MutatingWebhookConfiguration(params: Params$createAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46594,7 +46591,7 @@ export class Client { } /** delete collection of MutatingWebhookConfiguration */ public async deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46624,7 +46621,7 @@ export class Client { } /** read the specified MutatingWebhookConfiguration */ public async readAdmissionregistrationV1beta1MutatingWebhookConfiguration(params: Params$readAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46642,7 +46639,7 @@ export class Client { } /** replace the specified MutatingWebhookConfiguration */ public async replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(params: Params$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46662,7 +46659,7 @@ export class Client { } /** delete a MutatingWebhookConfiguration */ public async deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46684,7 +46681,7 @@ export class Client { } /** partially update the specified MutatingWebhookConfiguration */ public async patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(params: Params$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46705,7 +46702,7 @@ export class Client { } /** list or watch objects of kind ValidatingWebhookConfiguration */ public async listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(params: Params$listAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46729,7 +46726,7 @@ export class Client { } /** create a ValidatingWebhookConfiguration */ public async createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(params: Params$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46749,7 +46746,7 @@ export class Client { } /** delete collection of ValidatingWebhookConfiguration */ public async deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46779,7 +46776,7 @@ export class Client { } /** read the specified ValidatingWebhookConfiguration */ public async readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(params: Params$readAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46797,7 +46794,7 @@ export class Client { } /** replace the specified ValidatingWebhookConfiguration */ public async replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(params: Params$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46817,7 +46814,7 @@ export class Client { } /** delete a ValidatingWebhookConfiguration */ public async deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46839,7 +46836,7 @@ export class Client { } /** partially update the specified ValidatingWebhookConfiguration */ public async patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(params: Params$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46860,7 +46857,7 @@ export class Client { } /** watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(params: Params$watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46884,7 +46881,7 @@ export class Client { } /** watch changes to an object of kind MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(params: Params$watchAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46908,7 +46905,7 @@ export class Client { } /** watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(params: Params$watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46932,7 +46929,7 @@ export class Client { } /** watch changes to an object of kind ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(params: Params$watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46956,7 +46953,7 @@ export class Client { } /** get information of a group */ public async getApiextensionsAPIGroup(params: Params$getApiextensionsAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -46968,7 +46965,7 @@ export class Client { } /** get available resources */ public async getApiextensionsV1APIResources(params: Params$getApiextensionsV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -46980,7 +46977,7 @@ export class Client { } /** list or watch objects of kind CustomResourceDefinition */ public async listApiextensionsV1CustomResourceDefinition(params: Params$listApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47004,7 +47001,7 @@ export class Client { } /** create a CustomResourceDefinition */ public async createApiextensionsV1CustomResourceDefinition(params: Params$createApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$createApiextensionsV1CustomResourceDefinition$Status$200 | Response$createApiextensionsV1CustomResourceDefinition$Status$201 | Response$createApiextensionsV1CustomResourceDefinition$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47024,7 +47021,7 @@ export class Client { } /** delete collection of CustomResourceDefinition */ public async deleteApiextensionsV1CollectionCustomResourceDefinition(params: Params$deleteApiextensionsV1CollectionCustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47054,7 +47051,7 @@ export class Client { } /** read the specified CustomResourceDefinition */ public async readApiextensionsV1CustomResourceDefinition(params: Params$readApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47072,7 +47069,7 @@ export class Client { } /** replace the specified CustomResourceDefinition */ public async replaceApiextensionsV1CustomResourceDefinition(params: Params$replaceApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$replaceApiextensionsV1CustomResourceDefinition$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinition$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47092,7 +47089,7 @@ export class Client { } /** delete a CustomResourceDefinition */ public async deleteApiextensionsV1CustomResourceDefinition(params: Params$deleteApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$deleteApiextensionsV1CustomResourceDefinition$Status$200 | Response$deleteApiextensionsV1CustomResourceDefinition$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47114,7 +47111,7 @@ export class Client { } /** partially update the specified CustomResourceDefinition */ public async patchApiextensionsV1CustomResourceDefinition(params: Params$patchApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47135,7 +47132,7 @@ export class Client { } /** read status of the specified CustomResourceDefinition */ public async readApiextensionsV1CustomResourceDefinitionStatus(params: Params$readApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47151,7 +47148,7 @@ export class Client { } /** replace status of the specified CustomResourceDefinition */ public async replaceApiextensionsV1CustomResourceDefinitionStatus(params: Params$replaceApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise<(Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47171,7 +47168,7 @@ export class Client { } /** partially update status of the specified CustomResourceDefinition */ public async patchApiextensionsV1CustomResourceDefinitionStatus(params: Params$patchApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47192,7 +47189,7 @@ export class Client { } /** watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchApiextensionsV1CustomResourceDefinitionList(params: Params$watchApiextensionsV1CustomResourceDefinitionList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47216,7 +47213,7 @@ export class Client { } /** watch changes to an object of kind CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchApiextensionsV1CustomResourceDefinition(params: Params$watchApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47240,7 +47237,7 @@ export class Client { } /** get available resources */ public async getApiextensionsV1beta1APIResources(params: Params$getApiextensionsV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -47252,7 +47249,7 @@ export class Client { } /** list or watch objects of kind CustomResourceDefinition */ public async listApiextensionsV1beta1CustomResourceDefinition(params: Params$listApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47276,7 +47273,7 @@ export class Client { } /** create a CustomResourceDefinition */ public async createApiextensionsV1beta1CustomResourceDefinition(params: Params$createApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise<(Response$createApiextensionsV1beta1CustomResourceDefinition$Status$200 | Response$createApiextensionsV1beta1CustomResourceDefinition$Status$201 | Response$createApiextensionsV1beta1CustomResourceDefinition$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47296,7 +47293,7 @@ export class Client { } /** delete collection of CustomResourceDefinition */ public async deleteApiextensionsV1beta1CollectionCustomResourceDefinition(params: Params$deleteApiextensionsV1beta1CollectionCustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47326,7 +47323,7 @@ export class Client { } /** read the specified CustomResourceDefinition */ public async readApiextensionsV1beta1CustomResourceDefinition(params: Params$readApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47344,7 +47341,7 @@ export class Client { } /** replace the specified CustomResourceDefinition */ public async replaceApiextensionsV1beta1CustomResourceDefinition(params: Params$replaceApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise<(Response$replaceApiextensionsV1beta1CustomResourceDefinition$Status$200 | Response$replaceApiextensionsV1beta1CustomResourceDefinition$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47364,7 +47361,7 @@ export class Client { } /** delete a CustomResourceDefinition */ public async deleteApiextensionsV1beta1CustomResourceDefinition(params: Params$deleteApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise<(Response$deleteApiextensionsV1beta1CustomResourceDefinition$Status$200 | Response$deleteApiextensionsV1beta1CustomResourceDefinition$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47386,7 +47383,7 @@ export class Client { } /** partially update the specified CustomResourceDefinition */ public async patchApiextensionsV1beta1CustomResourceDefinition(params: Params$patchApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47407,7 +47404,7 @@ export class Client { } /** read status of the specified CustomResourceDefinition */ public async readApiextensionsV1beta1CustomResourceDefinitionStatus(params: Params$readApiextensionsV1beta1CustomResourceDefinitionStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47423,7 +47420,7 @@ export class Client { } /** replace status of the specified CustomResourceDefinition */ public async replaceApiextensionsV1beta1CustomResourceDefinitionStatus(params: Params$replaceApiextensionsV1beta1CustomResourceDefinitionStatus, option?: RequestOption): Promise<(Response$replaceApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 | Response$replaceApiextensionsV1beta1CustomResourceDefinitionStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47443,7 +47440,7 @@ export class Client { } /** partially update status of the specified CustomResourceDefinition */ public async patchApiextensionsV1beta1CustomResourceDefinitionStatus(params: Params$patchApiextensionsV1beta1CustomResourceDefinitionStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47464,7 +47461,7 @@ export class Client { } /** watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchApiextensionsV1beta1CustomResourceDefinitionList(params: Params$watchApiextensionsV1beta1CustomResourceDefinitionList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47488,7 +47485,7 @@ export class Client { } /** watch changes to an object of kind CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchApiextensionsV1beta1CustomResourceDefinition(params: Params$watchApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47512,7 +47509,7 @@ export class Client { } /** get information of a group */ public async getApiregistrationAPIGroup(params: Params$getApiregistrationAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -47524,7 +47521,7 @@ export class Client { } /** get available resources */ public async getApiregistrationV1APIResources(params: Params$getApiregistrationV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -47536,7 +47533,7 @@ export class Client { } /** list or watch objects of kind APIService */ public async listApiregistrationV1APIService(params: Params$listApiregistrationV1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -47560,7 +47557,7 @@ export class Client { } /** create an APIService */ public async createApiregistrationV1APIService(params: Params$createApiregistrationV1APIService, option?: RequestOption): Promise<(Response$createApiregistrationV1APIService$Status$200 | Response$createApiregistrationV1APIService$Status$201 | Response$createApiregistrationV1APIService$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47580,7 +47577,7 @@ export class Client { } /** delete collection of APIService */ public async deleteApiregistrationV1CollectionAPIService(params: Params$deleteApiregistrationV1CollectionAPIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47610,7 +47607,7 @@ export class Client { } /** read the specified APIService */ public async readApiregistrationV1APIService(params: Params$readApiregistrationV1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47628,7 +47625,7 @@ export class Client { } /** replace the specified APIService */ public async replaceApiregistrationV1APIService(params: Params$replaceApiregistrationV1APIService, option?: RequestOption): Promise<(Response$replaceApiregistrationV1APIService$Status$200 | Response$replaceApiregistrationV1APIService$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47648,7 +47645,7 @@ export class Client { } /** delete an APIService */ public async deleteApiregistrationV1APIService(params: Params$deleteApiregistrationV1APIService, option?: RequestOption): Promise<(Response$deleteApiregistrationV1APIService$Status$200 | Response$deleteApiregistrationV1APIService$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47670,7 +47667,7 @@ export class Client { } /** partially update the specified APIService */ public async patchApiregistrationV1APIService(params: Params$patchApiregistrationV1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47691,7 +47688,7 @@ export class Client { } /** read status of the specified APIService */ public async readApiregistrationV1APIServiceStatus(params: Params$readApiregistrationV1APIServiceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47707,7 +47704,7 @@ export class Client { } /** replace status of the specified APIService */ public async replaceApiregistrationV1APIServiceStatus(params: Params$replaceApiregistrationV1APIServiceStatus, option?: RequestOption): Promise<(Response$replaceApiregistrationV1APIServiceStatus$Status$200 | Response$replaceApiregistrationV1APIServiceStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47727,7 +47724,7 @@ export class Client { } /** partially update status of the specified APIService */ public async patchApiregistrationV1APIServiceStatus(params: Params$patchApiregistrationV1APIServiceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47748,7 +47745,7 @@ export class Client { } /** watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchApiregistrationV1APIServiceList(params: Params$watchApiregistrationV1APIServiceList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/watch/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/watch/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -47772,7 +47769,7 @@ export class Client { } /** watch changes to an object of kind APIService. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchApiregistrationV1APIService(params: Params$watchApiregistrationV1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1/watch/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/watch/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47796,7 +47793,7 @@ export class Client { } /** get available resources */ public async getApiregistrationV1beta1APIResources(params: Params$getApiregistrationV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -47808,7 +47805,7 @@ export class Client { } /** list or watch objects of kind APIService */ public async listApiregistrationV1beta1APIService(params: Params$listApiregistrationV1beta1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -47832,7 +47829,7 @@ export class Client { } /** create an APIService */ public async createApiregistrationV1beta1APIService(params: Params$createApiregistrationV1beta1APIService, option?: RequestOption): Promise<(Response$createApiregistrationV1beta1APIService$Status$200 | Response$createApiregistrationV1beta1APIService$Status$201 | Response$createApiregistrationV1beta1APIService$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47852,7 +47849,7 @@ export class Client { } /** delete collection of APIService */ public async deleteApiregistrationV1beta1CollectionAPIService(params: Params$deleteApiregistrationV1beta1CollectionAPIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47882,7 +47879,7 @@ export class Client { } /** read the specified APIService */ public async readApiregistrationV1beta1APIService(params: Params$readApiregistrationV1beta1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47900,7 +47897,7 @@ export class Client { } /** replace the specified APIService */ public async replaceApiregistrationV1beta1APIService(params: Params$replaceApiregistrationV1beta1APIService, option?: RequestOption): Promise<(Response$replaceApiregistrationV1beta1APIService$Status$200 | Response$replaceApiregistrationV1beta1APIService$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47920,7 +47917,7 @@ export class Client { } /** delete an APIService */ public async deleteApiregistrationV1beta1APIService(params: Params$deleteApiregistrationV1beta1APIService, option?: RequestOption): Promise<(Response$deleteApiregistrationV1beta1APIService$Status$200 | Response$deleteApiregistrationV1beta1APIService$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47942,7 +47939,7 @@ export class Client { } /** partially update the specified APIService */ public async patchApiregistrationV1beta1APIService(params: Params$patchApiregistrationV1beta1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47963,7 +47960,7 @@ export class Client { } /** read status of the specified APIService */ public async readApiregistrationV1beta1APIServiceStatus(params: Params$readApiregistrationV1beta1APIServiceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47979,7 +47976,7 @@ export class Client { } /** replace status of the specified APIService */ public async replaceApiregistrationV1beta1APIServiceStatus(params: Params$replaceApiregistrationV1beta1APIServiceStatus, option?: RequestOption): Promise<(Response$replaceApiregistrationV1beta1APIServiceStatus$Status$200 | Response$replaceApiregistrationV1beta1APIServiceStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47999,7 +47996,7 @@ export class Client { } /** partially update status of the specified APIService */ public async patchApiregistrationV1beta1APIServiceStatus(params: Params$patchApiregistrationV1beta1APIServiceStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48020,7 +48017,7 @@ export class Client { } /** watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchApiregistrationV1beta1APIServiceList(params: Params$watchApiregistrationV1beta1APIServiceList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/watch/apiservices\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/watch/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -48044,7 +48041,7 @@ export class Client { } /** watch changes to an object of kind APIService. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchApiregistrationV1beta1APIService(params: Params$watchApiregistrationV1beta1APIService, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48068,7 +48065,7 @@ export class Client { } /** get information of a group */ public async getAppsAPIGroup(params: Params$getAppsAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/\`; + const url = this.baseUrl + `/apis/apps/`; const headers = { Accept: params.headers.Accept }; @@ -48080,7 +48077,7 @@ export class Client { } /** get available resources */ public async getAppsV1APIResources(params: Params$getAppsV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/\`; + const url = this.baseUrl + `/apis/apps/v1/`; const headers = { Accept: params.headers.Accept }; @@ -48092,7 +48089,7 @@ export class Client { } /** list or watch objects of kind ControllerRevision */ public async listAppsV1ControllerRevisionForAllNamespaces(params: Params$listAppsV1ControllerRevisionForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/controllerrevisions\`; + const url = this.baseUrl + `/apis/apps/v1/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -48116,7 +48113,7 @@ export class Client { } /** list or watch objects of kind DaemonSet */ public async listAppsV1DaemonSetForAllNamespaces(params: Params$listAppsV1DaemonSetForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/daemonsets\`; + const url = this.baseUrl + `/apis/apps/v1/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -48140,7 +48137,7 @@ export class Client { } /** list or watch objects of kind Deployment */ public async listAppsV1DeploymentForAllNamespaces(params: Params$listAppsV1DeploymentForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/deployments\`; + const url = this.baseUrl + `/apis/apps/v1/deployments`; const headers = { Accept: params.headers.Accept }; @@ -48164,7 +48161,7 @@ export class Client { } /** list or watch objects of kind ControllerRevision */ public async listAppsV1NamespacedControllerRevision(params: Params$listAppsV1NamespacedControllerRevision, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -48188,7 +48185,7 @@ export class Client { } /** create a ControllerRevision */ public async createAppsV1NamespacedControllerRevision(params: Params$createAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$createAppsV1NamespacedControllerRevision$Status$200 | Response$createAppsV1NamespacedControllerRevision$Status$201 | Response$createAppsV1NamespacedControllerRevision$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48208,7 +48205,7 @@ export class Client { } /** delete collection of ControllerRevision */ public async deleteAppsV1CollectionNamespacedControllerRevision(params: Params$deleteAppsV1CollectionNamespacedControllerRevision, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48238,7 +48235,7 @@ export class Client { } /** read the specified ControllerRevision */ public async readAppsV1NamespacedControllerRevision(params: Params$readAppsV1NamespacedControllerRevision, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48256,7 +48253,7 @@ export class Client { } /** replace the specified ControllerRevision */ public async replaceAppsV1NamespacedControllerRevision(params: Params$replaceAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedControllerRevision$Status$200 | Response$replaceAppsV1NamespacedControllerRevision$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48276,7 +48273,7 @@ export class Client { } /** delete a ControllerRevision */ public async deleteAppsV1NamespacedControllerRevision(params: Params$deleteAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedControllerRevision$Status$200 | Response$deleteAppsV1NamespacedControllerRevision$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48298,7 +48295,7 @@ export class Client { } /** partially update the specified ControllerRevision */ public async patchAppsV1NamespacedControllerRevision(params: Params$patchAppsV1NamespacedControllerRevision, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48319,7 +48316,7 @@ export class Client { } /** list or watch objects of kind DaemonSet */ public async listAppsV1NamespacedDaemonSet(params: Params$listAppsV1NamespacedDaemonSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -48343,7 +48340,7 @@ export class Client { } /** create a DaemonSet */ public async createAppsV1NamespacedDaemonSet(params: Params$createAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedDaemonSet$Status$200 | Response$createAppsV1NamespacedDaemonSet$Status$201 | Response$createAppsV1NamespacedDaemonSet$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48363,7 +48360,7 @@ export class Client { } /** delete collection of DaemonSet */ public async deleteAppsV1CollectionNamespacedDaemonSet(params: Params$deleteAppsV1CollectionNamespacedDaemonSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48393,7 +48390,7 @@ export class Client { } /** read the specified DaemonSet */ public async readAppsV1NamespacedDaemonSet(params: Params$readAppsV1NamespacedDaemonSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48411,7 +48408,7 @@ export class Client { } /** replace the specified DaemonSet */ public async replaceAppsV1NamespacedDaemonSet(params: Params$replaceAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDaemonSet$Status$200 | Response$replaceAppsV1NamespacedDaemonSet$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48431,7 +48428,7 @@ export class Client { } /** delete a DaemonSet */ public async deleteAppsV1NamespacedDaemonSet(params: Params$deleteAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedDaemonSet$Status$200 | Response$deleteAppsV1NamespacedDaemonSet$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48453,7 +48450,7 @@ export class Client { } /** partially update the specified DaemonSet */ public async patchAppsV1NamespacedDaemonSet(params: Params$patchAppsV1NamespacedDaemonSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48474,7 +48471,7 @@ export class Client { } /** read status of the specified DaemonSet */ public async readAppsV1NamespacedDaemonSetStatus(params: Params$readAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -48490,7 +48487,7 @@ export class Client { } /** replace status of the specified DaemonSet */ public async replaceAppsV1NamespacedDaemonSetStatus(params: Params$replaceAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 | Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48510,7 +48507,7 @@ export class Client { } /** partially update status of the specified DaemonSet */ public async patchAppsV1NamespacedDaemonSetStatus(params: Params$patchAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48531,7 +48528,7 @@ export class Client { } /** list or watch objects of kind Deployment */ public async listAppsV1NamespacedDeployment(params: Params$listAppsV1NamespacedDeployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { Accept: params.headers.Accept }; @@ -48555,7 +48552,7 @@ export class Client { } /** create a Deployment */ public async createAppsV1NamespacedDeployment(params: Params$createAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$createAppsV1NamespacedDeployment$Status$200 | Response$createAppsV1NamespacedDeployment$Status$201 | Response$createAppsV1NamespacedDeployment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48575,7 +48572,7 @@ export class Client { } /** delete collection of Deployment */ public async deleteAppsV1CollectionNamespacedDeployment(params: Params$deleteAppsV1CollectionNamespacedDeployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48605,7 +48602,7 @@ export class Client { } /** read the specified Deployment */ public async readAppsV1NamespacedDeployment(params: Params$readAppsV1NamespacedDeployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48623,7 +48620,7 @@ export class Client { } /** replace the specified Deployment */ public async replaceAppsV1NamespacedDeployment(params: Params$replaceAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeployment$Status$200 | Response$replaceAppsV1NamespacedDeployment$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48643,7 +48640,7 @@ export class Client { } /** delete a Deployment */ public async deleteAppsV1NamespacedDeployment(params: Params$deleteAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedDeployment$Status$200 | Response$deleteAppsV1NamespacedDeployment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48665,7 +48662,7 @@ export class Client { } /** partially update the specified Deployment */ public async patchAppsV1NamespacedDeployment(params: Params$patchAppsV1NamespacedDeployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48686,7 +48683,7 @@ export class Client { } /** read scale of the specified Deployment */ public async readAppsV1NamespacedDeploymentScale(params: Params$readAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -48702,7 +48699,7 @@ export class Client { } /** replace scale of the specified Deployment */ public async replaceAppsV1NamespacedDeploymentScale(params: Params$replaceAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeploymentScale$Status$200 | Response$replaceAppsV1NamespacedDeploymentScale$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48722,7 +48719,7 @@ export class Client { } /** partially update scale of the specified Deployment */ public async patchAppsV1NamespacedDeploymentScale(params: Params$patchAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48743,7 +48740,7 @@ export class Client { } /** read status of the specified Deployment */ public async readAppsV1NamespacedDeploymentStatus(params: Params$readAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -48759,7 +48756,7 @@ export class Client { } /** replace status of the specified Deployment */ public async replaceAppsV1NamespacedDeploymentStatus(params: Params$replaceAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 | Response$replaceAppsV1NamespacedDeploymentStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48779,7 +48776,7 @@ export class Client { } /** partially update status of the specified Deployment */ public async patchAppsV1NamespacedDeploymentStatus(params: Params$patchAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48800,7 +48797,7 @@ export class Client { } /** list or watch objects of kind ReplicaSet */ public async listAppsV1NamespacedReplicaSet(params: Params$listAppsV1NamespacedReplicaSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -48824,7 +48821,7 @@ export class Client { } /** create a ReplicaSet */ public async createAppsV1NamespacedReplicaSet(params: Params$createAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedReplicaSet$Status$200 | Response$createAppsV1NamespacedReplicaSet$Status$201 | Response$createAppsV1NamespacedReplicaSet$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48844,7 +48841,7 @@ export class Client { } /** delete collection of ReplicaSet */ public async deleteAppsV1CollectionNamespacedReplicaSet(params: Params$deleteAppsV1CollectionNamespacedReplicaSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48874,7 +48871,7 @@ export class Client { } /** read the specified ReplicaSet */ public async readAppsV1NamespacedReplicaSet(params: Params$readAppsV1NamespacedReplicaSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48892,7 +48889,7 @@ export class Client { } /** replace the specified ReplicaSet */ public async replaceAppsV1NamespacedReplicaSet(params: Params$replaceAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSet$Status$200 | Response$replaceAppsV1NamespacedReplicaSet$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48912,7 +48909,7 @@ export class Client { } /** delete a ReplicaSet */ public async deleteAppsV1NamespacedReplicaSet(params: Params$deleteAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedReplicaSet$Status$200 | Response$deleteAppsV1NamespacedReplicaSet$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48934,7 +48931,7 @@ export class Client { } /** partially update the specified ReplicaSet */ public async patchAppsV1NamespacedReplicaSet(params: Params$patchAppsV1NamespacedReplicaSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48955,7 +48952,7 @@ export class Client { } /** read scale of the specified ReplicaSet */ public async readAppsV1NamespacedReplicaSetScale(params: Params$readAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -48971,7 +48968,7 @@ export class Client { } /** replace scale of the specified ReplicaSet */ public async replaceAppsV1NamespacedReplicaSetScale(params: Params$replaceAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 | Response$replaceAppsV1NamespacedReplicaSetScale$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48991,7 +48988,7 @@ export class Client { } /** partially update scale of the specified ReplicaSet */ public async patchAppsV1NamespacedReplicaSetScale(params: Params$patchAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49012,7 +49009,7 @@ export class Client { } /** read status of the specified ReplicaSet */ public async readAppsV1NamespacedReplicaSetStatus(params: Params$readAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -49028,7 +49025,7 @@ export class Client { } /** replace status of the specified ReplicaSet */ public async replaceAppsV1NamespacedReplicaSetStatus(params: Params$replaceAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 | Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49048,7 +49045,7 @@ export class Client { } /** partially update status of the specified ReplicaSet */ public async patchAppsV1NamespacedReplicaSetStatus(params: Params$patchAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49069,7 +49066,7 @@ export class Client { } /** list or watch objects of kind StatefulSet */ public async listAppsV1NamespacedStatefulSet(params: Params$listAppsV1NamespacedStatefulSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49093,7 +49090,7 @@ export class Client { } /** create a StatefulSet */ public async createAppsV1NamespacedStatefulSet(params: Params$createAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedStatefulSet$Status$200 | Response$createAppsV1NamespacedStatefulSet$Status$201 | Response$createAppsV1NamespacedStatefulSet$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49113,7 +49110,7 @@ export class Client { } /** delete collection of StatefulSet */ public async deleteAppsV1CollectionNamespacedStatefulSet(params: Params$deleteAppsV1CollectionNamespacedStatefulSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49143,7 +49140,7 @@ export class Client { } /** read the specified StatefulSet */ public async readAppsV1NamespacedStatefulSet(params: Params$readAppsV1NamespacedStatefulSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49161,7 +49158,7 @@ export class Client { } /** replace the specified StatefulSet */ public async replaceAppsV1NamespacedStatefulSet(params: Params$replaceAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSet$Status$200 | Response$replaceAppsV1NamespacedStatefulSet$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49181,7 +49178,7 @@ export class Client { } /** delete a StatefulSet */ public async deleteAppsV1NamespacedStatefulSet(params: Params$deleteAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedStatefulSet$Status$200 | Response$deleteAppsV1NamespacedStatefulSet$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49203,7 +49200,7 @@ export class Client { } /** partially update the specified StatefulSet */ public async patchAppsV1NamespacedStatefulSet(params: Params$patchAppsV1NamespacedStatefulSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49224,7 +49221,7 @@ export class Client { } /** read scale of the specified StatefulSet */ public async readAppsV1NamespacedStatefulSetScale(params: Params$readAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -49240,7 +49237,7 @@ export class Client { } /** replace scale of the specified StatefulSet */ public async replaceAppsV1NamespacedStatefulSetScale(params: Params$replaceAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 | Response$replaceAppsV1NamespacedStatefulSetScale$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49260,7 +49257,7 @@ export class Client { } /** partially update scale of the specified StatefulSet */ public async patchAppsV1NamespacedStatefulSetScale(params: Params$patchAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49281,7 +49278,7 @@ export class Client { } /** read status of the specified StatefulSet */ public async readAppsV1NamespacedStatefulSetStatus(params: Params$readAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -49297,7 +49294,7 @@ export class Client { } /** replace status of the specified StatefulSet */ public async replaceAppsV1NamespacedStatefulSetStatus(params: Params$replaceAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 | Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49317,7 +49314,7 @@ export class Client { } /** partially update status of the specified StatefulSet */ public async patchAppsV1NamespacedStatefulSetStatus(params: Params$patchAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49338,7 +49335,7 @@ export class Client { } /** list or watch objects of kind ReplicaSet */ public async listAppsV1ReplicaSetForAllNamespaces(params: Params$listAppsV1ReplicaSetForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/replicasets\`; + const url = this.baseUrl + `/apis/apps/v1/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -49362,7 +49359,7 @@ export class Client { } /** list or watch objects of kind StatefulSet */ public async listAppsV1StatefulSetForAllNamespaces(params: Params$listAppsV1StatefulSetForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/statefulsets\`; + const url = this.baseUrl + `/apis/apps/v1/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49386,7 +49383,7 @@ export class Client { } /** watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1ControllerRevisionListForAllNamespaces(params: Params$watchAppsV1ControllerRevisionListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/controllerrevisions\`; + const url = this.baseUrl + `/apis/apps/v1/watch/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -49410,7 +49407,7 @@ export class Client { } /** watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1DaemonSetListForAllNamespaces(params: Params$watchAppsV1DaemonSetListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/daemonsets\`; + const url = this.baseUrl + `/apis/apps/v1/watch/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -49434,7 +49431,7 @@ export class Client { } /** watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1DeploymentListForAllNamespaces(params: Params$watchAppsV1DeploymentListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/deployments\`; + const url = this.baseUrl + `/apis/apps/v1/watch/deployments`; const headers = { Accept: params.headers.Accept }; @@ -49458,7 +49455,7 @@ export class Client { } /** watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1NamespacedControllerRevisionList(params: Params$watchAppsV1NamespacedControllerRevisionList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -49482,7 +49479,7 @@ export class Client { } /** watch changes to an object of kind ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAppsV1NamespacedControllerRevision(params: Params$watchAppsV1NamespacedControllerRevision, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49506,7 +49503,7 @@ export class Client { } /** watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1NamespacedDaemonSetList(params: Params$watchAppsV1NamespacedDaemonSetList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -49530,7 +49527,7 @@ export class Client { } /** watch changes to an object of kind DaemonSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAppsV1NamespacedDaemonSet(params: Params$watchAppsV1NamespacedDaemonSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49554,7 +49551,7 @@ export class Client { } /** watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1NamespacedDeploymentList(params: Params$watchAppsV1NamespacedDeploymentList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { Accept: params.headers.Accept }; @@ -49578,7 +49575,7 @@ export class Client { } /** watch changes to an object of kind Deployment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAppsV1NamespacedDeployment(params: Params$watchAppsV1NamespacedDeployment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49602,7 +49599,7 @@ export class Client { } /** watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1NamespacedReplicaSetList(params: Params$watchAppsV1NamespacedReplicaSetList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -49626,7 +49623,7 @@ export class Client { } /** watch changes to an object of kind ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAppsV1NamespacedReplicaSet(params: Params$watchAppsV1NamespacedReplicaSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49650,7 +49647,7 @@ export class Client { } /** watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1NamespacedStatefulSetList(params: Params$watchAppsV1NamespacedStatefulSetList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49674,7 +49671,7 @@ export class Client { } /** watch changes to an object of kind StatefulSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAppsV1NamespacedStatefulSet(params: Params$watchAppsV1NamespacedStatefulSet, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49698,7 +49695,7 @@ export class Client { } /** watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1ReplicaSetListForAllNamespaces(params: Params$watchAppsV1ReplicaSetListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/replicasets\`; + const url = this.baseUrl + `/apis/apps/v1/watch/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -49722,7 +49719,7 @@ export class Client { } /** watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAppsV1StatefulSetListForAllNamespaces(params: Params$watchAppsV1StatefulSetListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/apps/v1/watch/statefulsets\`; + const url = this.baseUrl + `/apis/apps/v1/watch/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49746,7 +49743,7 @@ export class Client { } /** get information of a group */ public async getAuditregistrationAPIGroup(params: Params$getAuditregistrationAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -49758,7 +49755,7 @@ export class Client { } /** get available resources */ public async getAuditregistrationV1alpha1APIResources(params: Params$getAuditregistrationV1alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -49770,7 +49767,7 @@ export class Client { } /** list or watch objects of kind AuditSink */ public async listAuditregistrationV1alpha1AuditSink(params: Params$listAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks`; const headers = { Accept: params.headers.Accept }; @@ -49794,7 +49791,7 @@ export class Client { } /** create an AuditSink */ public async createAuditregistrationV1alpha1AuditSink(params: Params$createAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise<(Response$createAuditregistrationV1alpha1AuditSink$Status$200 | Response$createAuditregistrationV1alpha1AuditSink$Status$201 | Response$createAuditregistrationV1alpha1AuditSink$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49814,7 +49811,7 @@ export class Client { } /** delete collection of AuditSink */ public async deleteAuditregistrationV1alpha1CollectionAuditSink(params: Params$deleteAuditregistrationV1alpha1CollectionAuditSink, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49844,7 +49841,7 @@ export class Client { } /** read the specified AuditSink */ public async readAuditregistrationV1alpha1AuditSink(params: Params$readAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49862,7 +49859,7 @@ export class Client { } /** replace the specified AuditSink */ public async replaceAuditregistrationV1alpha1AuditSink(params: Params$replaceAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise<(Response$replaceAuditregistrationV1alpha1AuditSink$Status$200 | Response$replaceAuditregistrationV1alpha1AuditSink$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49882,7 +49879,7 @@ export class Client { } /** delete an AuditSink */ public async deleteAuditregistrationV1alpha1AuditSink(params: Params$deleteAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise<(Response$deleteAuditregistrationV1alpha1AuditSink$Status$200 | Response$deleteAuditregistrationV1alpha1AuditSink$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49904,7 +49901,7 @@ export class Client { } /** partially update the specified AuditSink */ public async patchAuditregistrationV1alpha1AuditSink(params: Params$patchAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49925,7 +49922,7 @@ export class Client { } /** watch individual changes to a list of AuditSink. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAuditregistrationV1alpha1AuditSinkList(params: Params$watchAuditregistrationV1alpha1AuditSinkList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks`; const headers = { Accept: params.headers.Accept }; @@ -49949,7 +49946,7 @@ export class Client { } /** watch changes to an object of kind AuditSink. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAuditregistrationV1alpha1AuditSink(params: Params$watchAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49973,7 +49970,7 @@ export class Client { } /** get information of a group */ public async getAuthenticationAPIGroup(params: Params$getAuthenticationAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/authentication.k8s.io/\`; + const url = this.baseUrl + `/apis/authentication.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -49985,7 +49982,7 @@ export class Client { } /** get available resources */ public async getAuthenticationV1APIResources(params: Params$getAuthenticationV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/authentication.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/authentication.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -49997,7 +49994,7 @@ export class Client { } /** create a TokenReview */ public async createAuthenticationV1TokenReview(params: Params$createAuthenticationV1TokenReview, option?: RequestOption): Promise<(Response$createAuthenticationV1TokenReview$Status$200 | Response$createAuthenticationV1TokenReview$Status$201 | Response$createAuthenticationV1TokenReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authentication.k8s.io/v1/tokenreviews\`; + const url = this.baseUrl + `/apis/authentication.k8s.io/v1/tokenreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50017,7 +50014,7 @@ export class Client { } /** get available resources */ public async getAuthenticationV1beta1APIResources(params: Params$getAuthenticationV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/authentication.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/authentication.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -50029,7 +50026,7 @@ export class Client { } /** create a TokenReview */ public async createAuthenticationV1beta1TokenReview(params: Params$createAuthenticationV1beta1TokenReview, option?: RequestOption): Promise<(Response$createAuthenticationV1beta1TokenReview$Status$200 | Response$createAuthenticationV1beta1TokenReview$Status$201 | Response$createAuthenticationV1beta1TokenReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authentication.k8s.io/v1beta1/tokenreviews\`; + const url = this.baseUrl + `/apis/authentication.k8s.io/v1beta1/tokenreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50049,7 +50046,7 @@ export class Client { } /** get information of a group */ public async getAuthorizationAPIGroup(params: Params$getAuthorizationAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/authorization.k8s.io/\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -50061,7 +50058,7 @@ export class Client { } /** get available resources */ public async getAuthorizationV1APIResources(params: Params$getAuthorizationV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -50073,7 +50070,7 @@ export class Client { } /** create a LocalSubjectAccessReview */ public async createAuthorizationV1NamespacedLocalSubjectAccessReview(params: Params$createAuthorizationV1NamespacedLocalSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$200 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$201 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50093,7 +50090,7 @@ export class Client { } /** create a SelfSubjectAccessReview */ public async createAuthorizationV1SelfSubjectAccessReview(params: Params$createAuthorizationV1SelfSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SelfSubjectAccessReview$Status$200 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$201 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/selfsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50113,7 +50110,7 @@ export class Client { } /** create a SelfSubjectRulesReview */ public async createAuthorizationV1SelfSubjectRulesReview(params: Params$createAuthorizationV1SelfSubjectRulesReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SelfSubjectRulesReview$Status$200 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$201 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1/selfsubjectrulesreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/selfsubjectrulesreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50133,7 +50130,7 @@ export class Client { } /** create a SubjectAccessReview */ public async createAuthorizationV1SubjectAccessReview(params: Params$createAuthorizationV1SubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SubjectAccessReview$Status$200 | Response$createAuthorizationV1SubjectAccessReview$Status$201 | Response$createAuthorizationV1SubjectAccessReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1/subjectaccessreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/subjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50153,7 +50150,7 @@ export class Client { } /** get available resources */ public async getAuthorizationV1beta1APIResources(params: Params$getAuthorizationV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -50165,7 +50162,7 @@ export class Client { } /** create a LocalSubjectAccessReview */ public async createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(params: Params$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview$Status$200 | Response$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview$Status$201 | Response$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50185,7 +50182,7 @@ export class Client { } /** create a SelfSubjectAccessReview */ public async createAuthorizationV1beta1SelfSubjectAccessReview(params: Params$createAuthorizationV1beta1SelfSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1SelfSubjectAccessReview$Status$200 | Response$createAuthorizationV1beta1SelfSubjectAccessReview$Status$201 | Response$createAuthorizationV1beta1SelfSubjectAccessReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50205,7 +50202,7 @@ export class Client { } /** create a SelfSubjectRulesReview */ public async createAuthorizationV1beta1SelfSubjectRulesReview(params: Params$createAuthorizationV1beta1SelfSubjectRulesReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1SelfSubjectRulesReview$Status$200 | Response$createAuthorizationV1beta1SelfSubjectRulesReview$Status$201 | Response$createAuthorizationV1beta1SelfSubjectRulesReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50225,7 +50222,7 @@ export class Client { } /** create a SubjectAccessReview */ public async createAuthorizationV1beta1SubjectAccessReview(params: Params$createAuthorizationV1beta1SubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1SubjectAccessReview$Status$200 | Response$createAuthorizationV1beta1SubjectAccessReview$Status$201 | Response$createAuthorizationV1beta1SubjectAccessReview$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/authorization.k8s.io/v1beta1/subjectaccessreviews\`; + const url = this.baseUrl + `/apis/authorization.k8s.io/v1beta1/subjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50245,7 +50242,7 @@ export class Client { } /** get information of a group */ public async getAutoscalingAPIGroup(params: Params$getAutoscalingAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/\`; + const url = this.baseUrl + `/apis/autoscaling/`; const headers = { Accept: params.headers.Accept }; @@ -50257,7 +50254,7 @@ export class Client { } /** get available resources */ public async getAutoscalingV1APIResources(params: Params$getAutoscalingV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/\`; + const url = this.baseUrl + `/apis/autoscaling/v1/`; const headers = { Accept: params.headers.Accept }; @@ -50269,7 +50266,7 @@ export class Client { } /** list or watch objects of kind HorizontalPodAutoscaler */ public async listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(params: Params$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v1/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50293,7 +50290,7 @@ export class Client { } /** list or watch objects of kind HorizontalPodAutoscaler */ public async listAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$listAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50317,7 +50314,7 @@ export class Client { } /** create a HorizontalPodAutoscaler */ public async createAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$createAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50337,7 +50334,7 @@ export class Client { } /** delete collection of HorizontalPodAutoscaler */ public async deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50367,7 +50364,7 @@ export class Client { } /** read the specified HorizontalPodAutoscaler */ public async readAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$readAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50385,7 +50382,7 @@ export class Client { } /** replace the specified HorizontalPodAutoscaler */ public async replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50405,7 +50402,7 @@ export class Client { } /** delete a HorizontalPodAutoscaler */ public async deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50427,7 +50424,7 @@ export class Client { } /** partially update the specified HorizontalPodAutoscaler */ public async patchAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$patchAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50448,7 +50445,7 @@ export class Client { } /** read status of the specified HorizontalPodAutoscaler */ public async readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(params: Params$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -50464,7 +50461,7 @@ export class Client { } /** replace status of the specified HorizontalPodAutoscaler */ public async replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(params: Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50484,7 +50481,7 @@ export class Client { } /** partially update status of the specified HorizontalPodAutoscaler */ public async patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(params: Params$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50505,7 +50502,7 @@ export class Client { } /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(params: Params$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/watch/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v1/watch/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50529,7 +50526,7 @@ export class Client { } /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(params: Params$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50553,7 +50550,7 @@ export class Client { } /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$watchAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50577,7 +50574,7 @@ export class Client { } /** get available resources */ public async getAutoscalingV2beta1APIResources(params: Params$getAutoscalingV2beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/`; const headers = { Accept: params.headers.Accept }; @@ -50589,7 +50586,7 @@ export class Client { } /** list or watch objects of kind HorizontalPodAutoscaler */ public async listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(params: Params$listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50613,7 +50610,7 @@ export class Client { } /** list or watch objects of kind HorizontalPodAutoscaler */ public async listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(params: Params$listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50637,7 +50634,7 @@ export class Client { } /** create a HorizontalPodAutoscaler */ public async createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(params: Params$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50657,7 +50654,7 @@ export class Client { } /** delete collection of HorizontalPodAutoscaler */ public async deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50687,7 +50684,7 @@ export class Client { } /** read the specified HorizontalPodAutoscaler */ public async readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(params: Params$readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50705,7 +50702,7 @@ export class Client { } /** replace the specified HorizontalPodAutoscaler */ public async replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(params: Params$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50725,7 +50722,7 @@ export class Client { } /** delete a HorizontalPodAutoscaler */ public async deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50747,7 +50744,7 @@ export class Client { } /** partially update the specified HorizontalPodAutoscaler */ public async patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(params: Params$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50768,7 +50765,7 @@ export class Client { } /** read status of the specified HorizontalPodAutoscaler */ public async readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(params: Params$readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -50784,7 +50781,7 @@ export class Client { } /** replace status of the specified HorizontalPodAutoscaler */ public async replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(params: Params$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50804,7 +50801,7 @@ export class Client { } /** partially update status of the specified HorizontalPodAutoscaler */ public async patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(params: Params$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50825,7 +50822,7 @@ export class Client { } /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(params: Params$watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50849,7 +50846,7 @@ export class Client { } /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(params: Params$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50873,7 +50870,7 @@ export class Client { } /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(params: Params$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50897,7 +50894,7 @@ export class Client { } /** get available resources */ public async getAutoscalingV2beta2APIResources(params: Params$getAutoscalingV2beta2APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/`; const headers = { Accept: params.headers.Accept }; @@ -50909,7 +50906,7 @@ export class Client { } /** list or watch objects of kind HorizontalPodAutoscaler */ public async listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(params: Params$listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50933,7 +50930,7 @@ export class Client { } /** list or watch objects of kind HorizontalPodAutoscaler */ public async listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(params: Params$listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50957,7 +50954,7 @@ export class Client { } /** create a HorizontalPodAutoscaler */ public async createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(params: Params$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50977,7 +50974,7 @@ export class Client { } /** delete collection of HorizontalPodAutoscaler */ public async deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51007,7 +51004,7 @@ export class Client { } /** read the specified HorizontalPodAutoscaler */ public async readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(params: Params$readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51025,7 +51022,7 @@ export class Client { } /** replace the specified HorizontalPodAutoscaler */ public async replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(params: Params$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51045,7 +51042,7 @@ export class Client { } /** delete a HorizontalPodAutoscaler */ public async deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51067,7 +51064,7 @@ export class Client { } /** partially update the specified HorizontalPodAutoscaler */ public async patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(params: Params$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51088,7 +51085,7 @@ export class Client { } /** read status of the specified HorizontalPodAutoscaler */ public async readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(params: Params$readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -51104,7 +51101,7 @@ export class Client { } /** replace status of the specified HorizontalPodAutoscaler */ public async replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(params: Params$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51124,7 +51121,7 @@ export class Client { } /** partially update status of the specified HorizontalPodAutoscaler */ public async patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(params: Params$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51145,7 +51142,7 @@ export class Client { } /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(params: Params$watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -51169,7 +51166,7 @@ export class Client { } /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(params: Params$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -51193,7 +51190,7 @@ export class Client { } /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(params: Params$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/autoscaling/v2beta2/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/autoscaling/v2beta2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51217,7 +51214,7 @@ export class Client { } /** get information of a group */ public async getBatchAPIGroup(params: Params$getBatchAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/\`; + const url = this.baseUrl + `/apis/batch/`; const headers = { Accept: params.headers.Accept }; @@ -51229,7 +51226,7 @@ export class Client { } /** get available resources */ public async getBatchV1APIResources(params: Params$getBatchV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/\`; + const url = this.baseUrl + `/apis/batch/v1/`; const headers = { Accept: params.headers.Accept }; @@ -51241,7 +51238,7 @@ export class Client { } /** list or watch objects of kind Job */ public async listBatchV1JobForAllNamespaces(params: Params$listBatchV1JobForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/jobs\`; + const url = this.baseUrl + `/apis/batch/v1/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51265,7 +51262,7 @@ export class Client { } /** list or watch objects of kind Job */ public async listBatchV1NamespacedJob(params: Params$listBatchV1NamespacedJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51289,7 +51286,7 @@ export class Client { } /** create a Job */ public async createBatchV1NamespacedJob(params: Params$createBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$createBatchV1NamespacedJob$Status$200 | Response$createBatchV1NamespacedJob$Status$201 | Response$createBatchV1NamespacedJob$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51309,7 +51306,7 @@ export class Client { } /** delete collection of Job */ public async deleteBatchV1CollectionNamespacedJob(params: Params$deleteBatchV1CollectionNamespacedJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51339,7 +51336,7 @@ export class Client { } /** read the specified Job */ public async readBatchV1NamespacedJob(params: Params$readBatchV1NamespacedJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51357,7 +51354,7 @@ export class Client { } /** replace the specified Job */ public async replaceBatchV1NamespacedJob(params: Params$replaceBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedJob$Status$200 | Response$replaceBatchV1NamespacedJob$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51377,7 +51374,7 @@ export class Client { } /** delete a Job */ public async deleteBatchV1NamespacedJob(params: Params$deleteBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$deleteBatchV1NamespacedJob$Status$200 | Response$deleteBatchV1NamespacedJob$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51399,7 +51396,7 @@ export class Client { } /** partially update the specified Job */ public async patchBatchV1NamespacedJob(params: Params$patchBatchV1NamespacedJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51420,7 +51417,7 @@ export class Client { } /** read status of the specified Job */ public async readBatchV1NamespacedJobStatus(params: Params$readBatchV1NamespacedJobStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -51436,7 +51433,7 @@ export class Client { } /** replace status of the specified Job */ public async replaceBatchV1NamespacedJobStatus(params: Params$replaceBatchV1NamespacedJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedJobStatus$Status$200 | Response$replaceBatchV1NamespacedJobStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51456,7 +51453,7 @@ export class Client { } /** partially update status of the specified Job */ public async patchBatchV1NamespacedJobStatus(params: Params$patchBatchV1NamespacedJobStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51477,7 +51474,7 @@ export class Client { } /** watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchBatchV1JobListForAllNamespaces(params: Params$watchBatchV1JobListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/watch/jobs\`; + const url = this.baseUrl + `/apis/batch/v1/watch/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51501,7 +51498,7 @@ export class Client { } /** watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchBatchV1NamespacedJobList(params: Params$watchBatchV1NamespacedJobList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = this.baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51525,7 +51522,7 @@ export class Client { } /** watch changes to an object of kind Job. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchBatchV1NamespacedJob(params: Params$watchBatchV1NamespacedJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51549,7 +51546,7 @@ export class Client { } /** get available resources */ public async getBatchV1beta1APIResources(params: Params$getBatchV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/\`; + const url = this.baseUrl + `/apis/batch/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -51561,7 +51558,7 @@ export class Client { } /** list or watch objects of kind CronJob */ public async listBatchV1beta1CronJobForAllNamespaces(params: Params$listBatchV1beta1CronJobForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v1beta1/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51585,7 +51582,7 @@ export class Client { } /** list or watch objects of kind CronJob */ public async listBatchV1beta1NamespacedCronJob(params: Params$listBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51609,7 +51606,7 @@ export class Client { } /** create a CronJob */ public async createBatchV1beta1NamespacedCronJob(params: Params$createBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise<(Response$createBatchV1beta1NamespacedCronJob$Status$200 | Response$createBatchV1beta1NamespacedCronJob$Status$201 | Response$createBatchV1beta1NamespacedCronJob$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51629,7 +51626,7 @@ export class Client { } /** delete collection of CronJob */ public async deleteBatchV1beta1CollectionNamespacedCronJob(params: Params$deleteBatchV1beta1CollectionNamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51659,7 +51656,7 @@ export class Client { } /** read the specified CronJob */ public async readBatchV1beta1NamespacedCronJob(params: Params$readBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51677,7 +51674,7 @@ export class Client { } /** replace the specified CronJob */ public async replaceBatchV1beta1NamespacedCronJob(params: Params$replaceBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise<(Response$replaceBatchV1beta1NamespacedCronJob$Status$200 | Response$replaceBatchV1beta1NamespacedCronJob$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51697,7 +51694,7 @@ export class Client { } /** delete a CronJob */ public async deleteBatchV1beta1NamespacedCronJob(params: Params$deleteBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise<(Response$deleteBatchV1beta1NamespacedCronJob$Status$200 | Response$deleteBatchV1beta1NamespacedCronJob$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51719,7 +51716,7 @@ export class Client { } /** partially update the specified CronJob */ public async patchBatchV1beta1NamespacedCronJob(params: Params$patchBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51740,7 +51737,7 @@ export class Client { } /** read status of the specified CronJob */ public async readBatchV1beta1NamespacedCronJobStatus(params: Params$readBatchV1beta1NamespacedCronJobStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -51756,7 +51753,7 @@ export class Client { } /** replace status of the specified CronJob */ public async replaceBatchV1beta1NamespacedCronJobStatus(params: Params$replaceBatchV1beta1NamespacedCronJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$200 | Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51776,7 +51773,7 @@ export class Client { } /** partially update status of the specified CronJob */ public async patchBatchV1beta1NamespacedCronJobStatus(params: Params$patchBatchV1beta1NamespacedCronJobStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51797,7 +51794,7 @@ export class Client { } /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchBatchV1beta1CronJobListForAllNamespaces(params: Params$watchBatchV1beta1CronJobListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/watch/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v1beta1/watch/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51821,7 +51818,7 @@ export class Client { } /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchBatchV1beta1NamespacedCronJobList(params: Params$watchBatchV1beta1NamespacedCronJobList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51845,7 +51842,7 @@ export class Client { } /** watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchBatchV1beta1NamespacedCronJob(params: Params$watchBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51869,7 +51866,7 @@ export class Client { } /** get available resources */ public async getBatchV2alpha1APIResources(params: Params$getBatchV2alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -51881,7 +51878,7 @@ export class Client { } /** list or watch objects of kind CronJob */ public async listBatchV2alpha1CronJobForAllNamespaces(params: Params$listBatchV2alpha1CronJobForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51905,7 +51902,7 @@ export class Client { } /** list or watch objects of kind CronJob */ public async listBatchV2alpha1NamespacedCronJob(params: Params$listBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51929,7 +51926,7 @@ export class Client { } /** create a CronJob */ public async createBatchV2alpha1NamespacedCronJob(params: Params$createBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise<(Response$createBatchV2alpha1NamespacedCronJob$Status$200 | Response$createBatchV2alpha1NamespacedCronJob$Status$201 | Response$createBatchV2alpha1NamespacedCronJob$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51949,7 +51946,7 @@ export class Client { } /** delete collection of CronJob */ public async deleteBatchV2alpha1CollectionNamespacedCronJob(params: Params$deleteBatchV2alpha1CollectionNamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51979,7 +51976,7 @@ export class Client { } /** read the specified CronJob */ public async readBatchV2alpha1NamespacedCronJob(params: Params$readBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51997,7 +51994,7 @@ export class Client { } /** replace the specified CronJob */ public async replaceBatchV2alpha1NamespacedCronJob(params: Params$replaceBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise<(Response$replaceBatchV2alpha1NamespacedCronJob$Status$200 | Response$replaceBatchV2alpha1NamespacedCronJob$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52017,7 +52014,7 @@ export class Client { } /** delete a CronJob */ public async deleteBatchV2alpha1NamespacedCronJob(params: Params$deleteBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise<(Response$deleteBatchV2alpha1NamespacedCronJob$Status$200 | Response$deleteBatchV2alpha1NamespacedCronJob$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52039,7 +52036,7 @@ export class Client { } /** partially update the specified CronJob */ public async patchBatchV2alpha1NamespacedCronJob(params: Params$patchBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52060,7 +52057,7 @@ export class Client { } /** read status of the specified CronJob */ public async readBatchV2alpha1NamespacedCronJobStatus(params: Params$readBatchV2alpha1NamespacedCronJobStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -52076,7 +52073,7 @@ export class Client { } /** replace status of the specified CronJob */ public async replaceBatchV2alpha1NamespacedCronJobStatus(params: Params$replaceBatchV2alpha1NamespacedCronJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$200 | Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52096,7 +52093,7 @@ export class Client { } /** partially update status of the specified CronJob */ public async patchBatchV2alpha1NamespacedCronJobStatus(params: Params$patchBatchV2alpha1NamespacedCronJobStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52117,7 +52114,7 @@ export class Client { } /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchBatchV2alpha1CronJobListForAllNamespaces(params: Params$watchBatchV2alpha1CronJobListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/watch/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/watch/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -52141,7 +52138,7 @@ export class Client { } /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchBatchV2alpha1NamespacedCronJobList(params: Params$watchBatchV2alpha1NamespacedCronJobList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -52165,7 +52162,7 @@ export class Client { } /** watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchBatchV2alpha1NamespacedCronJob(params: Params$watchBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/batch/v2alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/batch/v2alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52189,7 +52186,7 @@ export class Client { } /** get information of a group */ public async getCertificatesAPIGroup(params: Params$getCertificatesAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -52201,7 +52198,7 @@ export class Client { } /** get available resources */ public async getCertificatesV1beta1APIResources(params: Params$getCertificatesV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -52213,7 +52210,7 @@ export class Client { } /** list or watch objects of kind CertificateSigningRequest */ public async listCertificatesV1beta1CertificateSigningRequest(params: Params$listCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests`; const headers = { Accept: params.headers.Accept }; @@ -52237,7 +52234,7 @@ export class Client { } /** create a CertificateSigningRequest */ public async createCertificatesV1beta1CertificateSigningRequest(params: Params$createCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise<(Response$createCertificatesV1beta1CertificateSigningRequest$Status$200 | Response$createCertificatesV1beta1CertificateSigningRequest$Status$201 | Response$createCertificatesV1beta1CertificateSigningRequest$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52257,7 +52254,7 @@ export class Client { } /** delete collection of CertificateSigningRequest */ public async deleteCertificatesV1beta1CollectionCertificateSigningRequest(params: Params$deleteCertificatesV1beta1CollectionCertificateSigningRequest, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52287,7 +52284,7 @@ export class Client { } /** read the specified CertificateSigningRequest */ public async readCertificatesV1beta1CertificateSigningRequest(params: Params$readCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52305,7 +52302,7 @@ export class Client { } /** replace the specified CertificateSigningRequest */ public async replaceCertificatesV1beta1CertificateSigningRequest(params: Params$replaceCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise<(Response$replaceCertificatesV1beta1CertificateSigningRequest$Status$200 | Response$replaceCertificatesV1beta1CertificateSigningRequest$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52325,7 +52322,7 @@ export class Client { } /** delete a CertificateSigningRequest */ public async deleteCertificatesV1beta1CertificateSigningRequest(params: Params$deleteCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise<(Response$deleteCertificatesV1beta1CertificateSigningRequest$Status$200 | Response$deleteCertificatesV1beta1CertificateSigningRequest$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52347,7 +52344,7 @@ export class Client { } /** partially update the specified CertificateSigningRequest */ public async patchCertificatesV1beta1CertificateSigningRequest(params: Params$patchCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52368,7 +52365,7 @@ export class Client { } /** replace approval of the specified CertificateSigningRequest */ public async replaceCertificatesV1beta1CertificateSigningRequestApproval(params: Params$replaceCertificatesV1beta1CertificateSigningRequestApproval, option?: RequestOption): Promise<(Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$200 | Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/approval\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/approval`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52388,7 +52385,7 @@ export class Client { } /** read status of the specified CertificateSigningRequest */ public async readCertificatesV1beta1CertificateSigningRequestStatus(params: Params$readCertificatesV1beta1CertificateSigningRequestStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -52404,7 +52401,7 @@ export class Client { } /** replace status of the specified CertificateSigningRequest */ public async replaceCertificatesV1beta1CertificateSigningRequestStatus(params: Params$replaceCertificatesV1beta1CertificateSigningRequestStatus, option?: RequestOption): Promise<(Response$replaceCertificatesV1beta1CertificateSigningRequestStatus$Status$200 | Response$replaceCertificatesV1beta1CertificateSigningRequestStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52424,7 +52421,7 @@ export class Client { } /** partially update status of the specified CertificateSigningRequest */ public async patchCertificatesV1beta1CertificateSigningRequestStatus(params: Params$patchCertificatesV1beta1CertificateSigningRequestStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52445,7 +52442,7 @@ export class Client { } /** watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCertificatesV1beta1CertificateSigningRequestList(params: Params$watchCertificatesV1beta1CertificateSigningRequestList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests`; const headers = { Accept: params.headers.Accept }; @@ -52469,7 +52466,7 @@ export class Client { } /** watch changes to an object of kind CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCertificatesV1beta1CertificateSigningRequest(params: Params$watchCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52493,7 +52490,7 @@ export class Client { } /** get information of a group */ public async getCoordinationAPIGroup(params: Params$getCoordinationAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -52505,7 +52502,7 @@ export class Client { } /** get available resources */ public async getCoordinationV1APIResources(params: Params$getCoordinationV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -52517,7 +52514,7 @@ export class Client { } /** list or watch objects of kind Lease */ public async listCoordinationV1LeaseForAllNamespaces(params: Params$listCoordinationV1LeaseForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/leases`; const headers = { Accept: params.headers.Accept }; @@ -52541,7 +52538,7 @@ export class Client { } /** list or watch objects of kind Lease */ public async listCoordinationV1NamespacedLease(params: Params$listCoordinationV1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -52565,7 +52562,7 @@ export class Client { } /** create a Lease */ public async createCoordinationV1NamespacedLease(params: Params$createCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$createCoordinationV1NamespacedLease$Status$200 | Response$createCoordinationV1NamespacedLease$Status$201 | Response$createCoordinationV1NamespacedLease$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52585,7 +52582,7 @@ export class Client { } /** delete collection of Lease */ public async deleteCoordinationV1CollectionNamespacedLease(params: Params$deleteCoordinationV1CollectionNamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52615,7 +52612,7 @@ export class Client { } /** read the specified Lease */ public async readCoordinationV1NamespacedLease(params: Params$readCoordinationV1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52633,7 +52630,7 @@ export class Client { } /** replace the specified Lease */ public async replaceCoordinationV1NamespacedLease(params: Params$replaceCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$replaceCoordinationV1NamespacedLease$Status$200 | Response$replaceCoordinationV1NamespacedLease$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52653,7 +52650,7 @@ export class Client { } /** delete a Lease */ public async deleteCoordinationV1NamespacedLease(params: Params$deleteCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$deleteCoordinationV1NamespacedLease$Status$200 | Response$deleteCoordinationV1NamespacedLease$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52675,7 +52672,7 @@ export class Client { } /** partially update the specified Lease */ public async patchCoordinationV1NamespacedLease(params: Params$patchCoordinationV1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52696,7 +52693,7 @@ export class Client { } /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoordinationV1LeaseListForAllNamespaces(params: Params$watchCoordinationV1LeaseListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/watch/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/watch/leases`; const headers = { Accept: params.headers.Accept }; @@ -52720,7 +52717,7 @@ export class Client { } /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoordinationV1NamespacedLeaseList(params: Params$watchCoordinationV1NamespacedLeaseList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -52744,7 +52741,7 @@ export class Client { } /** watch changes to an object of kind Lease. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoordinationV1NamespacedLease(params: Params$watchCoordinationV1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52768,7 +52765,7 @@ export class Client { } /** get available resources */ public async getCoordinationV1beta1APIResources(params: Params$getCoordinationV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -52780,7 +52777,7 @@ export class Client { } /** list or watch objects of kind Lease */ public async listCoordinationV1beta1LeaseForAllNamespaces(params: Params$listCoordinationV1beta1LeaseForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/leases`; const headers = { Accept: params.headers.Accept }; @@ -52804,7 +52801,7 @@ export class Client { } /** list or watch objects of kind Lease */ public async listCoordinationV1beta1NamespacedLease(params: Params$listCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -52828,7 +52825,7 @@ export class Client { } /** create a Lease */ public async createCoordinationV1beta1NamespacedLease(params: Params$createCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise<(Response$createCoordinationV1beta1NamespacedLease$Status$200 | Response$createCoordinationV1beta1NamespacedLease$Status$201 | Response$createCoordinationV1beta1NamespacedLease$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52848,7 +52845,7 @@ export class Client { } /** delete collection of Lease */ public async deleteCoordinationV1beta1CollectionNamespacedLease(params: Params$deleteCoordinationV1beta1CollectionNamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52878,7 +52875,7 @@ export class Client { } /** read the specified Lease */ public async readCoordinationV1beta1NamespacedLease(params: Params$readCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52896,7 +52893,7 @@ export class Client { } /** replace the specified Lease */ public async replaceCoordinationV1beta1NamespacedLease(params: Params$replaceCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise<(Response$replaceCoordinationV1beta1NamespacedLease$Status$200 | Response$replaceCoordinationV1beta1NamespacedLease$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52916,7 +52913,7 @@ export class Client { } /** delete a Lease */ public async deleteCoordinationV1beta1NamespacedLease(params: Params$deleteCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise<(Response$deleteCoordinationV1beta1NamespacedLease$Status$200 | Response$deleteCoordinationV1beta1NamespacedLease$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52938,7 +52935,7 @@ export class Client { } /** partially update the specified Lease */ public async patchCoordinationV1beta1NamespacedLease(params: Params$patchCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52959,7 +52956,7 @@ export class Client { } /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoordinationV1beta1LeaseListForAllNamespaces(params: Params$watchCoordinationV1beta1LeaseListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/watch/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/watch/leases`; const headers = { Accept: params.headers.Accept }; @@ -52983,7 +52980,7 @@ export class Client { } /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchCoordinationV1beta1NamespacedLeaseList(params: Params$watchCoordinationV1beta1NamespacedLeaseList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -53007,7 +53004,7 @@ export class Client { } /** watch changes to an object of kind Lease. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchCoordinationV1beta1NamespacedLease(params: Params$watchCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/coordination.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/coordination.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53031,7 +53028,7 @@ export class Client { } /** get information of a group */ public async getDiscoveryAPIGroup(params: Params$getDiscoveryAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -53043,7 +53040,7 @@ export class Client { } /** get available resources */ public async getDiscoveryV1beta1APIResources(params: Params$getDiscoveryV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -53055,7 +53052,7 @@ export class Client { } /** list or watch objects of kind EndpointSlice */ public async listDiscoveryV1beta1EndpointSliceForAllNamespaces(params: Params$listDiscoveryV1beta1EndpointSliceForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/endpointslices\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53079,7 +53076,7 @@ export class Client { } /** list or watch objects of kind EndpointSlice */ public async listDiscoveryV1beta1NamespacedEndpointSlice(params: Params$listDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53103,7 +53100,7 @@ export class Client { } /** create an EndpointSlice */ public async createDiscoveryV1beta1NamespacedEndpointSlice(params: Params$createDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$200 | Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$201 | Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53123,7 +53120,7 @@ export class Client { } /** delete collection of EndpointSlice */ public async deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(params: Params$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53153,7 +53150,7 @@ export class Client { } /** read the specified EndpointSlice */ public async readDiscoveryV1beta1NamespacedEndpointSlice(params: Params$readDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53171,7 +53168,7 @@ export class Client { } /** replace the specified EndpointSlice */ public async replaceDiscoveryV1beta1NamespacedEndpointSlice(params: Params$replaceDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$200 | Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53191,7 +53188,7 @@ export class Client { } /** delete an EndpointSlice */ public async deleteDiscoveryV1beta1NamespacedEndpointSlice(params: Params$deleteDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$200 | Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53213,7 +53210,7 @@ export class Client { } /** partially update the specified EndpointSlice */ public async patchDiscoveryV1beta1NamespacedEndpointSlice(params: Params$patchDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53234,7 +53231,7 @@ export class Client { } /** watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(params: Params$watchDiscoveryV1beta1EndpointSliceListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/watch/endpointslices\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/watch/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53258,7 +53255,7 @@ export class Client { } /** watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchDiscoveryV1beta1NamespacedEndpointSliceList(params: Params$watchDiscoveryV1beta1NamespacedEndpointSliceList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53282,7 +53279,7 @@ export class Client { } /** watch changes to an object of kind EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchDiscoveryV1beta1NamespacedEndpointSlice(params: Params$watchDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/discovery.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/discovery.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53306,7 +53303,7 @@ export class Client { } /** get information of a group */ public async getEventsAPIGroup(params: Params$getEventsAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/\`; + const url = this.baseUrl + `/apis/events.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -53318,7 +53315,7 @@ export class Client { } /** get available resources */ public async getEventsV1beta1APIResources(params: Params$getEventsV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -53330,7 +53327,7 @@ export class Client { } /** list or watch objects of kind Event */ public async listEventsV1beta1EventForAllNamespaces(params: Params$listEventsV1beta1EventForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/events\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/events`; const headers = { Accept: params.headers.Accept }; @@ -53354,7 +53351,7 @@ export class Client { } /** list or watch objects of kind Event */ public async listEventsV1beta1NamespacedEvent(params: Params$listEventsV1beta1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -53378,7 +53375,7 @@ export class Client { } /** create an Event */ public async createEventsV1beta1NamespacedEvent(params: Params$createEventsV1beta1NamespacedEvent, option?: RequestOption): Promise<(Response$createEventsV1beta1NamespacedEvent$Status$200 | Response$createEventsV1beta1NamespacedEvent$Status$201 | Response$createEventsV1beta1NamespacedEvent$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53398,7 +53395,7 @@ export class Client { } /** delete collection of Event */ public async deleteEventsV1beta1CollectionNamespacedEvent(params: Params$deleteEventsV1beta1CollectionNamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53428,7 +53425,7 @@ export class Client { } /** read the specified Event */ public async readEventsV1beta1NamespacedEvent(params: Params$readEventsV1beta1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53446,7 +53443,7 @@ export class Client { } /** replace the specified Event */ public async replaceEventsV1beta1NamespacedEvent(params: Params$replaceEventsV1beta1NamespacedEvent, option?: RequestOption): Promise<(Response$replaceEventsV1beta1NamespacedEvent$Status$200 | Response$replaceEventsV1beta1NamespacedEvent$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53466,7 +53463,7 @@ export class Client { } /** delete an Event */ public async deleteEventsV1beta1NamespacedEvent(params: Params$deleteEventsV1beta1NamespacedEvent, option?: RequestOption): Promise<(Response$deleteEventsV1beta1NamespacedEvent$Status$200 | Response$deleteEventsV1beta1NamespacedEvent$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53488,7 +53485,7 @@ export class Client { } /** partially update the specified Event */ public async patchEventsV1beta1NamespacedEvent(params: Params$patchEventsV1beta1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53509,7 +53506,7 @@ export class Client { } /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchEventsV1beta1EventListForAllNamespaces(params: Params$watchEventsV1beta1EventListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/watch/events\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/watch/events`; const headers = { Accept: params.headers.Accept }; @@ -53533,7 +53530,7 @@ export class Client { } /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchEventsV1beta1NamespacedEventList(params: Params$watchEventsV1beta1NamespacedEventList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -53557,7 +53554,7 @@ export class Client { } /** watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchEventsV1beta1NamespacedEvent(params: Params$watchEventsV1beta1NamespacedEvent, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/events.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/events.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53581,7 +53578,7 @@ export class Client { } /** get information of a group */ public async getExtensionsAPIGroup(params: Params$getExtensionsAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/\`; + const url = this.baseUrl + `/apis/extensions/`; const headers = { Accept: params.headers.Accept }; @@ -53593,7 +53590,7 @@ export class Client { } /** get available resources */ public async getExtensionsV1beta1APIResources(params: Params$getExtensionsV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -53605,7 +53602,7 @@ export class Client { } /** list or watch objects of kind Ingress */ public async listExtensionsV1beta1IngressForAllNamespaces(params: Params$listExtensionsV1beta1IngressForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/ingresses\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53629,7 +53626,7 @@ export class Client { } /** list or watch objects of kind Ingress */ public async listExtensionsV1beta1NamespacedIngress(params: Params$listExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53653,7 +53650,7 @@ export class Client { } /** create an Ingress */ public async createExtensionsV1beta1NamespacedIngress(params: Params$createExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$createExtensionsV1beta1NamespacedIngress$Status$200 | Response$createExtensionsV1beta1NamespacedIngress$Status$201 | Response$createExtensionsV1beta1NamespacedIngress$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53673,7 +53670,7 @@ export class Client { } /** delete collection of Ingress */ public async deleteExtensionsV1beta1CollectionNamespacedIngress(params: Params$deleteExtensionsV1beta1CollectionNamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53703,7 +53700,7 @@ export class Client { } /** read the specified Ingress */ public async readExtensionsV1beta1NamespacedIngress(params: Params$readExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53721,7 +53718,7 @@ export class Client { } /** replace the specified Ingress */ public async replaceExtensionsV1beta1NamespacedIngress(params: Params$replaceExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$replaceExtensionsV1beta1NamespacedIngress$Status$200 | Response$replaceExtensionsV1beta1NamespacedIngress$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53741,7 +53738,7 @@ export class Client { } /** delete an Ingress */ public async deleteExtensionsV1beta1NamespacedIngress(params: Params$deleteExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$deleteExtensionsV1beta1NamespacedIngress$Status$200 | Response$deleteExtensionsV1beta1NamespacedIngress$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53763,7 +53760,7 @@ export class Client { } /** partially update the specified Ingress */ public async patchExtensionsV1beta1NamespacedIngress(params: Params$patchExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53784,7 +53781,7 @@ export class Client { } /** read status of the specified Ingress */ public async readExtensionsV1beta1NamespacedIngressStatus(params: Params$readExtensionsV1beta1NamespacedIngressStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -53800,7 +53797,7 @@ export class Client { } /** replace status of the specified Ingress */ public async replaceExtensionsV1beta1NamespacedIngressStatus(params: Params$replaceExtensionsV1beta1NamespacedIngressStatus, option?: RequestOption): Promise<(Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status$200 | Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53820,7 +53817,7 @@ export class Client { } /** partially update status of the specified Ingress */ public async patchExtensionsV1beta1NamespacedIngressStatus(params: Params$patchExtensionsV1beta1NamespacedIngressStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53841,7 +53838,7 @@ export class Client { } /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchExtensionsV1beta1IngressListForAllNamespaces(params: Params$watchExtensionsV1beta1IngressListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/watch/ingresses\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/watch/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53865,7 +53862,7 @@ export class Client { } /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchExtensionsV1beta1NamespacedIngressList(params: Params$watchExtensionsV1beta1NamespacedIngressList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53889,7 +53886,7 @@ export class Client { } /** watch changes to an object of kind Ingress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchExtensionsV1beta1NamespacedIngress(params: Params$watchExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/extensions/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/extensions/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53913,7 +53910,7 @@ export class Client { } /** get information of a group */ public async getFlowcontrolApiserverAPIGroup(params: Params$getFlowcontrolApiserverAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -53925,7 +53922,7 @@ export class Client { } /** get available resources */ public async getFlowcontrolApiserverV1alpha1APIResources(params: Params$getFlowcontrolApiserverV1alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -53937,7 +53934,7 @@ export class Client { } /** list or watch objects of kind FlowSchema */ public async listFlowcontrolApiserverV1alpha1FlowSchema(params: Params$listFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas`; const headers = { Accept: params.headers.Accept }; @@ -53961,7 +53958,7 @@ export class Client { } /** create a FlowSchema */ public async createFlowcontrolApiserverV1alpha1FlowSchema(params: Params$createFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1alpha1FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1alpha1FlowSchema$Status$201 | Response$createFlowcontrolApiserverV1alpha1FlowSchema$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53981,7 +53978,7 @@ export class Client { } /** delete collection of FlowSchema */ public async deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(params: Params$deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54011,7 +54008,7 @@ export class Client { } /** read the specified FlowSchema */ public async readFlowcontrolApiserverV1alpha1FlowSchema(params: Params$readFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54029,7 +54026,7 @@ export class Client { } /** replace the specified FlowSchema */ public async replaceFlowcontrolApiserverV1alpha1FlowSchema(params: Params$replaceFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54049,7 +54046,7 @@ export class Client { } /** delete a FlowSchema */ public async deleteFlowcontrolApiserverV1alpha1FlowSchema(params: Params$deleteFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$200 | Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54071,7 +54068,7 @@ export class Client { } /** partially update the specified FlowSchema */ public async patchFlowcontrolApiserverV1alpha1FlowSchema(params: Params$patchFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54092,7 +54089,7 @@ export class Client { } /** read status of the specified FlowSchema */ public async readFlowcontrolApiserverV1alpha1FlowSchemaStatus(params: Params$readFlowcontrolApiserverV1alpha1FlowSchemaStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -54108,7 +54105,7 @@ export class Client { } /** replace status of the specified FlowSchema */ public async replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(params: Params$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54128,7 +54125,7 @@ export class Client { } /** partially update status of the specified FlowSchema */ public async patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(params: Params$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54149,7 +54146,7 @@ export class Client { } /** list or watch objects of kind PriorityLevelConfiguration */ public async listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(params: Params$listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -54173,7 +54170,7 @@ export class Client { } /** create a PriorityLevelConfiguration */ public async createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(params: Params$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$201 | Response$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54193,7 +54190,7 @@ export class Client { } /** delete collection of PriorityLevelConfiguration */ public async deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(params: Params$deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54223,7 +54220,7 @@ export class Client { } /** read the specified PriorityLevelConfiguration */ public async readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(params: Params$readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54241,7 +54238,7 @@ export class Client { } /** replace the specified PriorityLevelConfiguration */ public async replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(params: Params$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54261,7 +54258,7 @@ export class Client { } /** delete a PriorityLevelConfiguration */ public async deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(params: Params$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 | Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54283,7 +54280,7 @@ export class Client { } /** partially update the specified PriorityLevelConfiguration */ public async patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(params: Params$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54304,7 +54301,7 @@ export class Client { } /** read status of the specified PriorityLevelConfiguration */ public async readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(params: Params$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -54320,7 +54317,7 @@ export class Client { } /** replace status of the specified PriorityLevelConfiguration */ public async replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(params: Params$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54340,7 +54337,7 @@ export class Client { } /** partially update status of the specified PriorityLevelConfiguration */ public async patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(params: Params$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54361,7 +54358,7 @@ export class Client { } /** watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchFlowcontrolApiserverV1alpha1FlowSchemaList(params: Params$watchFlowcontrolApiserverV1alpha1FlowSchemaList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas`; const headers = { Accept: params.headers.Accept }; @@ -54385,7 +54382,7 @@ export class Client { } /** watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchFlowcontrolApiserverV1alpha1FlowSchema(params: Params$watchFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54409,7 +54406,7 @@ export class Client { } /** watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(params: Params$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -54433,7 +54430,7 @@ export class Client { } /** watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(params: Params$watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54457,7 +54454,7 @@ export class Client { } /** get information of a group */ public async getNetworkingAPIGroup(params: Params$getNetworkingAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/\`; + const url = this.baseUrl + `/apis/networking.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -54469,7 +54466,7 @@ export class Client { } /** get available resources */ public async getNetworkingV1APIResources(params: Params$getNetworkingV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -54481,7 +54478,7 @@ export class Client { } /** list or watch objects of kind NetworkPolicy */ public async listNetworkingV1NamespacedNetworkPolicy(params: Params$listNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54505,7 +54502,7 @@ export class Client { } /** create a NetworkPolicy */ public async createNetworkingV1NamespacedNetworkPolicy(params: Params$createNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$201 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54525,7 +54522,7 @@ export class Client { } /** delete collection of NetworkPolicy */ public async deleteNetworkingV1CollectionNamespacedNetworkPolicy(params: Params$deleteNetworkingV1CollectionNamespacedNetworkPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54555,7 +54552,7 @@ export class Client { } /** read the specified NetworkPolicy */ public async readNetworkingV1NamespacedNetworkPolicy(params: Params$readNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54573,7 +54570,7 @@ export class Client { } /** replace the specified NetworkPolicy */ public async replaceNetworkingV1NamespacedNetworkPolicy(params: Params$replaceNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54593,7 +54590,7 @@ export class Client { } /** delete a NetworkPolicy */ public async deleteNetworkingV1NamespacedNetworkPolicy(params: Params$deleteNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54615,7 +54612,7 @@ export class Client { } /** partially update the specified NetworkPolicy */ public async patchNetworkingV1NamespacedNetworkPolicy(params: Params$patchNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54636,7 +54633,7 @@ export class Client { } /** list or watch objects of kind NetworkPolicy */ public async listNetworkingV1NetworkPolicyForAllNamespaces(params: Params$listNetworkingV1NetworkPolicyForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/networkpolicies\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54660,7 +54657,7 @@ export class Client { } /** watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchNetworkingV1NamespacedNetworkPolicyList(params: Params$watchNetworkingV1NamespacedNetworkPolicyList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54684,7 +54681,7 @@ export class Client { } /** watch changes to an object of kind NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchNetworkingV1NamespacedNetworkPolicy(params: Params$watchNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54708,7 +54705,7 @@ export class Client { } /** watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchNetworkingV1NetworkPolicyListForAllNamespaces(params: Params$watchNetworkingV1NetworkPolicyListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1/watch/networkpolicies\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54732,7 +54729,7 @@ export class Client { } /** get available resources */ public async getNetworkingV1beta1APIResources(params: Params$getNetworkingV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -54744,7 +54741,7 @@ export class Client { } /** list or watch objects of kind IngressClass */ public async listNetworkingV1beta1IngressClass(params: Params$listNetworkingV1beta1IngressClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses`; const headers = { Accept: params.headers.Accept }; @@ -54768,7 +54765,7 @@ export class Client { } /** create an IngressClass */ public async createNetworkingV1beta1IngressClass(params: Params$createNetworkingV1beta1IngressClass, option?: RequestOption): Promise<(Response$createNetworkingV1beta1IngressClass$Status$200 | Response$createNetworkingV1beta1IngressClass$Status$201 | Response$createNetworkingV1beta1IngressClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54788,7 +54785,7 @@ export class Client { } /** delete collection of IngressClass */ public async deleteNetworkingV1beta1CollectionIngressClass(params: Params$deleteNetworkingV1beta1CollectionIngressClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54818,7 +54815,7 @@ export class Client { } /** read the specified IngressClass */ public async readNetworkingV1beta1IngressClass(params: Params$readNetworkingV1beta1IngressClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54836,7 +54833,7 @@ export class Client { } /** replace the specified IngressClass */ public async replaceNetworkingV1beta1IngressClass(params: Params$replaceNetworkingV1beta1IngressClass, option?: RequestOption): Promise<(Response$replaceNetworkingV1beta1IngressClass$Status$200 | Response$replaceNetworkingV1beta1IngressClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54856,7 +54853,7 @@ export class Client { } /** delete an IngressClass */ public async deleteNetworkingV1beta1IngressClass(params: Params$deleteNetworkingV1beta1IngressClass, option?: RequestOption): Promise<(Response$deleteNetworkingV1beta1IngressClass$Status$200 | Response$deleteNetworkingV1beta1IngressClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54878,7 +54875,7 @@ export class Client { } /** partially update the specified IngressClass */ public async patchNetworkingV1beta1IngressClass(params: Params$patchNetworkingV1beta1IngressClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54899,7 +54896,7 @@ export class Client { } /** list or watch objects of kind Ingress */ public async listNetworkingV1beta1IngressForAllNamespaces(params: Params$listNetworkingV1beta1IngressForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/ingresses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -54923,7 +54920,7 @@ export class Client { } /** list or watch objects of kind Ingress */ public async listNetworkingV1beta1NamespacedIngress(params: Params$listNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -54947,7 +54944,7 @@ export class Client { } /** create an Ingress */ public async createNetworkingV1beta1NamespacedIngress(params: Params$createNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$createNetworkingV1beta1NamespacedIngress$Status$200 | Response$createNetworkingV1beta1NamespacedIngress$Status$201 | Response$createNetworkingV1beta1NamespacedIngress$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54967,7 +54964,7 @@ export class Client { } /** delete collection of Ingress */ public async deleteNetworkingV1beta1CollectionNamespacedIngress(params: Params$deleteNetworkingV1beta1CollectionNamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54997,7 +54994,7 @@ export class Client { } /** read the specified Ingress */ public async readNetworkingV1beta1NamespacedIngress(params: Params$readNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55015,7 +55012,7 @@ export class Client { } /** replace the specified Ingress */ public async replaceNetworkingV1beta1NamespacedIngress(params: Params$replaceNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$replaceNetworkingV1beta1NamespacedIngress$Status$200 | Response$replaceNetworkingV1beta1NamespacedIngress$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55035,7 +55032,7 @@ export class Client { } /** delete an Ingress */ public async deleteNetworkingV1beta1NamespacedIngress(params: Params$deleteNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$deleteNetworkingV1beta1NamespacedIngress$Status$200 | Response$deleteNetworkingV1beta1NamespacedIngress$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55057,7 +55054,7 @@ export class Client { } /** partially update the specified Ingress */ public async patchNetworkingV1beta1NamespacedIngress(params: Params$patchNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55078,7 +55075,7 @@ export class Client { } /** read status of the specified Ingress */ public async readNetworkingV1beta1NamespacedIngressStatus(params: Params$readNetworkingV1beta1NamespacedIngressStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -55094,7 +55091,7 @@ export class Client { } /** replace status of the specified Ingress */ public async replaceNetworkingV1beta1NamespacedIngressStatus(params: Params$replaceNetworkingV1beta1NamespacedIngressStatus, option?: RequestOption): Promise<(Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status$200 | Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55114,7 +55111,7 @@ export class Client { } /** partially update status of the specified Ingress */ public async patchNetworkingV1beta1NamespacedIngressStatus(params: Params$patchNetworkingV1beta1NamespacedIngressStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55135,7 +55132,7 @@ export class Client { } /** watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchNetworkingV1beta1IngressClassList(params: Params$watchNetworkingV1beta1IngressClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/ingressclasses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/watch/ingressclasses`; const headers = { Accept: params.headers.Accept }; @@ -55159,7 +55156,7 @@ export class Client { } /** watch changes to an object of kind IngressClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchNetworkingV1beta1IngressClass(params: Params$watchNetworkingV1beta1IngressClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/watch/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55183,7 +55180,7 @@ export class Client { } /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchNetworkingV1beta1IngressListForAllNamespaces(params: Params$watchNetworkingV1beta1IngressListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/ingresses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/watch/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -55207,7 +55204,7 @@ export class Client { } /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchNetworkingV1beta1NamespacedIngressList(params: Params$watchNetworkingV1beta1NamespacedIngressList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -55231,7 +55228,7 @@ export class Client { } /** watch changes to an object of kind Ingress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchNetworkingV1beta1NamespacedIngress(params: Params$watchNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/networking.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55255,7 +55252,7 @@ export class Client { } /** get information of a group */ public async getNodeAPIGroup(params: Params$getNodeAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/\`; + const url = this.baseUrl + `/apis/node.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -55267,7 +55264,7 @@ export class Client { } /** get available resources */ public async getNodeV1alpha1APIResources(params: Params$getNodeV1alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -55279,7 +55276,7 @@ export class Client { } /** list or watch objects of kind RuntimeClass */ public async listNodeV1alpha1RuntimeClass(params: Params$listNodeV1alpha1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55303,7 +55300,7 @@ export class Client { } /** create a RuntimeClass */ public async createNodeV1alpha1RuntimeClass(params: Params$createNodeV1alpha1RuntimeClass, option?: RequestOption): Promise<(Response$createNodeV1alpha1RuntimeClass$Status$200 | Response$createNodeV1alpha1RuntimeClass$Status$201 | Response$createNodeV1alpha1RuntimeClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55323,7 +55320,7 @@ export class Client { } /** delete collection of RuntimeClass */ public async deleteNodeV1alpha1CollectionRuntimeClass(params: Params$deleteNodeV1alpha1CollectionRuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55353,7 +55350,7 @@ export class Client { } /** read the specified RuntimeClass */ public async readNodeV1alpha1RuntimeClass(params: Params$readNodeV1alpha1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55371,7 +55368,7 @@ export class Client { } /** replace the specified RuntimeClass */ public async replaceNodeV1alpha1RuntimeClass(params: Params$replaceNodeV1alpha1RuntimeClass, option?: RequestOption): Promise<(Response$replaceNodeV1alpha1RuntimeClass$Status$200 | Response$replaceNodeV1alpha1RuntimeClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55391,7 +55388,7 @@ export class Client { } /** delete a RuntimeClass */ public async deleteNodeV1alpha1RuntimeClass(params: Params$deleteNodeV1alpha1RuntimeClass, option?: RequestOption): Promise<(Response$deleteNodeV1alpha1RuntimeClass$Status$200 | Response$deleteNodeV1alpha1RuntimeClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55413,7 +55410,7 @@ export class Client { } /** partially update the specified RuntimeClass */ public async patchNodeV1alpha1RuntimeClass(params: Params$patchNodeV1alpha1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55434,7 +55431,7 @@ export class Client { } /** watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchNodeV1alpha1RuntimeClassList(params: Params$watchNodeV1alpha1RuntimeClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/watch/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/watch/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55458,7 +55455,7 @@ export class Client { } /** watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchNodeV1alpha1RuntimeClass(params: Params$watchNodeV1alpha1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55482,7 +55479,7 @@ export class Client { } /** get available resources */ public async getNodeV1beta1APIResources(params: Params$getNodeV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -55494,7 +55491,7 @@ export class Client { } /** list or watch objects of kind RuntimeClass */ public async listNodeV1beta1RuntimeClass(params: Params$listNodeV1beta1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55518,7 +55515,7 @@ export class Client { } /** create a RuntimeClass */ public async createNodeV1beta1RuntimeClass(params: Params$createNodeV1beta1RuntimeClass, option?: RequestOption): Promise<(Response$createNodeV1beta1RuntimeClass$Status$200 | Response$createNodeV1beta1RuntimeClass$Status$201 | Response$createNodeV1beta1RuntimeClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55538,7 +55535,7 @@ export class Client { } /** delete collection of RuntimeClass */ public async deleteNodeV1beta1CollectionRuntimeClass(params: Params$deleteNodeV1beta1CollectionRuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55568,7 +55565,7 @@ export class Client { } /** read the specified RuntimeClass */ public async readNodeV1beta1RuntimeClass(params: Params$readNodeV1beta1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55586,7 +55583,7 @@ export class Client { } /** replace the specified RuntimeClass */ public async replaceNodeV1beta1RuntimeClass(params: Params$replaceNodeV1beta1RuntimeClass, option?: RequestOption): Promise<(Response$replaceNodeV1beta1RuntimeClass$Status$200 | Response$replaceNodeV1beta1RuntimeClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55606,7 +55603,7 @@ export class Client { } /** delete a RuntimeClass */ public async deleteNodeV1beta1RuntimeClass(params: Params$deleteNodeV1beta1RuntimeClass, option?: RequestOption): Promise<(Response$deleteNodeV1beta1RuntimeClass$Status$200 | Response$deleteNodeV1beta1RuntimeClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55628,7 +55625,7 @@ export class Client { } /** partially update the specified RuntimeClass */ public async patchNodeV1beta1RuntimeClass(params: Params$patchNodeV1beta1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55649,7 +55646,7 @@ export class Client { } /** watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchNodeV1beta1RuntimeClassList(params: Params$watchNodeV1beta1RuntimeClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/watch/runtimeclasses\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/watch/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55673,7 +55670,7 @@ export class Client { } /** watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchNodeV1beta1RuntimeClass(params: Params$watchNodeV1beta1RuntimeClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/node.k8s.io/v1beta1/watch/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/node.k8s.io/v1beta1/watch/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55697,7 +55694,7 @@ export class Client { } /** get information of a group */ public async getPolicyAPIGroup(params: Params$getPolicyAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/\`; + const url = this.baseUrl + `/apis/policy/`; const headers = { Accept: params.headers.Accept }; @@ -55709,7 +55706,7 @@ export class Client { } /** get available resources */ public async getPolicyV1beta1APIResources(params: Params$getPolicyV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/\`; + const url = this.baseUrl + `/apis/policy/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -55721,7 +55718,7 @@ export class Client { } /** list or watch objects of kind PodDisruptionBudget */ public async listPolicyV1beta1NamespacedPodDisruptionBudget(params: Params$listPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -55745,7 +55742,7 @@ export class Client { } /** create a PodDisruptionBudget */ public async createPolicyV1beta1NamespacedPodDisruptionBudget(params: Params$createPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 | Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$201 | Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55765,7 +55762,7 @@ export class Client { } /** delete collection of PodDisruptionBudget */ public async deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(params: Params$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55795,7 +55792,7 @@ export class Client { } /** read the specified PodDisruptionBudget */ public async readPolicyV1beta1NamespacedPodDisruptionBudget(params: Params$readPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55813,7 +55810,7 @@ export class Client { } /** replace the specified PodDisruptionBudget */ public async replacePolicyV1beta1NamespacedPodDisruptionBudget(params: Params$replacePolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 | Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55833,7 +55830,7 @@ export class Client { } /** delete a PodDisruptionBudget */ public async deletePolicyV1beta1NamespacedPodDisruptionBudget(params: Params$deletePolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 | Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55855,7 +55852,7 @@ export class Client { } /** partially update the specified PodDisruptionBudget */ public async patchPolicyV1beta1NamespacedPodDisruptionBudget(params: Params$patchPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55876,7 +55873,7 @@ export class Client { } /** read status of the specified PodDisruptionBudget */ public async readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(params: Params$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -55892,7 +55889,7 @@ export class Client { } /** replace status of the specified PodDisruptionBudget */ public async replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(params: Params$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise<(Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 | Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55912,7 +55909,7 @@ export class Client { } /** partially update status of the specified PodDisruptionBudget */ public async patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(params: Params$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55933,7 +55930,7 @@ export class Client { } /** list or watch objects of kind PodDisruptionBudget */ public async listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(params: Params$listPolicyV1beta1PodDisruptionBudgetForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/poddisruptionbudgets\`; + const url = this.baseUrl + `/apis/policy/v1beta1/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -55957,7 +55954,7 @@ export class Client { } /** list or watch objects of kind PodSecurityPolicy */ public async listPolicyV1beta1PodSecurityPolicy(params: Params$listPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies\`; + const url = this.baseUrl + `/apis/policy/v1beta1/podsecuritypolicies`; const headers = { Accept: params.headers.Accept }; @@ -55981,7 +55978,7 @@ export class Client { } /** create a PodSecurityPolicy */ public async createPolicyV1beta1PodSecurityPolicy(params: Params$createPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise<(Response$createPolicyV1beta1PodSecurityPolicy$Status$200 | Response$createPolicyV1beta1PodSecurityPolicy$Status$201 | Response$createPolicyV1beta1PodSecurityPolicy$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies\`; + const url = this.baseUrl + `/apis/policy/v1beta1/podsecuritypolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56001,7 +55998,7 @@ export class Client { } /** delete collection of PodSecurityPolicy */ public async deletePolicyV1beta1CollectionPodSecurityPolicy(params: Params$deletePolicyV1beta1CollectionPodSecurityPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies\`; + const url = this.baseUrl + `/apis/policy/v1beta1/podsecuritypolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56031,7 +56028,7 @@ export class Client { } /** read the specified PodSecurityPolicy */ public async readPolicyV1beta1PodSecurityPolicy(params: Params$readPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56049,7 +56046,7 @@ export class Client { } /** replace the specified PodSecurityPolicy */ public async replacePolicyV1beta1PodSecurityPolicy(params: Params$replacePolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise<(Response$replacePolicyV1beta1PodSecurityPolicy$Status$200 | Response$replacePolicyV1beta1PodSecurityPolicy$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56069,7 +56066,7 @@ export class Client { } /** delete a PodSecurityPolicy */ public async deletePolicyV1beta1PodSecurityPolicy(params: Params$deletePolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise<(Response$deletePolicyV1beta1PodSecurityPolicy$Status$200 | Response$deletePolicyV1beta1PodSecurityPolicy$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56091,7 +56088,7 @@ export class Client { } /** partially update the specified PodSecurityPolicy */ public async patchPolicyV1beta1PodSecurityPolicy(params: Params$patchPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56112,7 +56109,7 @@ export class Client { } /** watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchPolicyV1beta1NamespacedPodDisruptionBudgetList(params: Params$watchPolicyV1beta1NamespacedPodDisruptionBudgetList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = this.baseUrl + `/apis/policy/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -56136,7 +56133,7 @@ export class Client { } /** watch changes to an object of kind PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchPolicyV1beta1NamespacedPodDisruptionBudget(params: Params$watchPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56160,7 +56157,7 @@ export class Client { } /** watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(params: Params$watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/watch/poddisruptionbudgets\`; + const url = this.baseUrl + `/apis/policy/v1beta1/watch/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -56184,7 +56181,7 @@ export class Client { } /** watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchPolicyV1beta1PodSecurityPolicyList(params: Params$watchPolicyV1beta1PodSecurityPolicyList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/watch/podsecuritypolicies\`; + const url = this.baseUrl + `/apis/policy/v1beta1/watch/podsecuritypolicies`; const headers = { Accept: params.headers.Accept }; @@ -56208,7 +56205,7 @@ export class Client { } /** watch changes to an object of kind PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchPolicyV1beta1PodSecurityPolicy(params: Params$watchPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/policy/v1beta1/watch/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/policy/v1beta1/watch/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56232,7 +56229,7 @@ export class Client { } /** get information of a group */ public async getRbacAuthorizationAPIGroup(params: Params$getRbacAuthorizationAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -56244,7 +56241,7 @@ export class Client { } /** get available resources */ public async getRbacAuthorizationV1APIResources(params: Params$getRbacAuthorizationV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -56256,7 +56253,7 @@ export class Client { } /** list or watch objects of kind ClusterRoleBinding */ public async listRbacAuthorizationV1ClusterRoleBinding(params: Params$listRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56280,7 +56277,7 @@ export class Client { } /** create a ClusterRoleBinding */ public async createRbacAuthorizationV1ClusterRoleBinding(params: Params$createRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56300,7 +56297,7 @@ export class Client { } /** delete collection of ClusterRoleBinding */ public async deleteRbacAuthorizationV1CollectionClusterRoleBinding(params: Params$deleteRbacAuthorizationV1CollectionClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56330,7 +56327,7 @@ export class Client { } /** read the specified ClusterRoleBinding */ public async readRbacAuthorizationV1ClusterRoleBinding(params: Params$readRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56346,7 +56343,7 @@ export class Client { } /** replace the specified ClusterRoleBinding */ public async replaceRbacAuthorizationV1ClusterRoleBinding(params: Params$replaceRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56366,7 +56363,7 @@ export class Client { } /** delete a ClusterRoleBinding */ public async deleteRbacAuthorizationV1ClusterRoleBinding(params: Params$deleteRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56388,7 +56385,7 @@ export class Client { } /** partially update the specified ClusterRoleBinding */ public async patchRbacAuthorizationV1ClusterRoleBinding(params: Params$patchRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56409,7 +56406,7 @@ export class Client { } /** list or watch objects of kind ClusterRole */ public async listRbacAuthorizationV1ClusterRole(params: Params$listRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -56433,7 +56430,7 @@ export class Client { } /** create a ClusterRole */ public async createRbacAuthorizationV1ClusterRole(params: Params$createRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1ClusterRole$Status$200 | Response$createRbacAuthorizationV1ClusterRole$Status$201 | Response$createRbacAuthorizationV1ClusterRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56453,7 +56450,7 @@ export class Client { } /** delete collection of ClusterRole */ public async deleteRbacAuthorizationV1CollectionClusterRole(params: Params$deleteRbacAuthorizationV1CollectionClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56483,7 +56480,7 @@ export class Client { } /** read the specified ClusterRole */ public async readRbacAuthorizationV1ClusterRole(params: Params$readRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56499,7 +56496,7 @@ export class Client { } /** replace the specified ClusterRole */ public async replaceRbacAuthorizationV1ClusterRole(params: Params$replaceRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1ClusterRole$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56519,7 +56516,7 @@ export class Client { } /** delete a ClusterRole */ public async deleteRbacAuthorizationV1ClusterRole(params: Params$deleteRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1ClusterRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56541,7 +56538,7 @@ export class Client { } /** partially update the specified ClusterRole */ public async patchRbacAuthorizationV1ClusterRole(params: Params$patchRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56562,7 +56559,7 @@ export class Client { } /** list or watch objects of kind RoleBinding */ public async listRbacAuthorizationV1NamespacedRoleBinding(params: Params$listRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56586,7 +56583,7 @@ export class Client { } /** create a RoleBinding */ public async createRbacAuthorizationV1NamespacedRoleBinding(params: Params$createRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56606,7 +56603,7 @@ export class Client { } /** delete collection of RoleBinding */ public async deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56636,7 +56633,7 @@ export class Client { } /** read the specified RoleBinding */ public async readRbacAuthorizationV1NamespacedRoleBinding(params: Params$readRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56652,7 +56649,7 @@ export class Client { } /** replace the specified RoleBinding */ public async replaceRbacAuthorizationV1NamespacedRoleBinding(params: Params$replaceRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56672,7 +56669,7 @@ export class Client { } /** delete a RoleBinding */ public async deleteRbacAuthorizationV1NamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56694,7 +56691,7 @@ export class Client { } /** partially update the specified RoleBinding */ public async patchRbacAuthorizationV1NamespacedRoleBinding(params: Params$patchRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56715,7 +56712,7 @@ export class Client { } /** list or watch objects of kind Role */ public async listRbacAuthorizationV1NamespacedRole(params: Params$listRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -56739,7 +56736,7 @@ export class Client { } /** create a Role */ public async createRbacAuthorizationV1NamespacedRole(params: Params$createRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1NamespacedRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56759,7 +56756,7 @@ export class Client { } /** delete collection of Role */ public async deleteRbacAuthorizationV1CollectionNamespacedRole(params: Params$deleteRbacAuthorizationV1CollectionNamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56789,7 +56786,7 @@ export class Client { } /** read the specified Role */ public async readRbacAuthorizationV1NamespacedRole(params: Params$readRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56805,7 +56802,7 @@ export class Client { } /** replace the specified Role */ public async replaceRbacAuthorizationV1NamespacedRole(params: Params$replaceRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRole$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56825,7 +56822,7 @@ export class Client { } /** delete a Role */ public async deleteRbacAuthorizationV1NamespacedRole(params: Params$deleteRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56847,7 +56844,7 @@ export class Client { } /** partially update the specified Role */ public async patchRbacAuthorizationV1NamespacedRole(params: Params$patchRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56868,7 +56865,7 @@ export class Client { } /** list or watch objects of kind RoleBinding */ public async listRbacAuthorizationV1RoleBindingForAllNamespaces(params: Params$listRbacAuthorizationV1RoleBindingForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56892,7 +56889,7 @@ export class Client { } /** list or watch objects of kind Role */ public async listRbacAuthorizationV1RoleForAllNamespaces(params: Params$listRbacAuthorizationV1RoleForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/roles`; const headers = { Accept: params.headers.Accept }; @@ -56916,7 +56913,7 @@ export class Client { } /** watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1ClusterRoleBindingList(params: Params$watchRbacAuthorizationV1ClusterRoleBindingList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56940,7 +56937,7 @@ export class Client { } /** watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1ClusterRoleBinding(params: Params$watchRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56964,7 +56961,7 @@ export class Client { } /** watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1ClusterRoleList(params: Params$watchRbacAuthorizationV1ClusterRoleList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -56988,7 +56985,7 @@ export class Client { } /** watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1ClusterRole(params: Params$watchRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57012,7 +57009,7 @@ export class Client { } /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1NamespacedRoleBindingList(params: Params$watchRbacAuthorizationV1NamespacedRoleBindingList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57036,7 +57033,7 @@ export class Client { } /** watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1NamespacedRoleBinding(params: Params$watchRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57060,7 +57057,7 @@ export class Client { } /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1NamespacedRoleList(params: Params$watchRbacAuthorizationV1NamespacedRoleList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -57084,7 +57081,7 @@ export class Client { } /** watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1NamespacedRole(params: Params$watchRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57108,7 +57105,7 @@ export class Client { } /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1RoleBindingListForAllNamespaces(params: Params$watchRbacAuthorizationV1RoleBindingListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57132,7 +57129,7 @@ export class Client { } /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1RoleListForAllNamespaces(params: Params$watchRbacAuthorizationV1RoleListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/roles`; const headers = { Accept: params.headers.Accept }; @@ -57156,7 +57153,7 @@ export class Client { } /** get available resources */ public async getRbacAuthorizationV1alpha1APIResources(params: Params$getRbacAuthorizationV1alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -57168,7 +57165,7 @@ export class Client { } /** list or watch objects of kind ClusterRoleBinding */ public async listRbacAuthorizationV1alpha1ClusterRoleBinding(params: Params$listRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57192,7 +57189,7 @@ export class Client { } /** create a ClusterRoleBinding */ public async createRbacAuthorizationV1alpha1ClusterRoleBinding(params: Params$createRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1alpha1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1alpha1ClusterRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57212,7 +57209,7 @@ export class Client { } /** delete collection of ClusterRoleBinding */ public async deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(params: Params$deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57242,7 +57239,7 @@ export class Client { } /** read the specified ClusterRoleBinding */ public async readRbacAuthorizationV1alpha1ClusterRoleBinding(params: Params$readRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57258,7 +57255,7 @@ export class Client { } /** replace the specified ClusterRoleBinding */ public async replaceRbacAuthorizationV1alpha1ClusterRoleBinding(params: Params$replaceRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57278,7 +57275,7 @@ export class Client { } /** delete a ClusterRoleBinding */ public async deleteRbacAuthorizationV1alpha1ClusterRoleBinding(params: Params$deleteRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57300,7 +57297,7 @@ export class Client { } /** partially update the specified ClusterRoleBinding */ public async patchRbacAuthorizationV1alpha1ClusterRoleBinding(params: Params$patchRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57321,7 +57318,7 @@ export class Client { } /** list or watch objects of kind ClusterRole */ public async listRbacAuthorizationV1alpha1ClusterRole(params: Params$listRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -57345,7 +57342,7 @@ export class Client { } /** create a ClusterRole */ public async createRbacAuthorizationV1alpha1ClusterRole(params: Params$createRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1ClusterRole$Status$200 | Response$createRbacAuthorizationV1alpha1ClusterRole$Status$201 | Response$createRbacAuthorizationV1alpha1ClusterRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57365,7 +57362,7 @@ export class Client { } /** delete collection of ClusterRole */ public async deleteRbacAuthorizationV1alpha1CollectionClusterRole(params: Params$deleteRbacAuthorizationV1alpha1CollectionClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57395,7 +57392,7 @@ export class Client { } /** read the specified ClusterRole */ public async readRbacAuthorizationV1alpha1ClusterRole(params: Params$readRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57411,7 +57408,7 @@ export class Client { } /** replace the specified ClusterRole */ public async replaceRbacAuthorizationV1alpha1ClusterRole(params: Params$replaceRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57431,7 +57428,7 @@ export class Client { } /** delete a ClusterRole */ public async deleteRbacAuthorizationV1alpha1ClusterRole(params: Params$deleteRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57453,7 +57450,7 @@ export class Client { } /** partially update the specified ClusterRole */ public async patchRbacAuthorizationV1alpha1ClusterRole(params: Params$patchRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57474,7 +57471,7 @@ export class Client { } /** list or watch objects of kind RoleBinding */ public async listRbacAuthorizationV1alpha1NamespacedRoleBinding(params: Params$listRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57498,7 +57495,7 @@ export class Client { } /** create a RoleBinding */ public async createRbacAuthorizationV1alpha1NamespacedRoleBinding(params: Params$createRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57518,7 +57515,7 @@ export class Client { } /** delete collection of RoleBinding */ public async deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57548,7 +57545,7 @@ export class Client { } /** read the specified RoleBinding */ public async readRbacAuthorizationV1alpha1NamespacedRoleBinding(params: Params$readRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57564,7 +57561,7 @@ export class Client { } /** replace the specified RoleBinding */ public async replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(params: Params$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57584,7 +57581,7 @@ export class Client { } /** delete a RoleBinding */ public async deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57606,7 +57603,7 @@ export class Client { } /** partially update the specified RoleBinding */ public async patchRbacAuthorizationV1alpha1NamespacedRoleBinding(params: Params$patchRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57627,7 +57624,7 @@ export class Client { } /** list or watch objects of kind Role */ public async listRbacAuthorizationV1alpha1NamespacedRole(params: Params$listRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -57651,7 +57648,7 @@ export class Client { } /** create a Role */ public async createRbacAuthorizationV1alpha1NamespacedRole(params: Params$createRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57671,7 +57668,7 @@ export class Client { } /** delete collection of Role */ public async deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(params: Params$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57701,7 +57698,7 @@ export class Client { } /** read the specified Role */ public async readRbacAuthorizationV1alpha1NamespacedRole(params: Params$readRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57717,7 +57714,7 @@ export class Client { } /** replace the specified Role */ public async replaceRbacAuthorizationV1alpha1NamespacedRole(params: Params$replaceRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57737,7 +57734,7 @@ export class Client { } /** delete a Role */ public async deleteRbacAuthorizationV1alpha1NamespacedRole(params: Params$deleteRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57759,7 +57756,7 @@ export class Client { } /** partially update the specified Role */ public async patchRbacAuthorizationV1alpha1NamespacedRole(params: Params$patchRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57780,7 +57777,7 @@ export class Client { } /** list or watch objects of kind RoleBinding */ public async listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(params: Params$listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57804,7 +57801,7 @@ export class Client { } /** list or watch objects of kind Role */ public async listRbacAuthorizationV1alpha1RoleForAllNamespaces(params: Params$listRbacAuthorizationV1alpha1RoleForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/roles`; const headers = { Accept: params.headers.Accept }; @@ -57828,7 +57825,7 @@ export class Client { } /** watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1alpha1ClusterRoleBindingList(params: Params$watchRbacAuthorizationV1alpha1ClusterRoleBindingList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57852,7 +57849,7 @@ export class Client { } /** watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1alpha1ClusterRoleBinding(params: Params$watchRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57876,7 +57873,7 @@ export class Client { } /** watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1alpha1ClusterRoleList(params: Params$watchRbacAuthorizationV1alpha1ClusterRoleList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -57900,7 +57897,7 @@ export class Client { } /** watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1alpha1ClusterRole(params: Params$watchRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57924,7 +57921,7 @@ export class Client { } /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(params: Params$watchRbacAuthorizationV1alpha1NamespacedRoleBindingList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57948,7 +57945,7 @@ export class Client { } /** watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1alpha1NamespacedRoleBinding(params: Params$watchRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57972,7 +57969,7 @@ export class Client { } /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1alpha1NamespacedRoleList(params: Params$watchRbacAuthorizationV1alpha1NamespacedRoleList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -57996,7 +57993,7 @@ export class Client { } /** watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1alpha1NamespacedRole(params: Params$watchRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58020,7 +58017,7 @@ export class Client { } /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(params: Params$watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58044,7 +58041,7 @@ export class Client { } /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(params: Params$watchRbacAuthorizationV1alpha1RoleListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles`; const headers = { Accept: params.headers.Accept }; @@ -58068,7 +58065,7 @@ export class Client { } /** get available resources */ public async getRbacAuthorizationV1beta1APIResources(params: Params$getRbacAuthorizationV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -58080,7 +58077,7 @@ export class Client { } /** list or watch objects of kind ClusterRoleBinding */ public async listRbacAuthorizationV1beta1ClusterRoleBinding(params: Params$listRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58104,7 +58101,7 @@ export class Client { } /** create a ClusterRoleBinding */ public async createRbacAuthorizationV1beta1ClusterRoleBinding(params: Params$createRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1beta1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1beta1ClusterRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58124,7 +58121,7 @@ export class Client { } /** delete collection of ClusterRoleBinding */ public async deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(params: Params$deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58154,7 +58151,7 @@ export class Client { } /** read the specified ClusterRoleBinding */ public async readRbacAuthorizationV1beta1ClusterRoleBinding(params: Params$readRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58170,7 +58167,7 @@ export class Client { } /** replace the specified ClusterRoleBinding */ public async replaceRbacAuthorizationV1beta1ClusterRoleBinding(params: Params$replaceRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58190,7 +58187,7 @@ export class Client { } /** delete a ClusterRoleBinding */ public async deleteRbacAuthorizationV1beta1ClusterRoleBinding(params: Params$deleteRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58212,7 +58209,7 @@ export class Client { } /** partially update the specified ClusterRoleBinding */ public async patchRbacAuthorizationV1beta1ClusterRoleBinding(params: Params$patchRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58233,7 +58230,7 @@ export class Client { } /** list or watch objects of kind ClusterRole */ public async listRbacAuthorizationV1beta1ClusterRole(params: Params$listRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -58257,7 +58254,7 @@ export class Client { } /** create a ClusterRole */ public async createRbacAuthorizationV1beta1ClusterRole(params: Params$createRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1ClusterRole$Status$200 | Response$createRbacAuthorizationV1beta1ClusterRole$Status$201 | Response$createRbacAuthorizationV1beta1ClusterRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58277,7 +58274,7 @@ export class Client { } /** delete collection of ClusterRole */ public async deleteRbacAuthorizationV1beta1CollectionClusterRole(params: Params$deleteRbacAuthorizationV1beta1CollectionClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58307,7 +58304,7 @@ export class Client { } /** read the specified ClusterRole */ public async readRbacAuthorizationV1beta1ClusterRole(params: Params$readRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58323,7 +58320,7 @@ export class Client { } /** replace the specified ClusterRole */ public async replaceRbacAuthorizationV1beta1ClusterRole(params: Params$replaceRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58343,7 +58340,7 @@ export class Client { } /** delete a ClusterRole */ public async deleteRbacAuthorizationV1beta1ClusterRole(params: Params$deleteRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58365,7 +58362,7 @@ export class Client { } /** partially update the specified ClusterRole */ public async patchRbacAuthorizationV1beta1ClusterRole(params: Params$patchRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58386,7 +58383,7 @@ export class Client { } /** list or watch objects of kind RoleBinding */ public async listRbacAuthorizationV1beta1NamespacedRoleBinding(params: Params$listRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58410,7 +58407,7 @@ export class Client { } /** create a RoleBinding */ public async createRbacAuthorizationV1beta1NamespacedRoleBinding(params: Params$createRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58430,7 +58427,7 @@ export class Client { } /** delete collection of RoleBinding */ public async deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58460,7 +58457,7 @@ export class Client { } /** read the specified RoleBinding */ public async readRbacAuthorizationV1beta1NamespacedRoleBinding(params: Params$readRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58476,7 +58473,7 @@ export class Client { } /** replace the specified RoleBinding */ public async replaceRbacAuthorizationV1beta1NamespacedRoleBinding(params: Params$replaceRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58496,7 +58493,7 @@ export class Client { } /** delete a RoleBinding */ public async deleteRbacAuthorizationV1beta1NamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58518,7 +58515,7 @@ export class Client { } /** partially update the specified RoleBinding */ public async patchRbacAuthorizationV1beta1NamespacedRoleBinding(params: Params$patchRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58539,7 +58536,7 @@ export class Client { } /** list or watch objects of kind Role */ public async listRbacAuthorizationV1beta1NamespacedRole(params: Params$listRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -58563,7 +58560,7 @@ export class Client { } /** create a Role */ public async createRbacAuthorizationV1beta1NamespacedRole(params: Params$createRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1beta1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1beta1NamespacedRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58583,7 +58580,7 @@ export class Client { } /** delete collection of Role */ public async deleteRbacAuthorizationV1beta1CollectionNamespacedRole(params: Params$deleteRbacAuthorizationV1beta1CollectionNamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58613,7 +58610,7 @@ export class Client { } /** read the specified Role */ public async readRbacAuthorizationV1beta1NamespacedRole(params: Params$readRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58629,7 +58626,7 @@ export class Client { } /** replace the specified Role */ public async replaceRbacAuthorizationV1beta1NamespacedRole(params: Params$replaceRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58649,7 +58646,7 @@ export class Client { } /** delete a Role */ public async deleteRbacAuthorizationV1beta1NamespacedRole(params: Params$deleteRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58671,7 +58668,7 @@ export class Client { } /** partially update the specified Role */ public async patchRbacAuthorizationV1beta1NamespacedRole(params: Params$patchRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58692,7 +58689,7 @@ export class Client { } /** list or watch objects of kind RoleBinding */ public async listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(params: Params$listRbacAuthorizationV1beta1RoleBindingForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58716,7 +58713,7 @@ export class Client { } /** list or watch objects of kind Role */ public async listRbacAuthorizationV1beta1RoleForAllNamespaces(params: Params$listRbacAuthorizationV1beta1RoleForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/roles`; const headers = { Accept: params.headers.Accept }; @@ -58740,7 +58737,7 @@ export class Client { } /** watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1beta1ClusterRoleBindingList(params: Params$watchRbacAuthorizationV1beta1ClusterRoleBindingList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58764,7 +58761,7 @@ export class Client { } /** watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1beta1ClusterRoleBinding(params: Params$watchRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58788,7 +58785,7 @@ export class Client { } /** watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1beta1ClusterRoleList(params: Params$watchRbacAuthorizationV1beta1ClusterRoleList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -58812,7 +58809,7 @@ export class Client { } /** watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1beta1ClusterRole(params: Params$watchRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58836,7 +58833,7 @@ export class Client { } /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1beta1NamespacedRoleBindingList(params: Params$watchRbacAuthorizationV1beta1NamespacedRoleBindingList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58860,7 +58857,7 @@ export class Client { } /** watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1beta1NamespacedRoleBinding(params: Params$watchRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58884,7 +58881,7 @@ export class Client { } /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1beta1NamespacedRoleList(params: Params$watchRbacAuthorizationV1beta1NamespacedRoleList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -58908,7 +58905,7 @@ export class Client { } /** watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchRbacAuthorizationV1beta1NamespacedRole(params: Params$watchRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58932,7 +58929,7 @@ export class Client { } /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(params: Params$watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58956,7 +58953,7 @@ export class Client { } /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchRbacAuthorizationV1beta1RoleListForAllNamespaces(params: Params$watchRbacAuthorizationV1beta1RoleListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/roles\`; + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/roles`; const headers = { Accept: params.headers.Accept }; @@ -58980,7 +58977,7 @@ export class Client { } /** get information of a group */ public async getSchedulingAPIGroup(params: Params$getSchedulingAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -58992,7 +58989,7 @@ export class Client { } /** get available resources */ public async getSchedulingV1APIResources(params: Params$getSchedulingV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -59004,7 +59001,7 @@ export class Client { } /** list or watch objects of kind PriorityClass */ public async listSchedulingV1PriorityClass(params: Params$listSchedulingV1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59028,7 +59025,7 @@ export class Client { } /** create a PriorityClass */ public async createSchedulingV1PriorityClass(params: Params$createSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$createSchedulingV1PriorityClass$Status$200 | Response$createSchedulingV1PriorityClass$Status$201 | Response$createSchedulingV1PriorityClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59048,7 +59045,7 @@ export class Client { } /** delete collection of PriorityClass */ public async deleteSchedulingV1CollectionPriorityClass(params: Params$deleteSchedulingV1CollectionPriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59078,7 +59075,7 @@ export class Client { } /** read the specified PriorityClass */ public async readSchedulingV1PriorityClass(params: Params$readSchedulingV1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59096,7 +59093,7 @@ export class Client { } /** replace the specified PriorityClass */ public async replaceSchedulingV1PriorityClass(params: Params$replaceSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$replaceSchedulingV1PriorityClass$Status$200 | Response$replaceSchedulingV1PriorityClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59116,7 +59113,7 @@ export class Client { } /** delete a PriorityClass */ public async deleteSchedulingV1PriorityClass(params: Params$deleteSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$deleteSchedulingV1PriorityClass$Status$200 | Response$deleteSchedulingV1PriorityClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59138,7 +59135,7 @@ export class Client { } /** partially update the specified PriorityClass */ public async patchSchedulingV1PriorityClass(params: Params$patchSchedulingV1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59159,7 +59156,7 @@ export class Client { } /** watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchSchedulingV1PriorityClassList(params: Params$watchSchedulingV1PriorityClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/watch/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/watch/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59183,7 +59180,7 @@ export class Client { } /** watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchSchedulingV1PriorityClass(params: Params$watchSchedulingV1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1/watch/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/watch/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59207,7 +59204,7 @@ export class Client { } /** get available resources */ public async getSchedulingV1alpha1APIResources(params: Params$getSchedulingV1alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -59219,7 +59216,7 @@ export class Client { } /** list or watch objects of kind PriorityClass */ public async listSchedulingV1alpha1PriorityClass(params: Params$listSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59243,7 +59240,7 @@ export class Client { } /** create a PriorityClass */ public async createSchedulingV1alpha1PriorityClass(params: Params$createSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise<(Response$createSchedulingV1alpha1PriorityClass$Status$200 | Response$createSchedulingV1alpha1PriorityClass$Status$201 | Response$createSchedulingV1alpha1PriorityClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59263,7 +59260,7 @@ export class Client { } /** delete collection of PriorityClass */ public async deleteSchedulingV1alpha1CollectionPriorityClass(params: Params$deleteSchedulingV1alpha1CollectionPriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59293,7 +59290,7 @@ export class Client { } /** read the specified PriorityClass */ public async readSchedulingV1alpha1PriorityClass(params: Params$readSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59311,7 +59308,7 @@ export class Client { } /** replace the specified PriorityClass */ public async replaceSchedulingV1alpha1PriorityClass(params: Params$replaceSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise<(Response$replaceSchedulingV1alpha1PriorityClass$Status$200 | Response$replaceSchedulingV1alpha1PriorityClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59331,7 +59328,7 @@ export class Client { } /** delete a PriorityClass */ public async deleteSchedulingV1alpha1PriorityClass(params: Params$deleteSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise<(Response$deleteSchedulingV1alpha1PriorityClass$Status$200 | Response$deleteSchedulingV1alpha1PriorityClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59353,7 +59350,7 @@ export class Client { } /** partially update the specified PriorityClass */ public async patchSchedulingV1alpha1PriorityClass(params: Params$patchSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59374,7 +59371,7 @@ export class Client { } /** watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchSchedulingV1alpha1PriorityClassList(params: Params$watchSchedulingV1alpha1PriorityClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59398,7 +59395,7 @@ export class Client { } /** watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchSchedulingV1alpha1PriorityClass(params: Params$watchSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59422,7 +59419,7 @@ export class Client { } /** get available resources */ public async getSchedulingV1beta1APIResources(params: Params$getSchedulingV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -59434,7 +59431,7 @@ export class Client { } /** list or watch objects of kind PriorityClass */ public async listSchedulingV1beta1PriorityClass(params: Params$listSchedulingV1beta1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59458,7 +59455,7 @@ export class Client { } /** create a PriorityClass */ public async createSchedulingV1beta1PriorityClass(params: Params$createSchedulingV1beta1PriorityClass, option?: RequestOption): Promise<(Response$createSchedulingV1beta1PriorityClass$Status$200 | Response$createSchedulingV1beta1PriorityClass$Status$201 | Response$createSchedulingV1beta1PriorityClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59478,7 +59475,7 @@ export class Client { } /** delete collection of PriorityClass */ public async deleteSchedulingV1beta1CollectionPriorityClass(params: Params$deleteSchedulingV1beta1CollectionPriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59508,7 +59505,7 @@ export class Client { } /** read the specified PriorityClass */ public async readSchedulingV1beta1PriorityClass(params: Params$readSchedulingV1beta1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59526,7 +59523,7 @@ export class Client { } /** replace the specified PriorityClass */ public async replaceSchedulingV1beta1PriorityClass(params: Params$replaceSchedulingV1beta1PriorityClass, option?: RequestOption): Promise<(Response$replaceSchedulingV1beta1PriorityClass$Status$200 | Response$replaceSchedulingV1beta1PriorityClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59546,7 +59543,7 @@ export class Client { } /** delete a PriorityClass */ public async deleteSchedulingV1beta1PriorityClass(params: Params$deleteSchedulingV1beta1PriorityClass, option?: RequestOption): Promise<(Response$deleteSchedulingV1beta1PriorityClass$Status$200 | Response$deleteSchedulingV1beta1PriorityClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59568,7 +59565,7 @@ export class Client { } /** partially update the specified PriorityClass */ public async patchSchedulingV1beta1PriorityClass(params: Params$patchSchedulingV1beta1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59589,7 +59586,7 @@ export class Client { } /** watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchSchedulingV1beta1PriorityClassList(params: Params$watchSchedulingV1beta1PriorityClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59613,7 +59610,7 @@ export class Client { } /** watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchSchedulingV1beta1PriorityClass(params: Params$watchSchedulingV1beta1PriorityClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59637,7 +59634,7 @@ export class Client { } /** get information of a group */ public async getSettingsAPIGroup(params: Params$getSettingsAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/\`; + const url = this.baseUrl + `/apis/settings.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -59649,7 +59646,7 @@ export class Client { } /** get available resources */ public async getSettingsV1alpha1APIResources(params: Params$getSettingsV1alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -59661,7 +59658,7 @@ export class Client { } /** list or watch objects of kind PodPreset */ public async listSettingsV1alpha1NamespacedPodPreset(params: Params$listSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59685,7 +59682,7 @@ export class Client { } /** create a PodPreset */ public async createSettingsV1alpha1NamespacedPodPreset(params: Params$createSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise<(Response$createSettingsV1alpha1NamespacedPodPreset$Status$200 | Response$createSettingsV1alpha1NamespacedPodPreset$Status$201 | Response$createSettingsV1alpha1NamespacedPodPreset$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59705,7 +59702,7 @@ export class Client { } /** delete collection of PodPreset */ public async deleteSettingsV1alpha1CollectionNamespacedPodPreset(params: Params$deleteSettingsV1alpha1CollectionNamespacedPodPreset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59735,7 +59732,7 @@ export class Client { } /** read the specified PodPreset */ public async readSettingsV1alpha1NamespacedPodPreset(params: Params$readSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59753,7 +59750,7 @@ export class Client { } /** replace the specified PodPreset */ public async replaceSettingsV1alpha1NamespacedPodPreset(params: Params$replaceSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise<(Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$200 | Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59773,7 +59770,7 @@ export class Client { } /** delete a PodPreset */ public async deleteSettingsV1alpha1NamespacedPodPreset(params: Params$deleteSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise<(Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$200 | Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59795,7 +59792,7 @@ export class Client { } /** partially update the specified PodPreset */ public async patchSettingsV1alpha1NamespacedPodPreset(params: Params$patchSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59816,7 +59813,7 @@ export class Client { } /** list or watch objects of kind PodPreset */ public async listSettingsV1alpha1PodPresetForAllNamespaces(params: Params$listSettingsV1alpha1PodPresetForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/podpresets\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59840,7 +59837,7 @@ export class Client { } /** watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchSettingsV1alpha1NamespacedPodPresetList(params: Params$watchSettingsV1alpha1NamespacedPodPresetList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59864,7 +59861,7 @@ export class Client { } /** watch changes to an object of kind PodPreset. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchSettingsV1alpha1NamespacedPodPreset(params: Params$watchSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59888,7 +59885,7 @@ export class Client { } /** watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchSettingsV1alpha1PodPresetListForAllNamespaces(params: Params$watchSettingsV1alpha1PodPresetListForAllNamespaces, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/settings.k8s.io/v1alpha1/watch/podpresets\`; + const url = this.baseUrl + `/apis/settings.k8s.io/v1alpha1/watch/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59912,7 +59909,7 @@ export class Client { } /** get information of a group */ public async getStorageAPIGroup(params: Params$getStorageAPIGroup, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/\`; + const url = this.baseUrl + `/apis/storage.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -59924,7 +59921,7 @@ export class Client { } /** get available resources */ public async getStorageV1APIResources(params: Params$getStorageV1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -59936,7 +59933,7 @@ export class Client { } /** list or watch objects of kind CSIDriver */ public async listStorageV1CSIDriver(params: Params$listStorageV1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -59960,7 +59957,7 @@ export class Client { } /** create a CSIDriver */ public async createStorageV1CSIDriver(params: Params$createStorageV1CSIDriver, option?: RequestOption): Promise<(Response$createStorageV1CSIDriver$Status$200 | Response$createStorageV1CSIDriver$Status$201 | Response$createStorageV1CSIDriver$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59980,7 +59977,7 @@ export class Client { } /** delete collection of CSIDriver */ public async deleteStorageV1CollectionCSIDriver(params: Params$deleteStorageV1CollectionCSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60010,7 +60007,7 @@ export class Client { } /** read the specified CSIDriver */ public async readStorageV1CSIDriver(params: Params$readStorageV1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60028,7 +60025,7 @@ export class Client { } /** replace the specified CSIDriver */ public async replaceStorageV1CSIDriver(params: Params$replaceStorageV1CSIDriver, option?: RequestOption): Promise<(Response$replaceStorageV1CSIDriver$Status$200 | Response$replaceStorageV1CSIDriver$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60048,7 +60045,7 @@ export class Client { } /** delete a CSIDriver */ public async deleteStorageV1CSIDriver(params: Params$deleteStorageV1CSIDriver, option?: RequestOption): Promise<(Response$deleteStorageV1CSIDriver$Status$200 | Response$deleteStorageV1CSIDriver$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60070,7 +60067,7 @@ export class Client { } /** partially update the specified CSIDriver */ public async patchStorageV1CSIDriver(params: Params$patchStorageV1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60091,7 +60088,7 @@ export class Client { } /** list or watch objects of kind CSINode */ public async listStorageV1CSINode(params: Params$listStorageV1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -60115,7 +60112,7 @@ export class Client { } /** create a CSINode */ public async createStorageV1CSINode(params: Params$createStorageV1CSINode, option?: RequestOption): Promise<(Response$createStorageV1CSINode$Status$200 | Response$createStorageV1CSINode$Status$201 | Response$createStorageV1CSINode$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60135,7 +60132,7 @@ export class Client { } /** delete collection of CSINode */ public async deleteStorageV1CollectionCSINode(params: Params$deleteStorageV1CollectionCSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60165,7 +60162,7 @@ export class Client { } /** read the specified CSINode */ public async readStorageV1CSINode(params: Params$readStorageV1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60183,7 +60180,7 @@ export class Client { } /** replace the specified CSINode */ public async replaceStorageV1CSINode(params: Params$replaceStorageV1CSINode, option?: RequestOption): Promise<(Response$replaceStorageV1CSINode$Status$200 | Response$replaceStorageV1CSINode$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60203,7 +60200,7 @@ export class Client { } /** delete a CSINode */ public async deleteStorageV1CSINode(params: Params$deleteStorageV1CSINode, option?: RequestOption): Promise<(Response$deleteStorageV1CSINode$Status$200 | Response$deleteStorageV1CSINode$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60225,7 +60222,7 @@ export class Client { } /** partially update the specified CSINode */ public async patchStorageV1CSINode(params: Params$patchStorageV1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60246,7 +60243,7 @@ export class Client { } /** list or watch objects of kind StorageClass */ public async listStorageV1StorageClass(params: Params$listStorageV1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -60270,7 +60267,7 @@ export class Client { } /** create a StorageClass */ public async createStorageV1StorageClass(params: Params$createStorageV1StorageClass, option?: RequestOption): Promise<(Response$createStorageV1StorageClass$Status$200 | Response$createStorageV1StorageClass$Status$201 | Response$createStorageV1StorageClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60290,7 +60287,7 @@ export class Client { } /** delete collection of StorageClass */ public async deleteStorageV1CollectionStorageClass(params: Params$deleteStorageV1CollectionStorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60320,7 +60317,7 @@ export class Client { } /** read the specified StorageClass */ public async readStorageV1StorageClass(params: Params$readStorageV1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60338,7 +60335,7 @@ export class Client { } /** replace the specified StorageClass */ public async replaceStorageV1StorageClass(params: Params$replaceStorageV1StorageClass, option?: RequestOption): Promise<(Response$replaceStorageV1StorageClass$Status$200 | Response$replaceStorageV1StorageClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60358,7 +60355,7 @@ export class Client { } /** delete a StorageClass */ public async deleteStorageV1StorageClass(params: Params$deleteStorageV1StorageClass, option?: RequestOption): Promise<(Response$deleteStorageV1StorageClass$Status$200 | Response$deleteStorageV1StorageClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60380,7 +60377,7 @@ export class Client { } /** partially update the specified StorageClass */ public async patchStorageV1StorageClass(params: Params$patchStorageV1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60401,7 +60398,7 @@ export class Client { } /** list or watch objects of kind VolumeAttachment */ public async listStorageV1VolumeAttachment(params: Params$listStorageV1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60425,7 +60422,7 @@ export class Client { } /** create a VolumeAttachment */ public async createStorageV1VolumeAttachment(params: Params$createStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$createStorageV1VolumeAttachment$Status$200 | Response$createStorageV1VolumeAttachment$Status$201 | Response$createStorageV1VolumeAttachment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60445,7 +60442,7 @@ export class Client { } /** delete collection of VolumeAttachment */ public async deleteStorageV1CollectionVolumeAttachment(params: Params$deleteStorageV1CollectionVolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60475,7 +60472,7 @@ export class Client { } /** read the specified VolumeAttachment */ public async readStorageV1VolumeAttachment(params: Params$readStorageV1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60493,7 +60490,7 @@ export class Client { } /** replace the specified VolumeAttachment */ public async replaceStorageV1VolumeAttachment(params: Params$replaceStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$replaceStorageV1VolumeAttachment$Status$200 | Response$replaceStorageV1VolumeAttachment$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60513,7 +60510,7 @@ export class Client { } /** delete a VolumeAttachment */ public async deleteStorageV1VolumeAttachment(params: Params$deleteStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$deleteStorageV1VolumeAttachment$Status$200 | Response$deleteStorageV1VolumeAttachment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60535,7 +60532,7 @@ export class Client { } /** partially update the specified VolumeAttachment */ public async patchStorageV1VolumeAttachment(params: Params$patchStorageV1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60556,7 +60553,7 @@ export class Client { } /** read status of the specified VolumeAttachment */ public async readStorageV1VolumeAttachmentStatus(params: Params$readStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -60572,7 +60569,7 @@ export class Client { } /** replace status of the specified VolumeAttachment */ public async replaceStorageV1VolumeAttachmentStatus(params: Params$replaceStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise<(Response$replaceStorageV1VolumeAttachmentStatus$Status$200 | Response$replaceStorageV1VolumeAttachmentStatus$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60592,7 +60589,7 @@ export class Client { } /** partially update status of the specified VolumeAttachment */ public async patchStorageV1VolumeAttachmentStatus(params: Params$patchStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60613,7 +60610,7 @@ export class Client { } /** watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1CSIDriverList(params: Params$watchStorageV1CSIDriverList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -60637,7 +60634,7 @@ export class Client { } /** watch changes to an object of kind CSIDriver. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1CSIDriver(params: Params$watchStorageV1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60661,7 +60658,7 @@ export class Client { } /** watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1CSINodeList(params: Params$watchStorageV1CSINodeList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -60685,7 +60682,7 @@ export class Client { } /** watch changes to an object of kind CSINode. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1CSINode(params: Params$watchStorageV1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60709,7 +60706,7 @@ export class Client { } /** watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1StorageClassList(params: Params$watchStorageV1StorageClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -60733,7 +60730,7 @@ export class Client { } /** watch changes to an object of kind StorageClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1StorageClass(params: Params$watchStorageV1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60757,7 +60754,7 @@ export class Client { } /** watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1VolumeAttachmentList(params: Params$watchStorageV1VolumeAttachmentList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60781,7 +60778,7 @@ export class Client { } /** watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1VolumeAttachment(params: Params$watchStorageV1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1/watch/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60805,7 +60802,7 @@ export class Client { } /** get available resources */ public async getStorageV1alpha1APIResources(params: Params$getStorageV1alpha1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -60817,7 +60814,7 @@ export class Client { } /** list or watch objects of kind VolumeAttachment */ public async listStorageV1alpha1VolumeAttachment(params: Params$listStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60841,7 +60838,7 @@ export class Client { } /** create a VolumeAttachment */ public async createStorageV1alpha1VolumeAttachment(params: Params$createStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise<(Response$createStorageV1alpha1VolumeAttachment$Status$200 | Response$createStorageV1alpha1VolumeAttachment$Status$201 | Response$createStorageV1alpha1VolumeAttachment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60861,7 +60858,7 @@ export class Client { } /** delete collection of VolumeAttachment */ public async deleteStorageV1alpha1CollectionVolumeAttachment(params: Params$deleteStorageV1alpha1CollectionVolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60891,7 +60888,7 @@ export class Client { } /** read the specified VolumeAttachment */ public async readStorageV1alpha1VolumeAttachment(params: Params$readStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60909,7 +60906,7 @@ export class Client { } /** replace the specified VolumeAttachment */ public async replaceStorageV1alpha1VolumeAttachment(params: Params$replaceStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise<(Response$replaceStorageV1alpha1VolumeAttachment$Status$200 | Response$replaceStorageV1alpha1VolumeAttachment$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60929,7 +60926,7 @@ export class Client { } /** delete a VolumeAttachment */ public async deleteStorageV1alpha1VolumeAttachment(params: Params$deleteStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise<(Response$deleteStorageV1alpha1VolumeAttachment$Status$200 | Response$deleteStorageV1alpha1VolumeAttachment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60951,7 +60948,7 @@ export class Client { } /** partially update the specified VolumeAttachment */ public async patchStorageV1alpha1VolumeAttachment(params: Params$patchStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60972,7 +60969,7 @@ export class Client { } /** watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1alpha1VolumeAttachmentList(params: Params$watchStorageV1alpha1VolumeAttachmentList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/watch/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/watch/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60996,7 +60993,7 @@ export class Client { } /** watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1alpha1VolumeAttachment(params: Params$watchStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61020,7 +61017,7 @@ export class Client { } /** get available resources */ public async getStorageV1beta1APIResources(params: Params$getStorageV1beta1APIResources, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -61032,7 +61029,7 @@ export class Client { } /** list or watch objects of kind CSIDriver */ public async listStorageV1beta1CSIDriver(params: Params$listStorageV1beta1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -61056,7 +61053,7 @@ export class Client { } /** create a CSIDriver */ public async createStorageV1beta1CSIDriver(params: Params$createStorageV1beta1CSIDriver, option?: RequestOption): Promise<(Response$createStorageV1beta1CSIDriver$Status$200 | Response$createStorageV1beta1CSIDriver$Status$201 | Response$createStorageV1beta1CSIDriver$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61076,7 +61073,7 @@ export class Client { } /** delete collection of CSIDriver */ public async deleteStorageV1beta1CollectionCSIDriver(params: Params$deleteStorageV1beta1CollectionCSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61106,7 +61103,7 @@ export class Client { } /** read the specified CSIDriver */ public async readStorageV1beta1CSIDriver(params: Params$readStorageV1beta1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61124,7 +61121,7 @@ export class Client { } /** replace the specified CSIDriver */ public async replaceStorageV1beta1CSIDriver(params: Params$replaceStorageV1beta1CSIDriver, option?: RequestOption): Promise<(Response$replaceStorageV1beta1CSIDriver$Status$200 | Response$replaceStorageV1beta1CSIDriver$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61144,7 +61141,7 @@ export class Client { } /** delete a CSIDriver */ public async deleteStorageV1beta1CSIDriver(params: Params$deleteStorageV1beta1CSIDriver, option?: RequestOption): Promise<(Response$deleteStorageV1beta1CSIDriver$Status$200 | Response$deleteStorageV1beta1CSIDriver$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61166,7 +61163,7 @@ export class Client { } /** partially update the specified CSIDriver */ public async patchStorageV1beta1CSIDriver(params: Params$patchStorageV1beta1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61187,7 +61184,7 @@ export class Client { } /** list or watch objects of kind CSINode */ public async listStorageV1beta1CSINode(params: Params$listStorageV1beta1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -61211,7 +61208,7 @@ export class Client { } /** create a CSINode */ public async createStorageV1beta1CSINode(params: Params$createStorageV1beta1CSINode, option?: RequestOption): Promise<(Response$createStorageV1beta1CSINode$Status$200 | Response$createStorageV1beta1CSINode$Status$201 | Response$createStorageV1beta1CSINode$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61231,7 +61228,7 @@ export class Client { } /** delete collection of CSINode */ public async deleteStorageV1beta1CollectionCSINode(params: Params$deleteStorageV1beta1CollectionCSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61261,7 +61258,7 @@ export class Client { } /** read the specified CSINode */ public async readStorageV1beta1CSINode(params: Params$readStorageV1beta1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61279,7 +61276,7 @@ export class Client { } /** replace the specified CSINode */ public async replaceStorageV1beta1CSINode(params: Params$replaceStorageV1beta1CSINode, option?: RequestOption): Promise<(Response$replaceStorageV1beta1CSINode$Status$200 | Response$replaceStorageV1beta1CSINode$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61299,7 +61296,7 @@ export class Client { } /** delete a CSINode */ public async deleteStorageV1beta1CSINode(params: Params$deleteStorageV1beta1CSINode, option?: RequestOption): Promise<(Response$deleteStorageV1beta1CSINode$Status$200 | Response$deleteStorageV1beta1CSINode$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61321,7 +61318,7 @@ export class Client { } /** partially update the specified CSINode */ public async patchStorageV1beta1CSINode(params: Params$patchStorageV1beta1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61342,7 +61339,7 @@ export class Client { } /** list or watch objects of kind StorageClass */ public async listStorageV1beta1StorageClass(params: Params$listStorageV1beta1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -61366,7 +61363,7 @@ export class Client { } /** create a StorageClass */ public async createStorageV1beta1StorageClass(params: Params$createStorageV1beta1StorageClass, option?: RequestOption): Promise<(Response$createStorageV1beta1StorageClass$Status$200 | Response$createStorageV1beta1StorageClass$Status$201 | Response$createStorageV1beta1StorageClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61386,7 +61383,7 @@ export class Client { } /** delete collection of StorageClass */ public async deleteStorageV1beta1CollectionStorageClass(params: Params$deleteStorageV1beta1CollectionStorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61416,7 +61413,7 @@ export class Client { } /** read the specified StorageClass */ public async readStorageV1beta1StorageClass(params: Params$readStorageV1beta1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61434,7 +61431,7 @@ export class Client { } /** replace the specified StorageClass */ public async replaceStorageV1beta1StorageClass(params: Params$replaceStorageV1beta1StorageClass, option?: RequestOption): Promise<(Response$replaceStorageV1beta1StorageClass$Status$200 | Response$replaceStorageV1beta1StorageClass$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61454,7 +61451,7 @@ export class Client { } /** delete a StorageClass */ public async deleteStorageV1beta1StorageClass(params: Params$deleteStorageV1beta1StorageClass, option?: RequestOption): Promise<(Response$deleteStorageV1beta1StorageClass$Status$200 | Response$deleteStorageV1beta1StorageClass$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61476,7 +61473,7 @@ export class Client { } /** partially update the specified StorageClass */ public async patchStorageV1beta1StorageClass(params: Params$patchStorageV1beta1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61497,7 +61494,7 @@ export class Client { } /** list or watch objects of kind VolumeAttachment */ public async listStorageV1beta1VolumeAttachment(params: Params$listStorageV1beta1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -61521,7 +61518,7 @@ export class Client { } /** create a VolumeAttachment */ public async createStorageV1beta1VolumeAttachment(params: Params$createStorageV1beta1VolumeAttachment, option?: RequestOption): Promise<(Response$createStorageV1beta1VolumeAttachment$Status$200 | Response$createStorageV1beta1VolumeAttachment$Status$201 | Response$createStorageV1beta1VolumeAttachment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61541,7 +61538,7 @@ export class Client { } /** delete collection of VolumeAttachment */ public async deleteStorageV1beta1CollectionVolumeAttachment(params: Params$deleteStorageV1beta1CollectionVolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61571,7 +61568,7 @@ export class Client { } /** read the specified VolumeAttachment */ public async readStorageV1beta1VolumeAttachment(params: Params$readStorageV1beta1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61589,7 +61586,7 @@ export class Client { } /** replace the specified VolumeAttachment */ public async replaceStorageV1beta1VolumeAttachment(params: Params$replaceStorageV1beta1VolumeAttachment, option?: RequestOption): Promise<(Response$replaceStorageV1beta1VolumeAttachment$Status$200 | Response$replaceStorageV1beta1VolumeAttachment$Status$201)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61609,7 +61606,7 @@ export class Client { } /** delete a VolumeAttachment */ public async deleteStorageV1beta1VolumeAttachment(params: Params$deleteStorageV1beta1VolumeAttachment, option?: RequestOption): Promise<(Response$deleteStorageV1beta1VolumeAttachment$Status$200 | Response$deleteStorageV1beta1VolumeAttachment$Status$202)[ResponseContentType]> { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61631,7 +61628,7 @@ export class Client { } /** partially update the specified VolumeAttachment */ public async patchStorageV1beta1VolumeAttachment(params: Params$patchStorageV1beta1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61652,7 +61649,7 @@ export class Client { } /** watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1beta1CSIDriverList(params: Params$watchStorageV1beta1CSIDriverList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csidrivers\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -61676,7 +61673,7 @@ export class Client { } /** watch changes to an object of kind CSIDriver. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1beta1CSIDriver(params: Params$watchStorageV1beta1CSIDriver, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61700,7 +61697,7 @@ export class Client { } /** watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1beta1CSINodeList(params: Params$watchStorageV1beta1CSINodeList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csinodes\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -61724,7 +61721,7 @@ export class Client { } /** watch changes to an object of kind CSINode. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1beta1CSINode(params: Params$watchStorageV1beta1CSINode, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61748,7 +61745,7 @@ export class Client { } /** watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1beta1StorageClassList(params: Params$watchStorageV1beta1StorageClassList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/storageclasses\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -61772,7 +61769,7 @@ export class Client { } /** watch changes to an object of kind StorageClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1beta1StorageClass(params: Params$watchStorageV1beta1StorageClass, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61796,7 +61793,7 @@ export class Client { } /** watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. */ public async watchStorageV1beta1VolumeAttachmentList(params: Params$watchStorageV1beta1VolumeAttachmentList, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/volumeattachments\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -61820,7 +61817,7 @@ export class Client { } /** watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ public async watchStorageV1beta1VolumeAttachment(params: Params$watchStorageV1beta1VolumeAttachment, option?: RequestOption): Promise { - const url = this.baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = this.baseUrl + `/apis/storage.k8s.io/v1beta1/watch/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61843,7 +61840,7 @@ export class Client { }, option); } public async logFileListHandler(option?: RequestOption): Promise { - const url = this.baseUrl + \`/logs/\`; + const url = this.baseUrl + `/logs/`; const headers = {}; return this.apiClient.request({ httpMethod: "GET", @@ -61852,7 +61849,7 @@ export class Client { }, option); } public async logFileHandler(params: Params$logFileHandler, option?: RequestOption): Promise { - const url = this.baseUrl + \`/logs/\${encodeURIComponent(params.parameter.logpath)}\`; + const url = this.baseUrl + `/logs/${encodeURIComponent(params.parameter.logpath)}`; const headers = {}; return this.apiClient.request({ httpMethod: "GET", @@ -61862,7 +61859,7 @@ export class Client { } /** get the code version */ public async getCodeVersion(option?: RequestOption): Promise { - const url = this.baseUrl + \`/version/\`; + const url = this.baseUrl + `/version/`; const headers = { Accept: "application/json" }; @@ -61873,5 +61870,3 @@ export class Client { }, option); } } -" -`; diff --git a/test/__tests__/class/__snapshots__/multi-type.test.domain.ts.snap b/test/__tests__/class/__snapshots__/mulit-type-test.domain/apiClient.ts similarity index 77% rename from test/__tests__/class/__snapshots__/multi-type.test.domain.ts.snap rename to test/__tests__/class/__snapshots__/mulit-type-test.domain/apiClient.ts index 237b3a6e..43b370ea 100644 --- a/test/__tests__/class/__snapshots__/multi-type.test.domain.ts.snap +++ b/test/__tests__/class/__snapshots__/mulit-type-test.domain/apiClient.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Multi Type > apiClient 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.1 // @@ -62,13 +59,13 @@ export interface ApiClient { } export class Client { private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } /** * operationId: putAnyOf * Request URI: /pets */ public async putAnyOf(params: Params$putAnyOf, option?: RequestOption): Promise { - const url = this.baseUrl + \`/pets\`; + const url = this.baseUrl + `/pets`; const headers = { "Content-Type": "application/json" }; @@ -84,7 +81,7 @@ export class Client { * Request URI: /pets */ public async patchOneOf(params: Params$patchOneOf, option?: RequestOption): Promise { - const url = this.baseUrl + \`/pets\`; + const url = this.baseUrl + `/pets`; const headers = { "Content-Type": "application/json" }; @@ -96,31 +93,3 @@ export class Client { }, option); } } -" -`; - -exports[`Multi Type > types 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.0.1 -// -// License : MIT -// - - -export namespace Schemas { - export interface Pet { - pet_type: string; - } - export type Dog = Schemas.Pet & { - bark?: boolean; - breed?: "Dingo" | "Husky" | "Retriever" | "Shepherd"; - }; - export type Cat = Schemas.Pet & { - hunts?: boolean; - age?: number; - }; -} -" -`; diff --git a/test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts b/test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts new file mode 100644 index 00000000..8c01fd09 --- /dev/null +++ b/test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts @@ -0,0 +1,22 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.0.1 +// +// License : MIT +// + + +export namespace Schemas { + export interface Pet { + pet_type: string; + } + export type Dog = Schemas.Pet & { + bark?: boolean; + breed?: "Dingo" | "Husky" | "Retriever" | "Shepherd"; + }; + export type Cat = Schemas.Pet & { + hunts?: boolean; + age?: number; + }; +} diff --git a/test/__tests__/class/__snapshots__/parameter-test.ts.snap b/test/__tests__/class/__snapshots__/parameter/api.test.domain.json similarity index 69% rename from test/__tests__/class/__snapshots__/parameter-test.ts.snap rename to test/__tests__/class/__snapshots__/parameter/api.test.domain.json index 52aa70e2..68ed9e52 100644 --- a/test/__tests__/class/__snapshots__/parameter-test.ts.snap +++ b/test/__tests__/class/__snapshots__/parameter/api.test.domain.json @@ -1,7 +1,4 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Parameter > api.test.domain 1`] = ` -"[ +[ { "operationId": "getIncludeLocalReference", "convertedParams": { @@ -667,329 +664,4 @@ exports[`Parameter > api.test.domain 1`] = ` } } } -]" -`; - -exports[`Parameter > infer.domain 1`] = `"[]"`; - -exports[`Parameter > required フィールドを省略したパスパラメータは pickedParameters で required: true として扱われること 1`] = ` -"[ - { - "operationId": "getItemById", - "convertedParams": { - "escapedOperationId": "getItemById", - "argumentParamsTypeDeclaration": "Params$getItemById", - "functionName": "getItemById", - "requestContentTypeName": "RequestContentType$getItemById", - "responseContentTypeName": "ResponseContentType$getItemById", - "parameterName": "Parameter$getItemById", - "requestBodyName": "RequestBody$getItemById", - "hasRequestBody": false, - "hasParameter": true, - "pickedParameters": [ - { - "name": "id", - "in": "path" - } - ], - "requestContentTypes": [], - "responseSuccessNames": [ - "Response$getItemById$Status$200" - ], - "responseFirstSuccessName": "Response$getItemById$Status$200", - "has2OrMoreSuccessNames": false, - "responseErrorNames": [], - "has2OrMoreRequestContentTypes": false, - "successResponseContentTypes": [ - "application/json" - ], - "successResponseFirstContentType": "application/json", - "has2OrMoreSuccessResponseContentTypes": false, - "hasAdditionalHeaders": false, - "hasQueryParameters": false - }, - "operationParams": { - "httpMethod": "get", - "requestUri": "/items/{id}", - "comment": "required フィールドを省略したパスパラメータ", - "deprecated": false, - "parameters": [ - { - "in": "path", - "name": "id", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - } - } - } - } - } - } - } - } - }, - { - "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" - }, - { - "name": "path", - "in": "path" - }, - { - "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" - } - }, - { - "in": "path", - "name": "path", - "schema": { - "type": "string" - } - }, - { - "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" - }, - { - "name": "path", - "in": "path" - }, - { - "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" - } - }, - { - "in": "path", - "name": "path", - "schema": { - "type": "string" - } - }, - { - "in": "query", - "name": "path", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK" - } - } - } - }, - { - "operationId": "getUserPost", - "convertedParams": { - "escapedOperationId": "getUserPost", - "argumentParamsTypeDeclaration": "Params$getUserPost", - "functionName": "getUserPost", - "requestContentTypeName": "RequestContentType$getUserPost", - "responseContentTypeName": "ResponseContentType$getUserPost", - "parameterName": "Parameter$getUserPost", - "requestBodyName": "RequestBody$getUserPost", - "hasRequestBody": false, - "hasParameter": true, - "pickedParameters": [ - { - "name": "userId", - "in": "path" - }, - { - "name": "postId", - "in": "path" - }, - { - "name": "include", - "in": "query" - } - ], - "requestContentTypes": [], - "responseSuccessNames": [ - "Response$getUserPost$Status$200" - ], - "responseFirstSuccessName": "Response$getUserPost$Status$200", - "has2OrMoreSuccessNames": false, - "responseErrorNames": [], - "has2OrMoreRequestContentTypes": false, - "successResponseContentTypes": [ - "application/json" - ], - "successResponseFirstContentType": "application/json", - "has2OrMoreSuccessResponseContentTypes": false, - "hasAdditionalHeaders": false, - "hasQueryParameters": true - }, - "operationParams": { - "httpMethod": "get", - "requestUri": "/users/{userId}/posts/{postId}", - "comment": "複数のパスパラメータで required を省略したケース", - "deprecated": false, - "parameters": [ - { - "in": "path", - "name": "userId", - "schema": { - "type": "string" - } - }, - { - "in": "path", - "name": "postId", - "schema": { - "type": "integer" - } - }, - { - "in": "query", - "name": "include", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "userId": { - "type": "string" - }, - "postId": { - "type": "integer" - } - } - } - } - } - } - } - } - } -]" -`; +] \ No newline at end of file diff --git a/test/__tests__/class/__snapshots__/parameter/infer.domain.json b/test/__tests__/class/__snapshots__/parameter/infer.domain.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/test/__tests__/class/__snapshots__/parameter/infer.domain.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/test/__tests__/class/__snapshots__/parameter/path-parameter.json b/test/__tests__/class/__snapshots__/parameter/path-parameter.json new file mode 100644 index 00000000..ee36a22e --- /dev/null +++ b/test/__tests__/class/__snapshots__/parameter/path-parameter.json @@ -0,0 +1,319 @@ +[ + { + "operationId": "getItemById", + "convertedParams": { + "escapedOperationId": "getItemById", + "argumentParamsTypeDeclaration": "Params$getItemById", + "functionName": "getItemById", + "requestContentTypeName": "RequestContentType$getItemById", + "responseContentTypeName": "ResponseContentType$getItemById", + "parameterName": "Parameter$getItemById", + "requestBodyName": "RequestBody$getItemById", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "id", + "in": "path" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getItemById$Status$200" + ], + "responseFirstSuccessName": "Response$getItemById$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": false + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/items/{id}", + "comment": "required フィールドを省略したパスパラメータ", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "id", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + } + } + } + } + } + }, + { + "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" + }, + { + "name": "path", + "in": "path" + }, + { + "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" + } + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + } + }, + { + "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" + }, + { + "name": "path", + "in": "path" + }, + { + "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" + } + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "path", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK" + } + } + } + }, + { + "operationId": "getUserPost", + "convertedParams": { + "escapedOperationId": "getUserPost", + "argumentParamsTypeDeclaration": "Params$getUserPost", + "functionName": "getUserPost", + "requestContentTypeName": "RequestContentType$getUserPost", + "responseContentTypeName": "ResponseContentType$getUserPost", + "parameterName": "Parameter$getUserPost", + "requestBodyName": "RequestBody$getUserPost", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "userId", + "in": "path" + }, + { + "name": "postId", + "in": "path" + }, + { + "name": "include", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getUserPost$Status$200" + ], + "responseFirstSuccessName": "Response$getUserPost$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/users/{userId}/posts/{postId}", + "comment": "複数のパスパラメータで required を省略したケース", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "userId", + "schema": { + "type": "string" + } + }, + { + "in": "path", + "name": "postId", + "schema": { + "type": "integer" + } + }, + { + "in": "query", + "name": "include", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "userId": { + "type": "string" + }, + "postId": { + "type": "integer" + } + } + } + } + } + } + } + } + } +] \ No newline at end of file diff --git a/test/__tests__/class/__snapshots__/split/apiClient.ts b/test/__tests__/class/__snapshots__/split/apiClient.ts new file mode 100644 index 00000000..c4056f7e --- /dev/null +++ b/test/__tests__/class/__snapshots__/split/apiClient.ts @@ -0,0 +1,281 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +import { Schemas } from "./types"; +export interface Parameter$getIncludeLocalReference { + /** parameters.StringQueryParams */ + StringQuery: string; +} +export interface Response$getIncludeLocalReference$Status$200 { + "application/json": { + meta: string; + }; +} +export interface Parameter$getIncludeRemoteReference { + /** remote reference parameter */ + IncludeRemoteReference: number; +} +export interface RequestBody$getIncludeRemoteReference { + "application/json": string; +} +export interface Parameter$getFullRemoteReference { + /** Full Remote Reference */ + FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; +} +export interface Response$getFullRemoteReference$Status$200 { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; +} +export interface Response$i$have$dot$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Response$getReferenceItems$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Parameter$searchBook { + "from.publishedAt"?: number; + "book.name": string; +} +export interface Response$searchBook$Status$200 { + "application/json": { + id?: number; + bookTitle?: string; + }; +} +export interface Parameter$getBookById { + /** Book ID */ + id: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.ObjectHasPropertiesType; +} +export interface Parameter$deleteBook { + /** Number Book ID */ + id: number; +} +export interface Response$deleteBook$Status$200 { + "application/json": { + status?: "ok"; + }; +} +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + /** + * operationId: getIncludeLocalReference + * Request URI: /get/IncludeLocalReference + */ + public async getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** + * operationId: getIncludeRemoteReference + * Request URI: /get/IncludeRemoteReference + */ + public async getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** + * operationId: getFullRemoteReference + * Request URI: /FullRemoteReference + */ + public async getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** + * operationId: i.have.dot + * Request URI: /i/have/dot + */ + public async i$have$dot(option?: RequestOption): Promise { + const url = this.baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** + * operationId: getReferenceItems + * Request URI: /get/reference/items + */ + public async getReferenceItems(option?: RequestOption): Promise { + const url = this.baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** + * operationId: searchBook + * Request URI: /get/search/{book.name} + */ + public async searchBook(params: Params$searchBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** + * operationId: getBookById + * Request URI: /get/books/{id} + */ + public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** + * operationId: deleteBook + * Request URI: /get/books/{id} + */ + public async deleteBook(params: Params$deleteBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/typedef-only-test.ts.snap b/test/__tests__/class/__snapshots__/split/types.ts similarity index 85% rename from test/__tests__/class/__snapshots__/typedef-only-test.ts.snap rename to test/__tests__/class/__snapshots__/split/types.ts index 6a3c290b..517f915b 100644 --- a/test/__tests__/class/__snapshots__/typedef-only-test.ts.snap +++ b/test/__tests__/class/__snapshots__/split/types.ts @@ -1,42 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Typedef only > Reference test that include nested properties 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.0.0 -// -// License : MIT // - - -export namespace Schemas { - export interface Foo { - bar?: { - baz?: string; - bazbaz?: { - hoge?: number; - }; - }; - } - export type Bar = { - baz?: string; - bazbaz?: { - hoge?: number; - }; - }; - export type Baz = string; - export type Hoge = number; - export type BazBaz = { - hoge?: number; - }; -} -" -`; - -exports[`Typedef only > typedef-api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -331,41 +294,3 @@ export namespace RequestBodies { } } } -" -`; - -exports[`Typedef only > typedef-infer.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export type InferArrayEmptyItems = {}[]; - export type InferArrayType = string[]; - export interface InferObjectItem { - description: any; - } - export interface InferObjectHasAnyProp { - filed?: any; - } - export interface InferObject { - filed?: string; - } - export type InferStringEnum = "a" | "b" | "c"; - export type InferAnyNullable = null; - export interface OptionalPropertiesAndAdditionalProperties { - body?: { - key?: string; - description?: string; - } & { - [key: string]: string; - }; - } -} -" -`; diff --git a/test/__tests__/class/__snapshots__/template-only-test.ts.snap b/test/__tests__/class/__snapshots__/template-only-test.ts.snap deleted file mode 100644 index 695e5a1b..00000000 --- a/test/__tests__/class/__snapshots__/template-only-test.ts.snap +++ /dev/null @@ -1,430 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Template Only > api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - public async getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public async getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - } - public async getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public async i$have$dot(option?: RequestOption): Promise { - const url = this.baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getReferenceItems(option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async searchBook(params: Params$searchBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async deleteBook(params: Params$deleteBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } -} -" -`; - -exports[`Template Only > async-api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => T; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - public getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] { - const url = this.baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): void { - const url = this.baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - } - public getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] { - const url = this.baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public i$have$dot(option?: RequestOption): Response$i$have$dot$Status$200["application/json"] { - const url = this.baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public getReferenceItems(option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] { - const url = this.baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public searchBook(params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] { - const url = this.baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public getBookById(params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public deleteBook(params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } -} -" -`; - -exports[`Template Only > infer.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = void; -export namespace ErrorResponse { } -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => T; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } -} -" -`; diff --git a/test/__tests__/class/__snapshots__/template-only/api.test.domain.ts b/test/__tests__/class/__snapshots__/template-only/api.test.domain.ts new file mode 100644 index 00000000..8b25965d --- /dev/null +++ b/test/__tests__/class/__snapshots__/template-only/api.test.domain.ts @@ -0,0 +1,186 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + public async getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + public async getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async i$have$dot(option?: RequestOption): Promise { + const url = this.baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getReferenceItems(option?: RequestOption): Promise { + const url = this.baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async searchBook(params: Params$searchBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async deleteBook(params: Params$deleteBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/template-only/infer.domain.ts b/test/__tests__/class/__snapshots__/template-only/infer.domain.ts new file mode 100644 index 00000000..bdec24c2 --- /dev/null +++ b/test/__tests__/class/__snapshots__/template-only/infer.domain.ts @@ -0,0 +1,45 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = void; +export namespace ErrorResponse { } +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => T; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } +} diff --git a/test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts b/test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts new file mode 100644 index 00000000..d89107d3 --- /dev/null +++ b/test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts @@ -0,0 +1,186 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => T; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + public getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] { + const url = this.baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): void { + const url = this.baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + public getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] { + const url = this.baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public i$have$dot(option?: RequestOption): Response$i$have$dot$Status$200["application/json"] { + const url = this.baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public getReferenceItems(option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] { + const url = this.baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public searchBook(params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] { + const url = this.baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public getBookById(params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public deleteBook(params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } +} diff --git a/test/__tests__/functional/__snapshots__/typedef-only-test.ts.snap b/test/__tests__/class/__snapshots__/typedef-only/api.test.domain.ts similarity index 85% rename from test/__tests__/functional/__snapshots__/typedef-only-test.ts.snap rename to test/__tests__/class/__snapshots__/typedef-only/api.test.domain.ts index 6a3c290b..517f915b 100644 --- a/test/__tests__/functional/__snapshots__/typedef-only-test.ts.snap +++ b/test/__tests__/class/__snapshots__/typedef-only/api.test.domain.ts @@ -1,42 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Typedef only > Reference test that include nested properties 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.0.0 -// -// License : MIT // - - -export namespace Schemas { - export interface Foo { - bar?: { - baz?: string; - bazbaz?: { - hoge?: number; - }; - }; - } - export type Bar = { - baz?: string; - bazbaz?: { - hoge?: number; - }; - }; - export type Baz = string; - export type Hoge = number; - export type BazBaz = { - hoge?: number; - }; -} -" -`; - -exports[`Typedef only > typedef-api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -331,41 +294,3 @@ export namespace RequestBodies { } } } -" -`; - -exports[`Typedef only > typedef-infer.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export type InferArrayEmptyItems = {}[]; - export type InferArrayType = string[]; - export interface InferObjectItem { - description: any; - } - export interface InferObjectHasAnyProp { - filed?: any; - } - export interface InferObject { - filed?: string; - } - export type InferStringEnum = "a" | "b" | "c"; - export type InferAnyNullable = null; - export interface OptionalPropertiesAndAdditionalProperties { - body?: { - key?: string; - description?: string; - } & { - [key: string]: string; - }; - } -} -" -`; diff --git a/test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts b/test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts new file mode 100644 index 00000000..035100ef --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts @@ -0,0 +1,32 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export type InferArrayEmptyItems = {}[]; + export type InferArrayType = string[]; + export interface InferObjectItem { + description: any; + } + export interface InferObjectHasAnyProp { + filed?: any; + } + export interface InferObject { + filed?: string; + } + export type InferStringEnum = "a" | "b" | "c"; + export type InferAnyNullable = null; + export interface OptionalPropertiesAndAdditionalProperties { + body?: { + key?: string; + description?: string; + } & { + [key: string]: string; + }; + } +} diff --git a/test/__tests__/class/__snapshots__/typedef-only/json.properties.ts b/test/__tests__/class/__snapshots__/typedef-only/json.properties.ts new file mode 100644 index 00000000..3ff215ee --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-only/json.properties.ts @@ -0,0 +1,30 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.0.0 +// +// License : MIT +// + + +export namespace Schemas { + export interface Foo { + bar?: { + baz?: string; + bazbaz?: { + hoge?: number; + }; + }; + } + export type Bar = { + baz?: string; + bazbaz?: { + hoge?: number; + }; + }; + export type Baz = string; + export type Hoge = number; + export type BazBaz = { + hoge?: number; + }; +} diff --git a/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap b/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap deleted file mode 100644 index aeae5caa..00000000 --- a/test/__tests__/class/__snapshots__/typedef-with-template-test.ts.snap +++ /dev/null @@ -1,1896 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Typedef with template > api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - /** String Literal */ - export type StringType = string; - export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; - export type StringDateType = string; - export type StringDateTimeType = string; - export type StringPasswordType = string; - export type StringByteType = string; - export type StringBinaryType = string; - export type StringWithPatternType = string; - /** Number Literal */ - export type NumberType = number; - export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; - export type NumberInt32Type = number; - export type NumberInt64Type = number; - export type NumberFloat = number; - export type NumberDouble = number; - /** Boolean Literal */ - export type BooleanType = boolean; - export type BooleanEnumType = true; - export type BooleanEnumType2 = false; - export type BooleanEnumType3 = true | false; - export type ArrayStringType = string[]; - export type ArrayNumberType = number[]; - export type ArrayBooleanType = boolean[]; - export interface ObjectEmptyPropertiesType { - } - export interface ObjectHasPropertiesType { - stringType?: string; - numberType?: number; - booleanType?: boolean; - arrayType?: string; - objectType?: { - requiredStringType: string; - }; - } - export type OneOfType = string | number | {}; - export type AllOfType = { - A?: string; - } & { - B?: string; - }; - export type LocalRefStringType = Schemas.StringType; - export type LocalRefNumberType = Schemas.NumberType; - export type LocalRefBooleanType = Schemas.BooleanType; - export type LocalRefArrayStringType = Schemas.BooleanType; - export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; - export interface LocalRefObjectProperties { - stringType: Schemas.StringType; - numberType: Schemas.NumberType; - booleanType: Schemas.BooleanType; - arrayType: Schemas.BooleanType; - objectType: Schemas.ObjectHasPropertiesType; - } - export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; - export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; - export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; - export type UnresolvedTarget1 = boolean; - export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; - export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; - export type UnresolvedTarget3 = number; - export interface LocalReferenceBeforeResolvedSchema3 { - unresolvedTarget4?: Schemas.UnresolvedTarget4; - } - export interface UnresolvedTarget4 { - unresolvedTarget5?: Schemas.UnresolvedTarget5; - } - export type UnresolvedTarget5 = string; - export type RemoteString = string; - export type RemoteRefString = Schemas.RemoteString; - export namespace Level1 { - /** Level 1 */ - export type RemoteBoolean = boolean; - export namespace Level2 { - /** Level 2 */ - export type RemoteNumber = number; - export namespace Level3 { - /** Level 3 */ - export type RemoteArray = string[]; - export namespace Level4 { - /** Level 4 */ - export interface RemoteObject { - A?: string; - B?: number; - } - } - } - } - } - /** Level 1 */ - export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; - /** Level 2 */ - export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; - /** Level 3 */ - export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; - /** Level 4 */ - export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; - export type NullableString = string | null; - export type NullableBoolean = boolean | null; - export type NullableNumber = number | null; - export type NullableArray = string[] | null; - export type NullableObject = { - gt?: string; - } | null; - export namespace DirectRef { - export type ForHeader = string; - export interface ForResponse { - forResponse?: string; - } - export type ForParameters = string; - export interface ForRequestBody { - a?: string; - } - } - export namespace FullRemoteReference { - export type ForParameters = string; - } - export interface Child { - id: string; - /** child name */ - name: string; - } - export interface Item { - name: string; - children: Child[]; - } -} -export namespace Headers { - export type StringHeader = string; - export type A = number; - export namespace Level1 { - export type B = string; - } - export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; -} -export namespace Responses { - /** - * Status Code 100 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 - */ - export namespace Continue { } - /** - * Status Code 101 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 - */ - export namespace SwitchingProtocol { } - /** Type Reference - string */ - export namespace LocalReferenceStringDateTimeType { - export interface Content { - "application/json": Schemas.StringDateTimeType; - } - } - /** Local Reference - object */ - export namespace LocalReferenceObjectType { - export interface Content { - "application/json": Schemas.ObjectHasPropertiesType; - } - } - /** Response -> Schema */ - export namespace ReferenceOfResponseToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForResponse; - } - } - /** response A definition */ - export namespace ResponseA { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - export namespace Level1 { - /** response B definition */ - export namespace ResponseB { - export interface Content { - "application/json": { - name?: "responseB"; - }; - } - } - export namespace Level2 { - /** response C definition */ - export namespace ResponseC { - export interface Content { - "application/json": { - name?: "responseC"; - }; - } - } - } - } - export namespace ForPathItems { - /** response A definition */ - export namespace FullRemoteReference { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - } -} -export namespace Parameters { - /** parameters.StringQueryParams */ - export type StringQueryParams = string; - /** parameters.NumberQueryParams */ - export type NumberQueryParams = number; - /** parameters.StringQueryParams */ - export type StringHeaderParams = string; - export type A = number; - export type RemoteReferenceA = Parameters.A; - export namespace level1 { - export type B = string; - } - export type RemoteReferenceB = Parameters.level1.B; - /** parameters -> schemas */ - export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; - /** deepObject */ - export type DeepObjectParameter = { - [key: string]: { - gt?: string; - gte?: string; - lt?: string; - lte?: string; - any?: string | number | boolean; - }; - }; -} -export namespace RequestBodies { - /** Request body string type */ - export namespace StringType { - export interface Content { - "application/json": string; - } - } - /** Request body Local reference string type */ - export namespace LocalReferenceStringType { - export interface Content { - "application/json": Schemas.StringHasEnumType; - } - } - /** requestBodies -> schemas */ - export namespace ReferenceOfRequestBodyToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForRequestBody; - } - } - /** Remote Request body A */ - export namespace RequestBodyA { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level1 { - /** Remote Request body B */ - export namespace RequestBodyB { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level2 { - /** Remote Request body C */ - export namespace RequestBodyC { - export interface Content { - "application/json": { - body?: string; - }; - } - } - } - } -} -export interface Parameter$getIncludeLocalReference { - /** parameters.StringQueryParams */ - StringQuery: string; -} -export interface Response$getIncludeLocalReference$Status$200 { - "application/json": { - meta: string; - }; -} -export interface Parameter$getIncludeRemoteReference { - /** remote reference parameter */ - IncludeRemoteReference: number; -} -export interface RequestBody$getIncludeRemoteReference { - "application/json": string; -} -export interface Parameter$getFullRemoteReference { - /** Full Remote Reference */ - FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; -} -export interface Response$getFullRemoteReference$Status$200 { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; -} -export interface Response$i$have$dot$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Response$getReferenceItems$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Parameter$searchBook { - "from.publishedAt"?: number; - "book.name": string; -} -export interface Response$searchBook$Status$200 { - "application/json": { - id?: number; - bookTitle?: string; - }; -} -export interface Parameter$getBookById { - /** Book ID */ - id: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.ObjectHasPropertiesType; -} -export interface Parameter$deleteBook { - /** Number Book ID */ - id: number; -} -export interface Response$deleteBook$Status$200 { - "application/json": { - status?: "ok"; - }; -} -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - public async getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public async getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - } - public async getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public async i$have$dot(option?: RequestOption): Promise { - const url = this.baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getReferenceItems(option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async searchBook(params: Params$searchBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async deleteBook(params: Params$deleteBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } -} -" -`; - -exports[`Typedef with template > api.v2.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export type Message = "hello" | "world"; - export type QueryParams = "a" | "b" | "c"; - export interface ReadOnlyParams { - readonly readonlyPropertyKey?: string; - } -} -export interface Parameter$getHelloWorld { - /** query word */ - word: Schemas.QueryParams; -} -export interface Response$getHelloWorld$Status$200 { - "application/json": { - message?: Schemas.Message; - }; -} -export interface RequestBody$postHelloWorldReadonly { -} -export interface Response$postHelloWorldReadonly$Status$200 { - "application/json": { - message?: Schemas.Message; - }; -} -export interface Response$get$undefined$operation$$id$Status$200 { - "application/json": { - /** Undefined operation response */ - message?: string; - }; -} -export type ResponseContentType$getHelloWorld = keyof Response$getHelloWorld$Status$200; -export interface Params$getHelloWorld { - parameter: Parameter$getHelloWorld; -} -export type RequestContentType$postHelloWorldReadonly = keyof RequestBody$postHelloWorldReadonly; -export type ResponseContentType$postHelloWorldReadonly = keyof Response$postHelloWorldReadonly$Status$200; -export interface Params$postHelloWorldReadonly { - requestBody: RequestBody$postHelloWorldReadonly["application/json"]; -} -export type ResponseContentType$get$undefined$operation$$id = keyof Response$get$undefined$operation$$id$Status$200; -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getHelloWorld$Status$200 | Response$postHelloWorldReadonly$Status$200 | Response$get$undefined$operation$$id$Status$200; -export namespace ErrorResponse { - export type getHelloWorld = void; - export type postHelloWorldReadonly = void; - export type get$undefined$operation$$id = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - public async getHelloWorld(params: Params$getHelloWorld, option?: RequestOption): Promise { - const url = this.baseUrl + \`/hello/world\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - word: { value: params.parameter.word, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public async postHelloWorldReadonly(params: Params$postHelloWorldReadonly, option?: RequestOption): Promise { - const url = this.baseUrl + \`/hello/world/readonly\`; - const headers = { - "Content-Type": "application/json", - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "POST", - url, - headers, - requestBody: params.requestBody - }, option); - } - public async get$undefined$operation$$id(option?: RequestOption): Promise { - const url = this.baseUrl + \`/undefined/operation/:id\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } -} -" -`; - -exports[`Typedef with template > async-api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - /** String Literal */ - export type StringType = string; - export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; - export type StringDateType = string; - export type StringDateTimeType = string; - export type StringPasswordType = string; - export type StringByteType = string; - export type StringBinaryType = string; - export type StringWithPatternType = string; - /** Number Literal */ - export type NumberType = number; - export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; - export type NumberInt32Type = number; - export type NumberInt64Type = number; - export type NumberFloat = number; - export type NumberDouble = number; - /** Boolean Literal */ - export type BooleanType = boolean; - export type BooleanEnumType = true; - export type BooleanEnumType2 = false; - export type BooleanEnumType3 = true | false; - export type ArrayStringType = string[]; - export type ArrayNumberType = number[]; - export type ArrayBooleanType = boolean[]; - export interface ObjectEmptyPropertiesType { - } - export interface ObjectHasPropertiesType { - stringType?: string; - numberType?: number; - booleanType?: boolean; - arrayType?: string; - objectType?: { - requiredStringType: string; - }; - } - export type OneOfType = string | number | {}; - export type AllOfType = { - A?: string; - } & { - B?: string; - }; - export type LocalRefStringType = Schemas.StringType; - export type LocalRefNumberType = Schemas.NumberType; - export type LocalRefBooleanType = Schemas.BooleanType; - export type LocalRefArrayStringType = Schemas.BooleanType; - export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; - export interface LocalRefObjectProperties { - stringType: Schemas.StringType; - numberType: Schemas.NumberType; - booleanType: Schemas.BooleanType; - arrayType: Schemas.BooleanType; - objectType: Schemas.ObjectHasPropertiesType; - } - export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; - export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; - export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; - export type UnresolvedTarget1 = boolean; - export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; - export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; - export type UnresolvedTarget3 = number; - export interface LocalReferenceBeforeResolvedSchema3 { - unresolvedTarget4?: Schemas.UnresolvedTarget4; - } - export interface UnresolvedTarget4 { - unresolvedTarget5?: Schemas.UnresolvedTarget5; - } - export type UnresolvedTarget5 = string; - export type RemoteString = string; - export type RemoteRefString = Schemas.RemoteString; - export namespace Level1 { - /** Level 1 */ - export type RemoteBoolean = boolean; - export namespace Level2 { - /** Level 2 */ - export type RemoteNumber = number; - export namespace Level3 { - /** Level 3 */ - export type RemoteArray = string[]; - export namespace Level4 { - /** Level 4 */ - export interface RemoteObject { - A?: string; - B?: number; - } - } - } - } - } - /** Level 1 */ - export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; - /** Level 2 */ - export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; - /** Level 3 */ - export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; - /** Level 4 */ - export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; - export type NullableString = string | null; - export type NullableBoolean = boolean | null; - export type NullableNumber = number | null; - export type NullableArray = string[] | null; - export type NullableObject = { - gt?: string; - } | null; - export namespace DirectRef { - export type ForHeader = string; - export interface ForResponse { - forResponse?: string; - } - export type ForParameters = string; - export interface ForRequestBody { - a?: string; - } - } - export namespace FullRemoteReference { - export type ForParameters = string; - } - export interface Child { - id: string; - /** child name */ - name: string; - } - export interface Item { - name: string; - children: Child[]; - } -} -export namespace Headers { - export type StringHeader = string; - export type A = number; - export namespace Level1 { - export type B = string; - } - export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; -} -export namespace Responses { - /** - * Status Code 100 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 - */ - export namespace Continue { } - /** - * Status Code 101 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 - */ - export namespace SwitchingProtocol { } - /** Type Reference - string */ - export namespace LocalReferenceStringDateTimeType { - export interface Content { - "application/json": Schemas.StringDateTimeType; - } - } - /** Local Reference - object */ - export namespace LocalReferenceObjectType { - export interface Content { - "application/json": Schemas.ObjectHasPropertiesType; - } - } - /** Response -> Schema */ - export namespace ReferenceOfResponseToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForResponse; - } - } - /** response A definition */ - export namespace ResponseA { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - export namespace Level1 { - /** response B definition */ - export namespace ResponseB { - export interface Content { - "application/json": { - name?: "responseB"; - }; - } - } - export namespace Level2 { - /** response C definition */ - export namespace ResponseC { - export interface Content { - "application/json": { - name?: "responseC"; - }; - } - } - } - } - export namespace ForPathItems { - /** response A definition */ - export namespace FullRemoteReference { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - } -} -export namespace Parameters { - /** parameters.StringQueryParams */ - export type StringQueryParams = string; - /** parameters.NumberQueryParams */ - export type NumberQueryParams = number; - /** parameters.StringQueryParams */ - export type StringHeaderParams = string; - export type A = number; - export type RemoteReferenceA = Parameters.A; - export namespace level1 { - export type B = string; - } - export type RemoteReferenceB = Parameters.level1.B; - /** parameters -> schemas */ - export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; - /** deepObject */ - export type DeepObjectParameter = { - [key: string]: { - gt?: string; - gte?: string; - lt?: string; - lte?: string; - any?: string | number | boolean; - }; - }; -} -export namespace RequestBodies { - /** Request body string type */ - export namespace StringType { - export interface Content { - "application/json": string; - } - } - /** Request body Local reference string type */ - export namespace LocalReferenceStringType { - export interface Content { - "application/json": Schemas.StringHasEnumType; - } - } - /** requestBodies -> schemas */ - export namespace ReferenceOfRequestBodyToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForRequestBody; - } - } - /** Remote Request body A */ - export namespace RequestBodyA { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level1 { - /** Remote Request body B */ - export namespace RequestBodyB { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level2 { - /** Remote Request body C */ - export namespace RequestBodyC { - export interface Content { - "application/json": { - body?: string; - }; - } - } - } - } -} -export interface Parameter$getIncludeLocalReference { - /** parameters.StringQueryParams */ - StringQuery: string; -} -export interface Response$getIncludeLocalReference$Status$200 { - "application/json": { - meta: string; - }; -} -export interface Parameter$getIncludeRemoteReference { - /** remote reference parameter */ - IncludeRemoteReference: number; -} -export interface RequestBody$getIncludeRemoteReference { - "application/json": string; -} -export interface Parameter$getFullRemoteReference { - /** Full Remote Reference */ - FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; -} -export interface Response$getFullRemoteReference$Status$200 { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; -} -export interface Response$i$have$dot$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Response$getReferenceItems$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Parameter$searchBook { - "from.publishedAt"?: number; - "book.name": string; -} -export interface Response$searchBook$Status$200 { - "application/json": { - id?: number; - bookTitle?: string; - }; -} -export interface Parameter$getBookById { - /** Book ID */ - id: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.ObjectHasPropertiesType; -} -export interface Parameter$deleteBook { - /** Number Book ID */ - id: number; -} -export interface Response$deleteBook$Status$200 { - "application/json": { - status?: "ok"; - }; -} -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => T; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - public getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] { - const url = this.baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): void { - const url = this.baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - } - public getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] { - const url = this.baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public i$have$dot(option?: RequestOption): Response$i$have$dot$Status$200["application/json"] { - const url = this.baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public getReferenceItems(option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] { - const url = this.baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public searchBook(params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] { - const url = this.baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - public getBookById(params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public deleteBook(params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } -} -" -`; - -exports[`Typedef with template > infer.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export type InferArrayEmptyItems = {}[]; - export type InferArrayType = string[]; - export interface InferObjectItem { - description: any; - } - export interface InferObjectHasAnyProp { - filed?: any; - } - export interface InferObject { - filed?: string; - } - export type InferStringEnum = "a" | "b" | "c"; - export type InferAnyNullable = null; - export interface OptionalPropertiesAndAdditionalProperties { - body?: { - key?: string; - description?: string; - } & { - [key: string]: string; - }; - } -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = void; -export namespace ErrorResponse { } -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } -} -" -`; - -exports[`Typedef with template > ref-access 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export interface Book { - author?: { - name?: string; - age?: string; - }; - publisher?: { - name?: any; - address?: string; - }; - metadata: { - description: string; - }; - } - export type Author = { - name?: string; - age?: string; - }; - export type Publisher = { - name?: any; - address?: string; - }; -} -export interface Parameter$getBook { - /** Book ID */ - id: string; -} -export interface Response$getBook$Status$200 { - "application/json": Schemas.Book; -} -export interface Parameter$getDescription { - /** Book ID */ - id: string; -} -export interface Response$getDescription$Status$200 { - "application/json": string; -} -export interface Parameter$getAuthor { - /** Author Id */ - id: string; -} -export interface Response$getAuthor$Status$200 { - "application/json": { - name?: string; - age?: string; - }; -} -export interface Parameter$getPublisher { - /** Publisher ID */ - id: string; -} -export interface Response$getPublisher$Status$200 { - "application/json": Schemas.Publisher; -} -export interface RequestBody$createPublisher { - "application/x-www-form-urlencoded": { - color?: string[]; - }; -} -export interface Response$createPublisher$Status$200 { - "application/json": { - status?: string; - }; -} -export interface RequestBody$createPublisherV2 { - "application/x-www-form-urlencoded": { - color?: string[]; - }; - "application/json": { - color?: string[]; - }; -} -export interface Response$createPublisherV2$Status$200 { - "application/json": { - status?: string; - }; -} -export interface Parameter$getBookById { - /** Author ID */ - authorId: string; - /** Book ID */ - bookId: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.Book; -} -export type ResponseContentType$getBook = keyof Response$getBook$Status$200; -export interface Params$getBook { - parameter: Parameter$getBook; -} -export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; -export interface Params$getDescription { - parameter: Parameter$getDescription; -} -export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; -export interface Params$getAuthor { - parameter: Parameter$getAuthor; -} -export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; -export interface Params$getPublisher { - parameter: Parameter$getPublisher; -} -export type RequestContentType$createPublisher = keyof RequestBody$createPublisher; -export type ResponseContentType$createPublisher = keyof Response$createPublisher$Status$200; -export interface Params$createPublisher { - requestBody: RequestBody$createPublisher["application/x-www-form-urlencoded"]; -} -export type RequestContentType$createPublisherV2 = keyof RequestBody$createPublisherV2; -export type ResponseContentType$createPublisherV2 = keyof Response$createPublisherV2$Status$200; -export interface Params$createPublisherV2 { - headers: { - "Content-Type": T; - }; - requestBody: RequestBody$createPublisherV2[T]; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200 | Response$createPublisher$Status$200 | Response$createPublisherV2$Status$200 | Response$getBookById$Status$200; -export namespace ErrorResponse { - export type getBook = void; - export type getDescription = void; - export type getAuthor = void; - export type getPublisher = void; - export type createPublisher = void; - export type createPublisherV2 = void; - export type getBookById = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - public async getBook(params: Params$getBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getDescription(params: Params$getDescription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}/description\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getAuthor(params: Params$getAuthor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/author/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getPublisher(params: Params$getPublisher, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/publisher/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async createPublisher(params: Params$createPublisher, option?: RequestOption): Promise { - const url = this.baseUrl + \`/create/publisher/{id}\`; - const headers = { - "Content-Type": "application/x-www-form-urlencoded", - Accept: "application/json" - }; - const requestEncodings: Record> = { - "application/x-www-form-urlencoded": { - "color": { - "style": "form", - "explode": false - } - } - }; - return this.apiClient.request({ - httpMethod: "POST", - url, - headers, - requestBody: params.requestBody, - requestBodyEncoding: requestEncodings["application/x-www-form-urlencoded"] - }, option); - } - public async createPublisherV2(params: Params$createPublisherV2, option?: RequestOption): Promise { - const url = this.baseUrl + \`/create/v2/publisher/{id}\`; - const headers = { - "Content-Type": params.headers["Content-Type"], - Accept: "application/json" - }; - const requestEncodings: Record> = { - "application/x-www-form-urlencoded": { - "color": { - "style": "form", - "explode": false - } - }, - "application/json": { - "color": { - "style": "form", - "explode": false - } - } - }; - return this.apiClient.request({ - httpMethod: "POST", - url, - headers, - requestBody: params.requestBody, - requestBodyEncoding: requestEncodings[params.headers["Content-Type"]] - }, option); - } - public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { - const url = this.baseUrl + \`/author/author-\${encodeURIComponent(params.parameter.authorId)}.a.\${encodeURIComponent(params.parameter.bookId)}.b/book/\${encodeURIComponent(params.parameter.bookId)}.json\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } -} -" -`; - -exports[`Typedef with template > remote-ref-access 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export interface Book { - author?: { - name?: string; - age?: string; - }; - publisher?: { - name?: any; - address?: string; - }; - metadata: { - description: string; - }; - } - export namespace Book { - export namespace properties { - export interface author { - name?: string; - age?: string; - } - export interface publisher { - name?: any; - address?: string; - } - export namespace metadata { - export namespace properties { - export type description = string; - } - } - } - } - export type Author = Schemas.Book.properties.author; - export type Publisher = Schemas.Book.properties.publisher; -} -export interface Parameter$getBook { - /** Book ID */ - id: string; -} -export interface Response$getBook$Status$200 { - "application/json": Schemas.Book; -} -export interface Parameter$getDescription { - /** Book ID */ - id: string; -} -export interface Response$getDescription$Status$200 { - "application/json": Schemas.Book.properties.metadata.properties.description; -} -export interface Parameter$getAuthor { - /** Author Id */ - id: string; -} -export interface Response$getAuthor$Status$200 { - "application/json": Schemas.Author; -} -export interface Parameter$getPublisher { - /** Publisher ID */ - id: string; -} -export interface Response$getPublisher$Status$200 { - "application/json": Schemas.Publisher; -} -export type ResponseContentType$getBook = keyof Response$getBook$Status$200; -export interface Params$getBook { - parameter: Parameter$getBook; -} -export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; -export interface Params$getDescription { - parameter: Parameter$getDescription; -} -export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; -export interface Params$getAuthor { - parameter: Parameter$getAuthor; -} -export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; -export interface Params$getPublisher { - parameter: Parameter$getPublisher; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200; -export namespace ErrorResponse { - export type getBook = void; - export type getDescription = void; - export type getAuthor = void; - export type getPublisher = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - public async getBook(params: Params$getBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getDescription(params: Params$getDescription, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}/description\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getAuthor(params: Params$getAuthor, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/author/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - public async getPublisher(params: Params$getPublisher, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/publisher/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } -} -" -`; - -exports[`Typedef with template > required フィールドを省略したパスパラメータは必須の型として生成されること 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// - - -export interface Parameter$getItemById { - id: string; -} -export interface Response$getItemById$Status$200 { - "application/json": { - id?: string; - name?: string; - }; -} -export interface Parameter$getNodeProxyWithPath { - path: string; - name: string; -} -export interface Response$getNodeProxyWithPath$Status$200 { - "application/json": string; -} -export interface Parameter$headNodeProxyWithPath { - path: string; - name: string; -} -export interface Parameter$getUserPost { - include?: string; - userId: string; - postId: number; -} -export interface Response$getUserPost$Status$200 { - "application/json": { - userId?: string; - postId?: number; - }; -} -export type ResponseContentType$getItemById = keyof Response$getItemById$Status$200; -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; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -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 { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - /** required フィールドを省略したパスパラメータ */ - public async getItemById(params: Params$getItemById, option?: RequestOption): Promise { - const url = this.baseUrl + \`/items/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - 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)}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - include: { value: params.parameter.include, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } -} -" -`; diff --git a/test/__tests__/class/__snapshots__/spit-code-test.ts.snap b/test/__tests__/class/__snapshots__/typedef-with-template/api.test.domain.ts similarity index 91% rename from test/__tests__/class/__snapshots__/spit-code-test.ts.snap rename to test/__tests__/class/__snapshots__/typedef-with-template/api.test.domain.ts index a05da2dc..ef52331c 100644 --- a/test/__tests__/class/__snapshots__/spit-code-test.ts.snap +++ b/test/__tests__/class/__snapshots__/typedef-with-template/api.test.domain.ts @@ -1,293 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Split Code > apiClient 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT // - - -import { Schemas } from "./types"; -export interface Parameter$getIncludeLocalReference { - /** parameters.StringQueryParams */ - StringQuery: string; -} -export interface Response$getIncludeLocalReference$Status$200 { - "application/json": { - meta: string; - }; -} -export interface Parameter$getIncludeRemoteReference { - /** remote reference parameter */ - IncludeRemoteReference: number; -} -export interface RequestBody$getIncludeRemoteReference { - "application/json": string; -} -export interface Parameter$getFullRemoteReference { - /** Full Remote Reference */ - FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; -} -export interface Response$getFullRemoteReference$Status$200 { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; -} -export interface Response$i$have$dot$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Response$getReferenceItems$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Parameter$searchBook { - "from.publishedAt"?: number; - "book.name": string; -} -export interface Response$searchBook$Status$200 { - "application/json": { - id?: number; - bookTitle?: string; - }; -} -export interface Parameter$getBookById { - /** Book ID */ - id: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.ObjectHasPropertiesType; -} -export interface Parameter$deleteBook { - /** Number Book ID */ - id: number; -} -export interface Response$deleteBook$Status$200 { - "application/json": { - status?: "ok"; - }; -} -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export class Client { - private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } - /** - * operationId: getIncludeLocalReference - * Request URI: /get/IncludeLocalReference - */ - public async getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - /** - * operationId: getIncludeRemoteReference - * Request URI: /get/IncludeRemoteReference - */ - public async getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - } - /** - * operationId: getFullRemoteReference - * Request URI: /FullRemoteReference - */ - public async getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Promise { - const url = this.baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - /** - * operationId: i.have.dot - * Request URI: /i/have/dot - */ - public async i$have$dot(option?: RequestOption): Promise { - const url = this.baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - /** - * operationId: getReferenceItems - * Request URI: /get/reference/items - */ - public async getReferenceItems(option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - /** - * operationId: searchBook - * Request URI: /get/search/{book.name} - */ - public async searchBook(params: Params$searchBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - /** - * operationId: getBookById - * Request URI: /get/books/{id} - */ - public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - /** - * operationId: deleteBook - * Request URI: /get/books/{id} - */ - public async deleteBook(params: Params$deleteBook, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return this.apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } -} -" -`; - -exports[`Split Code > types 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -582,5 +294,242 @@ export namespace RequestBodies { } } } -" -`; +export interface Parameter$getIncludeLocalReference { + /** parameters.StringQueryParams */ + StringQuery: string; +} +export interface Response$getIncludeLocalReference$Status$200 { + "application/json": { + meta: string; + }; +} +export interface Parameter$getIncludeRemoteReference { + /** remote reference parameter */ + IncludeRemoteReference: number; +} +export interface RequestBody$getIncludeRemoteReference { + "application/json": string; +} +export interface Parameter$getFullRemoteReference { + /** Full Remote Reference */ + FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; +} +export interface Response$getFullRemoteReference$Status$200 { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; +} +export interface Response$i$have$dot$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Response$getReferenceItems$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Parameter$searchBook { + "from.publishedAt"?: number; + "book.name": string; +} +export interface Response$searchBook$Status$200 { + "application/json": { + id?: number; + bookTitle?: string; + }; +} +export interface Parameter$getBookById { + /** Book ID */ + id: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.ObjectHasPropertiesType; +} +export interface Parameter$deleteBook { + /** Number Book ID */ + id: number; +} +export interface Response$deleteBook$Status$200 { + "application/json": { + status?: "ok"; + }; +} +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + public async getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + public async getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Promise { + const url = this.baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async i$have$dot(option?: RequestOption): Promise { + const url = this.baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getReferenceItems(option?: RequestOption): Promise { + const url = this.baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async searchBook(params: Params$searchBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async deleteBook(params: Params$deleteBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts b/test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts new file mode 100644 index 00000000..de5ec0e6 --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts @@ -0,0 +1,127 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export type Message = "hello" | "world"; + export type QueryParams = "a" | "b" | "c"; + export interface ReadOnlyParams { + readonly readonlyPropertyKey?: string; + } +} +export interface Parameter$getHelloWorld { + /** query word */ + word: Schemas.QueryParams; +} +export interface Response$getHelloWorld$Status$200 { + "application/json": { + message?: Schemas.Message; + }; +} +export interface RequestBody$postHelloWorldReadonly { +} +export interface Response$postHelloWorldReadonly$Status$200 { + "application/json": { + message?: Schemas.Message; + }; +} +export interface Response$get$undefined$operation$$id$Status$200 { + "application/json": { + /** Undefined operation response */ + message?: string; + }; +} +export type ResponseContentType$getHelloWorld = keyof Response$getHelloWorld$Status$200; +export interface Params$getHelloWorld { + parameter: Parameter$getHelloWorld; +} +export type RequestContentType$postHelloWorldReadonly = keyof RequestBody$postHelloWorldReadonly; +export type ResponseContentType$postHelloWorldReadonly = keyof Response$postHelloWorldReadonly$Status$200; +export interface Params$postHelloWorldReadonly { + requestBody: RequestBody$postHelloWorldReadonly["application/json"]; +} +export type ResponseContentType$get$undefined$operation$$id = keyof Response$get$undefined$operation$$id$Status$200; +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getHelloWorld$Status$200 | Response$postHelloWorldReadonly$Status$200 | Response$get$undefined$operation$$id$Status$200; +export namespace ErrorResponse { + export type getHelloWorld = void; + export type postHelloWorldReadonly = void; + export type get$undefined$operation$$id = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + public async getHelloWorld(params: Params$getHelloWorld, option?: RequestOption): Promise { + const url = this.baseUrl + `/hello/world`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + word: { value: params.parameter.word, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async postHelloWorldReadonly(params: Params$postHelloWorldReadonly, option?: RequestOption): Promise { + const url = this.baseUrl + `/hello/world/readonly`; + const headers = { + "Content-Type": "application/json", + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody + }, option); + } + public async get$undefined$operation$$id(option?: RequestOption): Promise { + const url = this.baseUrl + `/undefined/operation/:id`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts b/test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts new file mode 100644 index 00000000..2223fda9 --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts @@ -0,0 +1,68 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export type InferArrayEmptyItems = {}[]; + export type InferArrayType = string[]; + export interface InferObjectItem { + description: any; + } + export interface InferObjectHasAnyProp { + filed?: any; + } + export interface InferObject { + filed?: string; + } + export type InferStringEnum = "a" | "b" | "c"; + export type InferAnyNullable = null; + export interface OptionalPropertiesAndAdditionalProperties { + body?: { + key?: string; + description?: string; + } & { + [key: string]: string; + }; + } +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = void; +export namespace ErrorResponse { } +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } +} diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts b/test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts new file mode 100644 index 00000000..65df7690 --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts @@ -0,0 +1,153 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// + + +export interface Parameter$getItemById { + id: string; +} +export interface Response$getItemById$Status$200 { + "application/json": { + id?: string; + name?: string; + }; +} +export interface Parameter$getNodeProxyWithPath { + path: string; + name: string; +} +export interface Response$getNodeProxyWithPath$Status$200 { + "application/json": string; +} +export interface Parameter$headNodeProxyWithPath { + path: string; + name: string; +} +export interface Parameter$getUserPost { + include?: string; + userId: string; + postId: number; +} +export interface Response$getUserPost$Status$200 { + "application/json": { + userId?: string; + postId?: number; + }; +} +export type ResponseContentType$getItemById = keyof Response$getItemById$Status$200; +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; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +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 { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + /** required フィールドを省略したパスパラメータ */ + public async getItemById(params: Params$getItemById, option?: RequestOption): Promise { + const url = this.baseUrl + `/items/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + 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)}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + include: { value: params.parameter.include, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/ref-access.ts b/test/__tests__/class/__snapshots__/typedef-with-template/ref-access.ts new file mode 100644 index 00000000..6b96e7f2 --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-with-template/ref-access.ts @@ -0,0 +1,277 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export interface Book { + author?: { + name?: string; + age?: string; + }; + publisher?: { + name?: any; + address?: string; + }; + metadata: { + description: string; + }; + } + export type Author = { + name?: string; + age?: string; + }; + export type Publisher = { + name?: any; + address?: string; + }; +} +export interface Parameter$getBook { + /** Book ID */ + id: string; +} +export interface Response$getBook$Status$200 { + "application/json": Schemas.Book; +} +export interface Parameter$getDescription { + /** Book ID */ + id: string; +} +export interface Response$getDescription$Status$200 { + "application/json": string; +} +export interface Parameter$getAuthor { + /** Author Id */ + id: string; +} +export interface Response$getAuthor$Status$200 { + "application/json": { + name?: string; + age?: string; + }; +} +export interface Parameter$getPublisher { + /** Publisher ID */ + id: string; +} +export interface Response$getPublisher$Status$200 { + "application/json": Schemas.Publisher; +} +export interface RequestBody$createPublisher { + "application/x-www-form-urlencoded": { + color?: string[]; + }; +} +export interface Response$createPublisher$Status$200 { + "application/json": { + status?: string; + }; +} +export interface RequestBody$createPublisherV2 { + "application/x-www-form-urlencoded": { + color?: string[]; + }; + "application/json": { + color?: string[]; + }; +} +export interface Response$createPublisherV2$Status$200 { + "application/json": { + status?: string; + }; +} +export interface Parameter$getBookById { + /** Author ID */ + authorId: string; + /** Book ID */ + bookId: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.Book; +} +export type ResponseContentType$getBook = keyof Response$getBook$Status$200; +export interface Params$getBook { + parameter: Parameter$getBook; +} +export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; +export interface Params$getDescription { + parameter: Parameter$getDescription; +} +export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; +export interface Params$getAuthor { + parameter: Parameter$getAuthor; +} +export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; +export interface Params$getPublisher { + parameter: Parameter$getPublisher; +} +export type RequestContentType$createPublisher = keyof RequestBody$createPublisher; +export type ResponseContentType$createPublisher = keyof Response$createPublisher$Status$200; +export interface Params$createPublisher { + requestBody: RequestBody$createPublisher["application/x-www-form-urlencoded"]; +} +export type RequestContentType$createPublisherV2 = keyof RequestBody$createPublisherV2; +export type ResponseContentType$createPublisherV2 = keyof Response$createPublisherV2$Status$200; +export interface Params$createPublisherV2 { + headers: { + "Content-Type": T; + }; + requestBody: RequestBody$createPublisherV2[T]; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200 | Response$createPublisher$Status$200 | Response$createPublisherV2$Status$200 | Response$getBookById$Status$200; +export namespace ErrorResponse { + export type getBook = void; + export type getDescription = void; + export type getAuthor = void; + export type getPublisher = void; + export type createPublisher = void; + export type createPublisherV2 = void; + export type getBookById = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + public async getBook(params: Params$getBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getDescription(params: Params$getDescription, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}/description`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getAuthor(params: Params$getAuthor, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/author/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getPublisher(params: Params$getPublisher, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/publisher/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async createPublisher(params: Params$createPublisher, option?: RequestOption): Promise { + const url = this.baseUrl + `/create/publisher/{id}`; + const headers = { + "Content-Type": "application/x-www-form-urlencoded", + Accept: "application/json" + }; + const requestEncodings: Record> = { + "application/x-www-form-urlencoded": { + "color": { + "style": "form", + "explode": false + } + } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + requestBodyEncoding: requestEncodings["application/x-www-form-urlencoded"] + }, option); + } + public async createPublisherV2(params: Params$createPublisherV2, option?: RequestOption): Promise { + const url = this.baseUrl + `/create/v2/publisher/{id}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: "application/json" + }; + const requestEncodings: Record> = { + "application/x-www-form-urlencoded": { + "color": { + "style": "form", + "explode": false + } + }, + "application/json": { + "color": { + "style": "form", + "explode": false + } + } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + requestBodyEncoding: requestEncodings[params.headers["Content-Type"]] + }, option); + } + public async getBookById(params: Params$getBookById, option?: RequestOption): Promise { + const url = this.baseUrl + `/author/author-${encodeURIComponent(params.parameter.authorId)}.a.${encodeURIComponent(params.parameter.bookId)}.b/book/${encodeURIComponent(params.parameter.bookId)}.json`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts b/test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts new file mode 100644 index 00000000..67939634 --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts @@ -0,0 +1,172 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export interface Book { + author?: { + name?: string; + age?: string; + }; + publisher?: { + name?: any; + address?: string; + }; + metadata: { + description: string; + }; + } + export namespace Book { + export namespace properties { + export interface author { + name?: string; + age?: string; + } + export interface publisher { + name?: any; + address?: string; + } + export namespace metadata { + export namespace properties { + export type description = string; + } + } + } + } + export type Author = Schemas.Book.properties.author; + export type Publisher = Schemas.Book.properties.publisher; +} +export interface Parameter$getBook { + /** Book ID */ + id: string; +} +export interface Response$getBook$Status$200 { + "application/json": Schemas.Book; +} +export interface Parameter$getDescription { + /** Book ID */ + id: string; +} +export interface Response$getDescription$Status$200 { + "application/json": Schemas.Book.properties.metadata.properties.description; +} +export interface Parameter$getAuthor { + /** Author Id */ + id: string; +} +export interface Response$getAuthor$Status$200 { + "application/json": Schemas.Author; +} +export interface Parameter$getPublisher { + /** Publisher ID */ + id: string; +} +export interface Response$getPublisher$Status$200 { + "application/json": Schemas.Publisher; +} +export type ResponseContentType$getBook = keyof Response$getBook$Status$200; +export interface Params$getBook { + parameter: Parameter$getBook; +} +export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; +export interface Params$getDescription { + parameter: Parameter$getDescription; +} +export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; +export interface Params$getAuthor { + parameter: Parameter$getAuthor; +} +export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; +export interface Params$getPublisher { + parameter: Parameter$getPublisher; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200; +export namespace ErrorResponse { + export type getBook = void; + export type getDescription = void; + export type getAuthor = void; + export type getPublisher = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + public async getBook(params: Params$getBook, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getDescription(params: Params$getDescription, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}/description`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getAuthor(params: Params$getAuthor, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/author/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async getPublisher(params: Params$getPublisher, option?: RequestOption): Promise { + const url = this.baseUrl + `/get/publisher/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts b/test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts new file mode 100644 index 00000000..bff0aa1c --- /dev/null +++ b/test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts @@ -0,0 +1,535 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + /** String Literal */ + export type StringType = string; + export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; + export type StringDateType = string; + export type StringDateTimeType = string; + export type StringPasswordType = string; + export type StringByteType = string; + export type StringBinaryType = string; + export type StringWithPatternType = string; + /** Number Literal */ + export type NumberType = number; + export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; + export type NumberInt32Type = number; + export type NumberInt64Type = number; + export type NumberFloat = number; + export type NumberDouble = number; + /** Boolean Literal */ + export type BooleanType = boolean; + export type BooleanEnumType = true; + export type BooleanEnumType2 = false; + export type BooleanEnumType3 = true | false; + export type ArrayStringType = string[]; + export type ArrayNumberType = number[]; + export type ArrayBooleanType = boolean[]; + export interface ObjectEmptyPropertiesType { + } + export interface ObjectHasPropertiesType { + stringType?: string; + numberType?: number; + booleanType?: boolean; + arrayType?: string; + objectType?: { + requiredStringType: string; + }; + } + export type OneOfType = string | number | {}; + export type AllOfType = { + A?: string; + } & { + B?: string; + }; + export type LocalRefStringType = Schemas.StringType; + export type LocalRefNumberType = Schemas.NumberType; + export type LocalRefBooleanType = Schemas.BooleanType; + export type LocalRefArrayStringType = Schemas.BooleanType; + export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; + export interface LocalRefObjectProperties { + stringType: Schemas.StringType; + numberType: Schemas.NumberType; + booleanType: Schemas.BooleanType; + arrayType: Schemas.BooleanType; + objectType: Schemas.ObjectHasPropertiesType; + } + export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; + export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; + export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; + export type UnresolvedTarget1 = boolean; + export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; + export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; + export type UnresolvedTarget3 = number; + export interface LocalReferenceBeforeResolvedSchema3 { + unresolvedTarget4?: Schemas.UnresolvedTarget4; + } + export interface UnresolvedTarget4 { + unresolvedTarget5?: Schemas.UnresolvedTarget5; + } + export type UnresolvedTarget5 = string; + export type RemoteString = string; + export type RemoteRefString = Schemas.RemoteString; + export namespace Level1 { + /** Level 1 */ + export type RemoteBoolean = boolean; + export namespace Level2 { + /** Level 2 */ + export type RemoteNumber = number; + export namespace Level3 { + /** Level 3 */ + export type RemoteArray = string[]; + export namespace Level4 { + /** Level 4 */ + export interface RemoteObject { + A?: string; + B?: number; + } + } + } + } + } + /** Level 1 */ + export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; + /** Level 2 */ + export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; + /** Level 3 */ + export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; + /** Level 4 */ + export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; + export type NullableString = string | null; + export type NullableBoolean = boolean | null; + export type NullableNumber = number | null; + export type NullableArray = string[] | null; + export type NullableObject = { + gt?: string; + } | null; + export namespace DirectRef { + export type ForHeader = string; + export interface ForResponse { + forResponse?: string; + } + export type ForParameters = string; + export interface ForRequestBody { + a?: string; + } + } + export namespace FullRemoteReference { + export type ForParameters = string; + } + export interface Child { + id: string; + /** child name */ + name: string; + } + export interface Item { + name: string; + children: Child[]; + } +} +export namespace Headers { + export type StringHeader = string; + export type A = number; + export namespace Level1 { + export type B = string; + } + export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; +} +export namespace Responses { + /** + * Status Code 100 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 + */ + export namespace Continue { } + /** + * Status Code 101 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 + */ + export namespace SwitchingProtocol { } + /** Type Reference - string */ + export namespace LocalReferenceStringDateTimeType { + export interface Content { + "application/json": Schemas.StringDateTimeType; + } + } + /** Local Reference - object */ + export namespace LocalReferenceObjectType { + export interface Content { + "application/json": Schemas.ObjectHasPropertiesType; + } + } + /** Response -> Schema */ + export namespace ReferenceOfResponseToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForResponse; + } + } + /** response A definition */ + export namespace ResponseA { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + export namespace Level1 { + /** response B definition */ + export namespace ResponseB { + export interface Content { + "application/json": { + name?: "responseB"; + }; + } + } + export namespace Level2 { + /** response C definition */ + export namespace ResponseC { + export interface Content { + "application/json": { + name?: "responseC"; + }; + } + } + } + } + export namespace ForPathItems { + /** response A definition */ + export namespace FullRemoteReference { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + } +} +export namespace Parameters { + /** parameters.StringQueryParams */ + export type StringQueryParams = string; + /** parameters.NumberQueryParams */ + export type NumberQueryParams = number; + /** parameters.StringQueryParams */ + export type StringHeaderParams = string; + export type A = number; + export type RemoteReferenceA = Parameters.A; + export namespace level1 { + export type B = string; + } + export type RemoteReferenceB = Parameters.level1.B; + /** parameters -> schemas */ + export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; + /** deepObject */ + export type DeepObjectParameter = { + [key: string]: { + gt?: string; + gte?: string; + lt?: string; + lte?: string; + any?: string | number | boolean; + }; + }; +} +export namespace RequestBodies { + /** Request body string type */ + export namespace StringType { + export interface Content { + "application/json": string; + } + } + /** Request body Local reference string type */ + export namespace LocalReferenceStringType { + export interface Content { + "application/json": Schemas.StringHasEnumType; + } + } + /** requestBodies -> schemas */ + export namespace ReferenceOfRequestBodyToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForRequestBody; + } + } + /** Remote Request body A */ + export namespace RequestBodyA { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level1 { + /** Remote Request body B */ + export namespace RequestBodyB { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level2 { + /** Remote Request body C */ + export namespace RequestBodyC { + export interface Content { + "application/json": { + body?: string; + }; + } + } + } + } +} +export interface Parameter$getIncludeLocalReference { + /** parameters.StringQueryParams */ + StringQuery: string; +} +export interface Response$getIncludeLocalReference$Status$200 { + "application/json": { + meta: string; + }; +} +export interface Parameter$getIncludeRemoteReference { + /** remote reference parameter */ + IncludeRemoteReference: number; +} +export interface RequestBody$getIncludeRemoteReference { + "application/json": string; +} +export interface Parameter$getFullRemoteReference { + /** Full Remote Reference */ + FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; +} +export interface Response$getFullRemoteReference$Status$200 { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; +} +export interface Response$i$have$dot$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Response$getReferenceItems$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Parameter$searchBook { + "from.publishedAt"?: number; + "book.name": string; +} +export interface Response$searchBook$Status$200 { + "application/json": { + id?: number; + bookTitle?: string; + }; +} +export interface Parameter$getBookById { + /** Book ID */ + id: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.ObjectHasPropertiesType; +} +export interface Parameter$deleteBook { + /** Number Book ID */ + id: number; +} +export interface Response$deleteBook$Status$200 { + "application/json": { + status?: "ok"; + }; +} +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => T; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + public getIncludeLocalReference(params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] { + const url = this.baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public getIncludeRemoteReference(params: Params$getIncludeRemoteReference, option?: RequestOption): void { + const url = this.baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + public getFullRemoteReference(params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] { + const url = this.baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public i$have$dot(option?: RequestOption): Response$i$have$dot$Status$200["application/json"] { + const url = this.baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public getReferenceItems(option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] { + const url = this.baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public searchBook(params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] { + const url = this.baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public getBookById(params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public deleteBook(params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] { + const url = this.baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/__snapshots__/unknown-schema-domain-test.ts.snap b/test/__tests__/class/__snapshots__/unknown.schema.domain/client.ts similarity index 88% rename from test/__tests__/class/__snapshots__/unknown-schema-domain-test.ts.snap rename to test/__tests__/class/__snapshots__/unknown.schema.domain/client.ts index ac1e831b..b9086eaa 100644 --- a/test/__tests__/class/__snapshots__/unknown-schema-domain-test.ts.snap +++ b/test/__tests__/class/__snapshots__/unknown.schema.domain/client.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Unknown > client.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -61,9 +58,9 @@ export interface ApiClient { } export class Client { private baseUrl: string; - constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\\/$/, ""); } + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } public async getUnknown(params: Params$getUnknown, option?: RequestOption): Promise { - const url = this.baseUrl + \`/get/unknown\`; + const url = this.baseUrl + `/get/unknown`; const headers = { Accept: "application/json" }; @@ -74,5 +71,3 @@ export class Client { }, option); } } -" -`; diff --git a/test/__tests__/class/argo-rollout-test.ts b/test/__tests__/class/argo-rollout-test.ts index f9286239..e2520df0 100644 --- a/test/__tests__/class/argo-rollout-test.ts +++ b/test/__tests__/class/argo-rollout-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Argo Rollout", () => { - test("client.ts", () => { + test("client.ts", async () => { const generateCode = fs.readFileSync("test/code/class/argo-rollout/client.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/argo-rollout/client.ts"); }); }); diff --git a/test/__tests__/class/cloudflare-test.ts b/test/__tests__/class/cloudflare-test.ts index ecf8a5ce..a29d4817 100644 --- a/test/__tests__/class/cloudflare-test.ts +++ b/test/__tests__/class/cloudflare-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Unknown", () => { - test("client.ts", () => { + test("client.ts", async () => { const generateCode = fs.readFileSync("test/code/class/cloudflare/client.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/cloudflare/client.ts"); }); }); diff --git a/test/__tests__/class/format.domain.ts b/test/__tests__/class/format.domain.ts index 6d8866b7..566c6ec8 100644 --- a/test/__tests__/class/format.domain.ts +++ b/test/__tests__/class/format.domain.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Format Types", () => { - test("format.domain", () => { + test("format.domain", async () => { const generateCode = fs.readFileSync("test/code/class/format.domain/code.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/format.domain/code.ts"); }); }); diff --git a/test/__tests__/class/kubernetes-test.ts b/test/__tests__/class/kubernetes-test.ts index f342e494..73d547f4 100644 --- a/test/__tests__/class/kubernetes-test.ts +++ b/test/__tests__/class/kubernetes-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Kubernetes", () => { - test("client-v1.18.5.ts", () => { + test("client-v1.18.5.ts", async () => { const generateCode = fs.readFileSync("test/code/class/kubernetes/client-v1.18.5.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/kubernetes/client-v1.18.5.ts"); }); }); diff --git a/test/__tests__/class/multi-type.test.domain.ts b/test/__tests__/class/multi-type.test.domain.ts index cfdf9499..80ee1bae 100644 --- a/test/__tests__/class/multi-type.test.domain.ts +++ b/test/__tests__/class/multi-type.test.domain.ts @@ -4,15 +4,15 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Multi Type", () => { - test("types", () => { + test("types", async () => { const generateCode = fs.readFileSync("test/code/class/mulit-type-test.domain/types.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/mulit-type-test.domain/types.ts"); }); - test("apiClient", () => { + test("apiClient", async () => { const generateCode = fs.readFileSync("test/code/class/mulit-type-test.domain/apiClient.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/mulit-type-test.domain/apiClient.ts"); }); }); diff --git a/test/__tests__/class/parameter-test.ts b/test/__tests__/class/parameter-test.ts index 0db4cd4f..05334f1e 100644 --- a/test/__tests__/class/parameter-test.ts +++ b/test/__tests__/class/parameter-test.ts @@ -4,19 +4,19 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Parameter", () => { - test("api.test.domain", () => { + test("api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/class/parameter/api.test.domain.json", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/parameter/api.test.domain.json"); }); - test("infer.domain", () => { + test("infer.domain", async () => { const generateCode = fs.readFileSync("test/code/class/parameter/infer.domain.json", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/parameter/infer.domain.json"); }); - test("required フィールドを省略したパスパラメータは pickedParameters で required: true として扱われること", () => { + test("required フィールドを省略したパスパラメータは pickedParameters で required: true として扱われること", async () => { const generateCode = fs.readFileSync("test/code/class/parameter/path-parameter.json", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/parameter/path-parameter.json"); }); }); diff --git a/test/__tests__/class/spit-code-test.ts b/test/__tests__/class/spit-code-test.ts index 3a7dfeef..1f12b75d 100644 --- a/test/__tests__/class/spit-code-test.ts +++ b/test/__tests__/class/spit-code-test.ts @@ -4,15 +4,15 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Split Code", () => { - test("types", () => { + test("types", async () => { const generateCode = fs.readFileSync("test/code/class/split/types.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/split/types.ts"); }); - test("apiClient", () => { + test("apiClient", async () => { const generateCode = fs.readFileSync("test/code/class/split/apiClient.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/split/apiClient.ts"); }); }); diff --git a/test/__tests__/class/template-only-test.ts b/test/__tests__/class/template-only-test.ts index 2a9417e5..3cea0942 100644 --- a/test/__tests__/class/template-only-test.ts +++ b/test/__tests__/class/template-only-test.ts @@ -4,19 +4,19 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Template Only", () => { - test("api.test.domain", () => { + test("api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/class/template-only/api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/template-only/api.test.domain.ts"); }); - test("async-api.test.domain", () => { + test("async-api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/class/template-only/sync-api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/template-only/sync-api.test.domain.ts"); }); - test("infer.domain", () => { + test("infer.domain", async () => { const generateCode = fs.readFileSync("test/code/class/template-only/infer.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/template-only/infer.domain.ts"); }); }); diff --git a/test/__tests__/class/typedef-only-test.ts b/test/__tests__/class/typedef-only-test.ts index d87104a6..c5988d62 100644 --- a/test/__tests__/class/typedef-only-test.ts +++ b/test/__tests__/class/typedef-only-test.ts @@ -4,19 +4,19 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Typedef only", () => { - test("typedef-api.test.domain", () => { + test("typedef-api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-only/api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-only/api.test.domain.ts"); }); - test("typedef-infer.domain", () => { + test("typedef-infer.domain", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-only/infer.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-only/infer.domain.ts"); }); - test("Reference test that include nested properties", () => { + test("Reference test that include nested properties", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-only/json.properties.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-only/json.properties.ts"); }); }); diff --git a/test/__tests__/class/typedef-with-template-test.ts b/test/__tests__/class/typedef-with-template-test.ts index 73c9c2df..8d4220a2 100644 --- a/test/__tests__/class/typedef-with-template-test.ts +++ b/test/__tests__/class/typedef-with-template-test.ts @@ -4,41 +4,41 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Typedef with template", () => { - test("required フィールドを省略したパスパラメータは必須の型として生成されること", () => { + test("required フィールドを省略したパスパラメータは必須の型として生成されること", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-with-template/path-parameter.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/path-parameter.ts"); }); - test("api.test.domain", () => { + test("api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-with-template/api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/api.test.domain.ts"); }); - test("api.v2.domain", () => { + test("api.v2.domain", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-with-template/api.v2.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/api.v2.domain.ts"); }); - test("async-api.test.domain", () => { + test("async-api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-with-template/sync-api.test.domain.ts", { encoding: "utf-8", }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/sync-api.test.domain.ts"); }); - test("infer.domain", () => { + test("infer.domain", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-with-template/infer.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/infer.domain.ts"); }); - test("ref-access", () => { + test("ref-access", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-with-template/ref-access.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/ref-access.ts"); }); - test("remote-ref-access", () => { + test("remote-ref-access", async () => { const generateCode = fs.readFileSync("test/code/class/typedef-with-template/remote-ref-access.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/remote-ref-access.ts"); }); }); diff --git a/test/__tests__/class/unknown-schema-domain-test.ts b/test/__tests__/class/unknown-schema-domain-test.ts index ebe02dfd..4dfe1272 100644 --- a/test/__tests__/class/unknown-schema-domain-test.ts +++ b/test/__tests__/class/unknown-schema-domain-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Unknown", () => { - test("client.ts", () => { + test("client.ts", async () => { const generateCode = fs.readFileSync("test/code/class/unknown.schema.domain/client.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/unknown.schema.domain/client.ts"); }); }); diff --git a/test/__tests__/currying-functional/__snapshots__/coudflare-test.ts.snap b/test/__tests__/currying-functional/__snapshots__/cloudflare/client.ts similarity index 94% rename from test/__tests__/currying-functional/__snapshots__/coudflare-test.ts.snap rename to test/__tests__/currying-functional/__snapshots__/cloudflare/client.ts index 84201614..e36a4899 100644 --- a/test/__tests__/currying-functional/__snapshots__/coudflare-test.ts.snap +++ b/test/__tests__/currying-functional/__snapshots__/cloudflare/client.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Unknown > client.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.3 // @@ -878,16 +875,16 @@ export namespace Schemas { code: number; message: string; }[]; - /** The maximum number of bytes to capture. This field only applies to \`full\` packet captures. */ + /** The maximum number of bytes to capture. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_byte_limit = number; export type SxDaNi5K_pcaps_collection_response = Schemas.SxDaNi5K_api$response$collection & { result?: (Schemas.SxDaNi5K_pcaps_response_simple | Schemas.SxDaNi5K_pcaps_response_full)[]; }; - /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to \`full\` packet captures. */ + /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_colo_name = string; - /** The full URI for the bucket. This field only applies to \`full\` packet captures. */ + /** The full URI for the bucket. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_destination_conf = string; - /** An error message that describes why the packet capture failed. This field only applies to \`full\` packet captures. */ + /** An error message that describes why the packet capture failed. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_error_message = string; /** The packet capture filter. When this field is empty, all packets are captured. */ export interface SxDaNi5K_pcaps_filter_v1 { @@ -984,7 +981,7 @@ export namespace Schemas { export type SxDaNi5K_pcaps_system = "magic-transit"; /** The packet capture duration in seconds. */ export type SxDaNi5K_pcaps_time_limit = number; - /** The type of packet capture. \`Simple\` captures sampled packets, and \`full\` captures entire payloads and non-sampled packets. */ + /** The type of packet capture. `Simple` captures sampled packets, and `full` captures entire payloads and non-sampled packets. */ export type SxDaNi5K_pcaps_type = "simple" | "full"; export interface SxDaNi5K_result_info { /** Total number of results for the requested service */ @@ -1479,7 +1476,7 @@ export namespace Schemas { export type access_allow_all_origins = boolean; /** When set to true, users can authenticate via WARP for any application in your organization. Application settings will take precedence over this value. */ export type access_allow_authenticate_via_warp = boolean; - /** When set to \`true\`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ + /** When set to `true`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ export type access_allow_credentials = boolean; /** The result of the authentication event. */ export type access_allowed = boolean; @@ -1573,7 +1570,7 @@ export namespace Schemas { auth_method: string; }; } - /** When set to \`true\`, users skip the identity provider selection step during login. */ + /** When set to `true`, users skip the identity provider selection step during login. */ export type access_auto_redirect_to_identity = boolean; /** * Matches an Azure group. @@ -1678,9 +1675,9 @@ export namespace Schemas { export type access_certificates_components$schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_certificates; }; - /** The Client ID for the service token. Access will check for this value in the \`CF-Access-Client-ID\` request header. */ + /** The Client ID for the service token. Access will check for this value in the `CF-Access-Client-ID` request header. */ export type access_client_id = string; - /** The Client Secret for the service token. Access will check for this value in the \`CF-Access-Client-Secret\` request header. */ + /** The Client Secret for the service token. Access will check for this value in the `CF-Access-Client-Secret` request header. */ export type access_client_secret = string; /** The domain and path that Access will secure. */ export type access_components$schemas$domain = string; @@ -1694,7 +1691,7 @@ export namespace Schemas { export type access_components$schemas$response_collection = Schemas.access_api$response$collection & { result?: Schemas.access_service$tokens[]; }; - /** The amount of time that tokens issued for the application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for the application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_components$schemas$session_duration = string; export type access_components$schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_groups; @@ -1801,7 +1798,7 @@ export namespace Schemas { domain: string; }; } - /** The duration for how long the service token will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. The default is 1 year in hours (8760h). */ + /** The duration for how long the service token will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. The default is 1 year in hours (8760h). */ export type access_duration = string; /** The email address of the authenticating user. */ export type access_email = string; @@ -2308,7 +2305,7 @@ export namespace Schemas { export type access_schemas$apps = (Schemas.access_basic_app_response_props & Schemas.access_schemas$self_hosted_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$saas_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$ssh_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$vnc_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$app_launcher_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$warp_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$biso_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$bookmark_props); /** Audience tag. */ export type access_schemas$aud = string; - /** When set to \`true\`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ + /** When set to `true`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ export type access_schemas$auto_redirect_to_identity = boolean; export type access_schemas$azureAD = Schemas.access_schemas$identity$provider & { config?: Schemas.access_generic$oauth$config & { @@ -2582,7 +2579,7 @@ export namespace Schemas { /** The application type. */ type: string; } - /** The amount of time that tokens issued for this application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for this application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_schemas$session_duration = string; export type access_schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_identity$providers; @@ -2674,7 +2671,7 @@ export namespace Schemas { token_id: string; }; } - /** The amount of time that tokens issued for applications will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for applications will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_session_duration = string; export interface access_settings { /** Request client certificates for this hostname in China. Can only be set to true if this zone is china network enabled. */ @@ -2729,7 +2726,7 @@ export namespace Schemas { export type access_ui_read_only_toggle_reason = string; /** The unique API identifier for the user. */ export type access_uid = any; - /** The amount of time a user seat is inactive before it expires. When the user seat exceeds the set time of inactivity, the user is removed as an active seat and no longer counts against your Teams seat count. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: \`ns\`, \`us\` (or \`µs\`), \`ms\`, \`s\`, \`m\`, \`h\`. */ + /** The amount of time a user seat is inactive before it expires. When the user seat exceeds the set time of inactivity, the user is removed as an active seat and no longer counts against your Teams seat count. Must be in the format `300ms` or `2h45m`. Valid time units are: `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. */ export type access_user_seat_expiration_inactive_time = string; export interface access_users { access_seat?: Schemas.access_schemas$access_seat; @@ -2762,7 +2759,7 @@ export namespace Schemas { /** The application type. */ type?: string; }; - /** The amount of time that tokens issued for applications will be valid. Must be in the format \`30m\` or \`2h45m\`. Valid time units are: m, h. */ + /** The amount of time that tokens issued for applications will be valid. Must be in the format `30m` or `2h45m`. Valid time units are: m, h. */ export type access_warp_auth_session_duration = string; export type access_warp_props = Schemas.access_feature_app_props & { readonly domain?: any; @@ -2937,7 +2934,7 @@ export namespace Schemas { export type addressing_ipv4_cidrs = string[]; /** List of Cloudflare IPv6 CIDR addresses. */ export type addressing_ipv6_cidrs = string[]; - /** List IPv4 and IPv6 CIDRs, only populated if \`?networks=jdcloud\` is used. */ + /** List IPv4 and IPv6 CIDRs, only populated if `?networks=jdcloud` is used. */ export type addressing_jdcloud_cidrs = string[]; /** The type of the membership. */ export type addressing_kind = "zone" | "account"; @@ -3074,7 +3071,7 @@ export namespace Schemas { result?: ({} | null) | (string | null); }; export type api$shield_api$shield = Schemas.api$shield_operation; - /** * \`ML\` - Discovered operation was sourced using ML API Discovery * \`SessionIdentifier\` - Discovered operation was sourced using Session Identifier API Discovery */ + /** * `ML` - Discovered operation was sourced using ML API Discovery * `SessionIdentifier` - Discovered operation was sourced using Session Identifier API Discovery */ export type api$shield_api_discovery_origin = "ML" | "SessionIdentifier"; export interface api$shield_api_discovery_patch_multiple_request { } @@ -3085,15 +3082,15 @@ export namespace Schemas { } /** * State of operation in API Discovery - * * \`review\` - Operation is not saved into API Shield Endpoint Management - * * \`saved\` - Operation is saved into API Shield Endpoint Management - * * \`ignored\` - Operation is marked as ignored + * * `review` - Operation is not saved into API Shield Endpoint Management + * * `saved` - Operation is saved into API Shield Endpoint Management + * * `ignored` - Operation is marked as ignored */ export type api$shield_api_discovery_state = "review" | "saved" | "ignored"; /** * Mark state of operation in API Discovery - * * \`review\` - Mark operation as for review - * * \`ignored\` - Mark operation as ignored + * * `review` - Mark operation as for review + * * `ignored` - Mark operation as ignored */ export type api$shield_api_discovery_state_patch = "review" | "ignored"; /** The total number of auth-ids seen across this calculation. */ @@ -3179,10 +3176,10 @@ export namespace Schemas { /** * When set, this applies a mitigation action to this operation * - * - \`log\` log request when request does not conform to schema for this operation - * - \`block\` deny access to the site when request does not conform to schema for this operation - * - \`none\` will skip mitigation for this operation - * - \`null\` indicates that no operation level mitigation is in place, see Zone Level Schema Validation Settings for mitigation action that will be applied + * - `log` log request when request does not conform to schema for this operation + * - `block` deny access to the site when request does not conform to schema for this operation + * - `none` will skip mitigation for this operation + * - `null` indicates that no operation level mitigation is in place, see Zone Level Schema Validation Settings for mitigation action that will be applied */ export type api$shield_operation_mitigation_action = string | null; export interface api$shield_operation_schema_validation_settings { @@ -3305,22 +3302,22 @@ export namespace Schemas { * * Mitigation actions are as follows: * - * * \`log\` - log request when request does not conform to schema - * * \`block\` - deny access to the site when request does not conform to schema + * * `log` - log request when request does not conform to schema + * * `block` - deny access to the site when request does not conform to schema * - * A special value of of \`none\` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation + * A special value of of `none` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation */ export type api$shield_validation_default_mitigation_action = "none" | "log" | "block"; /** * The default mitigation action used when there is no mitigation action defined on the operation * Mitigation actions are as follows: * - * * \`log\` - log request when request does not conform to schema - * * \`block\` - deny access to the site when request does not conform to schema + * * `log` - log request when request does not conform to schema + * * `block` - deny access to the site when request does not conform to schema * - * A special value of of \`none\` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation + * A special value of of `none` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation * - * \`null\` will have no effect. + * `null` will have no effect. */ export type api$shield_validation_default_mitigation_action_patch = string | null; /** Flag whether schema is enabled for validation. */ @@ -3328,27 +3325,27 @@ export namespace Schemas { /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request - * - \`null\` indicates that no override is in place + * - `none` will skip running schema validation entirely for the request + * - `null` indicates that no override is in place */ export type api$shield_validation_override_mitigation_action = string | null; /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request + * - `none` will skip running schema validation entirely for the request * - * To clear any override, use the special value \`disable_override\` + * To clear any override, use the special value `disable_override` * - * \`null\` will have no effect. + * `null` will have no effect. */ export type api$shield_validation_override_mitigation_action_patch = string | null; /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request - * - \`null\` indicates that no override is in place + * - `none` will skip running schema validation entirely for the request + * - `null` indicates that no override is in place * - * To clear any override, use the special value \`disable_override\` or \`null\` + * To clear any override, use the special value `disable_override` or `null` */ export type api$shield_validation_override_mitigation_action_write = string | null; export interface api$shield_zone_schema_validation_settings { @@ -4064,7 +4061,7 @@ export namespace Schemas { /** Total number of requests served from the origin. */ uncached?: number; } - /** When \`?sample=\` is provided, a sample of matching records is returned. If \`sample=0.1\` then 10% of records will be returned. Sampling is random: repeated calls will not only return different records, but likely will also vary slightly in number of returned records. When \`?count=\` is also specified, \`count\` is applied to the number of returned records, not the sampled records. So, with \`sample=0.05\` and \`count=7\`, when there is a total of 100 records available, approximately five will be returned. When there are 1000 records, seven will be returned. When there are 10,000 records, seven will be returned. */ + /** When `?sample=` is provided, a sample of matching records is returned. If `sample=0.1` then 10% of records will be returned. Sampling is random: repeated calls will not only return different records, but likely will also vary slightly in number of returned records. When `?count=` is also specified, `count` is applied to the number of returned records, not the sampled records. So, with `sample=0.05` and `count=7`, when there is a total of 100 records available, approximately five will be returned. When there are 1000 records, seven will be returned. When there are 10,000 records, seven will be returned. */ export type dFBpZBFx_sample = number; export type dFBpZBFx_since = string | number; /** Breakdown of totals for threats. */ @@ -4094,7 +4091,7 @@ export namespace Schemas { threats?: Schemas.dFBpZBFx_threats; until?: Schemas.dFBpZBFx_until; }[]; - /** By default, timestamps in responses are returned as Unix nanosecond integers. The \`?timestamps=\` argument can be set to change the format in which response timestamps are returned. Possible values are: \`unix\`, \`unixnano\`, \`rfc3339\`. Note that \`unix\` and \`unixnano\` return timestamps as integers; \`rfc3339\` returns timestamps as strings. */ + /** By default, timestamps in responses are returned as Unix nanosecond integers. The `?timestamps=` argument can be set to change the format in which response timestamps are returned. Possible values are: `unix`, `unixnano`, `rfc3339`. Note that `unix` and `unixnano` return timestamps as integers; `rfc3339` returns timestamps as strings. */ export type dFBpZBFx_timestamps = "unix" | "unixnano" | "rfc3339"; /** Breakdown of totals by data type. */ export interface dFBpZBFx_totals { @@ -5311,7 +5308,7 @@ export namespace Schemas { }; /** Identifier */ export type dns$records_identifier = string; - /** Whether to match all search requirements or at least one (any). If set to \`all\`, acts like a logical AND between filters. If set to \`any\`, acts like a logical OR instead. Note that the interaction between tag filters is controlled by the \`tag-match\` parameter instead. */ + /** Whether to match all search requirements or at least one (any). If set to `all`, acts like a logical AND between filters. If set to `any`, acts like a logical OR instead. Note that the interaction between tag filters is controlled by the `tag-match` parameter instead. */ export type dns$records_match = "any" | "all"; export type dns$records_messages = { code: number; @@ -5339,9 +5336,9 @@ export namespace Schemas { /** Total results available without any search parameters */ total_count?: number; } - /** Allows searching in multiple properties of a DNS record simultaneously. This parameter is intended for human users, not automation. Its exact behavior is intentionally left unspecified and is subject to change in the future. This parameter works independently of the \`match\` setting. For automated searches, please use the other available parameters. */ + /** Allows searching in multiple properties of a DNS record simultaneously. This parameter is intended for human users, not automation. Its exact behavior is intentionally left unspecified and is subject to change in the future. This parameter works independently of the `match` setting. For automated searches, please use the other available parameters. */ export type dns$records_search = string; - /** Whether to match all tag search requirements or at least one (any). If set to \`all\`, acts like a logical AND between tag filters. If set to \`any\`, acts like a logical OR instead. Note that the regular \`match\` parameter is still used to combine the resulting condition with other filters that aren't related to tags. */ + /** Whether to match all tag search requirements or at least one (any). If set to `all`, acts like a logical AND between tag filters. If set to `any`, acts like a logical OR instead. Note that the regular `match` parameter is still used to combine the resulting condition with other filters that aren't related to tags. */ export type dns$records_tag_match = "any" | "all"; /** Custom tags for the DNS record. This field has no effect on DNS responses. */ export type dns$records_tags = string[]; @@ -5744,7 +5741,7 @@ export namespace Schemas { success: boolean; } /** - * If bot_fight_mode is set to \`true\`, Cloudflare issues computationally + * If bot_fight_mode is set to `true`, Cloudflare issues computationally * expensive challenges in response to malicious bots (ENT only). */ export type grwMffPV_bot_fight_mode = boolean; @@ -5759,7 +5756,7 @@ export namespace Schemas { /** Identifier */ export type grwMffPV_identifier = string; /** - * If \`invalidate_immediately\` is set to \`false\`, the previous secret will + * If `invalidate_immediately` is set to `false`, the previous secret will * remain valid for two hours. Otherwise, the secret is immediately * invalidated, and requests using it will be rejected. */ @@ -6110,7 +6107,7 @@ export namespace Schemas { export interface images_image_patch_request { /** User modifiable key-value store. Can be used for keeping references to another system of record for managing images. No change if not specified. */ metadata?: {}; - /** Indicates whether the image can be accessed using only its UID. If set to \`true\`, a signed token needs to be generated with a signing key to view the image. Returns a new UID on a change. No change if not specified. */ + /** Indicates whether the image can be accessed using only its UID. If set to `true`, a signed token needs to be generated with a signing key to view the image. Returns a new UID on a change. No change if not specified. */ requireSignedURLs?: boolean; } /** Indicates whether the image can be a accessed only using it's UID. If set to true, a signed token needs to be generated with a signing key to view the image. */ @@ -6303,7 +6300,7 @@ export namespace Schemas { /** Identifier */ export type intel_identifier = string; export type intel_inherited_content_categories = Schemas.intel_categories_with_super_category_ids_example_empty; - /** Domain from which \`inherited_content_categories\` and \`inherited_risk_types\` are inherited, if applicable. */ + /** Domain from which `inherited_content_categories` and `inherited_risk_types` are inherited, if applicable. */ export type intel_inherited_from = string; export type intel_inherited_risk_types = Schemas.intel_categories_with_super_category_ids_example_empty; export type intel_ip = Schemas.intel_ipv4 | Schemas.intel_ipv6; @@ -6324,13 +6321,13 @@ export namespace Schemas { /** Content category IDs to remove. */ content_removes?: any; indicator_type?: "domain" | "ipv4" | "ipv6" | "url"; - /** Provide only if indicator_type is \`ipv4\` or \`ipv6\`. */ + /** Provide only if indicator_type is `ipv4` or `ipv6`. */ ip?: any; /** Security category IDs to add. */ security_adds?: any; /** Security category IDs to remove. */ security_removes?: any; - /** Provide only if indicator_type is \`domain\` or \`url\`. Example if indicator_type is \`domain\`: \`example.com\`. Example if indicator_type is \`url\`: \`https://example.com/news/\`. */ + /** Provide only if indicator_type is `domain` or `url`. Example if indicator_type is `domain`: `example.com`. Example if indicator_type is `url`: `https://example.com/news/`. */ url?: string; } /** Current page within paginated list of results. */ @@ -6656,7 +6653,7 @@ export namespace Schemas { } /** Controls features that modify the routing of requests to pools and origins in response to dynamic conditions, such as during the interval between active health monitoring requests. For example, zero-downtime failover occurs immediately when an origin becomes unavailable due to HTTP 521, 522, or 523 response codes. If there is another healthy origin in the same pool, the request is retried once against this alternate origin. */ export interface legacy$jhs_adaptive_routing { - /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See \`session_affinity_attributes\` for control over when sessions are broken or reassigned. */ + /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See `session_affinity_attributes` for control over when sessions are broken or reassigned. */ failover_across_pools?: boolean; } /** Additional information related to the host name. */ @@ -6743,7 +6740,7 @@ export namespace Schemas { export type legacy$jhs_allow_all_methods = boolean; /** Allows all origins. */ export type legacy$jhs_allow_all_origins = boolean; - /** When set to \`true\`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ + /** When set to `true`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ export type legacy$jhs_allow_credentials = boolean; /** Do not validate the certificate when monitor use HTTPS. This parameter is currently only valid for HTTP and HTTPS monitors. */ export type legacy$jhs_allow_insecure = boolean; @@ -6906,7 +6903,7 @@ export namespace Schemas { result?: Schemas.legacy$jhs_asn_components$schemas$asn; }; export interface legacy$jhs_asn_configuration { - /** The configuration target. You must set the target to \`asn\` when specifying an Autonomous System Number (ASN) in the rule. */ + /** The configuration target. You must set the target to `asn` when specifying an Autonomous System Number (ASN) in the rule. */ target?: "asn"; /** The AS number to match. */ value?: string; @@ -6932,7 +6929,7 @@ export namespace Schemas { export type legacy$jhs_auth_id_tokens = number; /** The amount of time in minutes to reconnect after having been disabled. */ export type legacy$jhs_auto_connect = number; - /** When set to \`true\`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ + /** When set to `true`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ export type legacy$jhs_auto_redirect_to_identity = boolean; /** * Matches an Azure group. @@ -7216,18 +7213,18 @@ export namespace Schemas { /** IP Prefix in Classless Inter-Domain Routing format. */ export type legacy$jhs_cidr = string; export interface legacy$jhs_cidr_configuration { - /** The configuration target. You must set the target to \`ip_range\` when specifying an IP address range in the rule. */ + /** The configuration target. You must set the target to `ip_range` when specifying an IP address range in the rule. */ target?: "ip_range"; - /** The IP address range to match. You can only use prefix lengths \`/16\` and \`/24\` for IPv4 ranges, and prefix lengths \`/32\`, \`/48\`, and \`/64\` for IPv6 ranges. */ + /** The IP address range to match. You can only use prefix lengths `/16` and `/24` for IPv4 ranges, and prefix lengths `/32`, `/48`, and `/64` for IPv6 ranges. */ value?: string; } /** List of IPv4/IPv6 CIDR addresses. */ export type legacy$jhs_cidr_list = string[]; /** City. */ export type legacy$jhs_city = string; - /** The Client ID for the service token. Access will check for this value in the \`CF-Access-Client-ID\` request header. */ + /** The Client ID for the service token. Access will check for this value in the `CF-Access-Client-ID` request header. */ export type legacy$jhs_client_id = string; - /** The Client Secret for the service token. Access will check for this value in the \`CF-Access-Client-Secret\` request header. */ + /** The Client Secret for the service token. Access will check for this value in the `CF-Access-Client-Secret` request header. */ export type legacy$jhs_client_secret = string; /** Whether or not to add Cloudflare Branding for the order. This will add sni.cloudflaressl.com as the Common Name if set true. */ export type legacy$jhs_cloudflare_branding = boolean; @@ -7281,7 +7278,7 @@ export namespace Schemas { } /** The list of add-ons subscribed to. */ export type legacy$jhs_component_values = Schemas.legacy$jhs_component_value[]; - /** The action to apply to a matched request. The \`log\` action is only available on an Enterprise plan. */ + /** The action to apply to a matched request. The `log` action is only available on an Enterprise plan. */ export type legacy$jhs_components$schemas$action = "block" | "challenge" | "js_challenge" | "managed_challenge" | "allow" | "log" | "bypass"; export type legacy$jhs_components$schemas$asn = number; export interface legacy$jhs_components$schemas$base { @@ -7329,9 +7326,9 @@ export namespace Schemas { } /** The configuration object for the current rule. */ export interface legacy$jhs_components$schemas$configuration { - /** The configuration target for this rule. You must set the target to \`ua\` for User Agent Blocking rules. */ + /** The configuration target for this rule. You must set the target to `ua` for User Agent Blocking rules. */ target?: string; - /** The exact user agent string to match. This value will be compared to the received \`User-Agent\` HTTP header value. */ + /** The exact user agent string to match. This value will be compared to the received `User-Agent` HTTP header value. */ value?: string; } /** Shows time of creation. */ @@ -7365,7 +7362,7 @@ export namespace Schemas { export type legacy$jhs_components$schemas$kind = "zone" | "account"; /** The wirefilter expression to match devices. */ export type legacy$jhs_components$schemas$match = string; - /** The state of the rules contained in the rule group. When \`on\`, the rules in the group are configurable/usable. */ + /** The state of the rules contained in the rule group. When `on`, the rules in the group are configurable/usable. */ export type legacy$jhs_components$schemas$mode = "on" | "off"; /** The timestamp of when the rule was last modified. */ export type legacy$jhs_components$schemas$modified_on = Date; @@ -7583,7 +7580,7 @@ export namespace Schemas { }; /** Type of content list entry to block. */ export type legacy$jhs_content_list_entry_type = "cid" | "content_path"; - /** The content type of the body. Must be one of the following: \`text/plain\`, \`text/xml\`, or \`application/json\`. */ + /** The content type of the body. Must be one of the following: `text/plain`, `text/xml`, or `application/json`. */ export type legacy$jhs_content_type = string; export interface legacy$jhs_cors_headers { allow_all_headers?: Schemas.legacy$jhs_allow_all_headers; @@ -7598,7 +7595,7 @@ export namespace Schemas { /** The country in which the user lives. */ export type legacy$jhs_country = string | null; export interface legacy$jhs_country_configuration { - /** The configuration target. You must set the target to \`country\` when specifying a country code in the rule. */ + /** The configuration target. You must set the target to `country` when specifying a country code in the rule. */ target?: "country"; /** The two-letter ISO-3166-1 alpha-2 code to match. For more information, refer to [IP Access rules: Parameters](https://developers.cloudflare.com/waf/tools/ip-access-rules/parameters/#country). */ value?: string; @@ -7834,7 +7831,7 @@ export namespace Schemas { export type legacy$jhs_description = string; /** A string to search for in the description of existing rules. */ export type legacy$jhs_description_search = string; - /** The mode that defines how rules within the package are evaluated during the course of a request. When a package uses anomaly detection mode (\`anomaly\` value), each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined in the WAF package, the action configured in the package will be performed. Traditional detection mode (\`traditional\` value) will decide the action to take when it is triggered by the request. If multiple rules are triggered, the action providing the highest protection will be applied (for example, a 'block' action will win over a 'challenge' action). */ + /** The mode that defines how rules within the package are evaluated during the course of a request. When a package uses anomaly detection mode (`anomaly` value), each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined in the WAF package, the action configured in the package will be performed. Traditional detection mode (`traditional` value) will decide the action to take when it is triggered by the request. If multiple rules are triggered, the action providing the highest protection will be applied (for example, a 'block' action will win over a 'challenge' action). */ export type legacy$jhs_detection_mode = "anomaly" | "traditional"; export interface legacy$jhs_device$managed$networks { config?: Schemas.legacy$jhs_schemas$config_response; @@ -8104,7 +8101,7 @@ export namespace Schemas { export interface legacy$jhs_egs$pagination { /** The page number of paginated results. */ page?: number; - /** The maximum number of results per page. You can only set the value to \`1\` or to a multiple of 5 such as \`5\`, \`10\`, \`15\`, or \`20\`. */ + /** The maximum number of results per page. You can only set the value to `1` or to a multiple of 5 such as `5`, `10`, `15`, or `20`. */ per_page?: number; } export type legacy$jhs_either_profile_response = Schemas.legacy$jhs_api$response$single & { @@ -8343,7 +8340,7 @@ export namespace Schemas { export type legacy$jhs_group_components$schemas$identifier = string; /** The name of the rule group. */ export type legacy$jhs_group_components$schemas$name = string; - /** An object that allows you to enable or disable WAF rule groups for the current WAF override. Each key of this object must be the ID of a WAF rule group, and each value must be a valid WAF action (usually \`default\` or \`disable\`). When creating a new URI-based WAF override, you must provide a \`groups\` object or a \`rules\` object. */ + /** An object that allows you to enable or disable WAF rule groups for the current WAF override. Each key of this object must be the ID of a WAF rule group, and each value must be a valid WAF action (usually `default` or `disable`). When creating a new URI-based WAF override, you must provide a `groups` object or a `rules` object. */ export interface legacy$jhs_groups { } export type legacy$jhs_groups_components$schemas$id_response = Schemas.legacy$jhs_api$response$single & { @@ -8376,7 +8373,7 @@ export namespace Schemas { } /** The name of the response header to match. */ export type legacy$jhs_header_name = string; - /** The operator used when matching: \`eq\` means "equal" and \`ne\` means "not equal". */ + /** The operator used when matching: `eq` means "equal" and `ne` means "not equal". */ export type legacy$jhs_header_op = "eq" | "ne"; /** The value of the response header, which must match exactly. */ export type legacy$jhs_header_value = string; @@ -8537,7 +8534,7 @@ export namespace Schemas { risk_types?: any; } export interface legacy$jhs_ip_configuration { - /** The configuration target. You must set the target to \`ip\` when specifying an IP address in the rule. */ + /** The configuration target. You must set the target to `ip` when specifying an IP address in the rule. */ target?: "ip"; /** The IP address to match. This address will be compared to the IP address of incoming requests. */ value?: string; @@ -8612,12 +8609,12 @@ export namespace Schemas { export type legacy$jhs_ipv4 = string; export type legacy$jhs_ipv6 = string; export interface legacy$jhs_ipv6_configuration { - /** The configuration target. You must set the target to \`ip6\` when specifying an IPv6 address in the rule. */ + /** The configuration target. You must set the target to `ip6` when specifying an IPv6 address in the rule. */ target?: "ip6"; /** The IPv6 address to match. */ value?: string; } - /** If \`true\`, this virtual network is the default for the account. */ + /** If `true`, this virtual network is the default for the account. */ export type legacy$jhs_is_default_network = boolean; /** Lock all settings as Read-Only in the Dashboard, regardless of user permission. Updates may only be made via the API or Terraform for this account when enabled. */ export type legacy$jhs_is_ui_read_only = boolean; @@ -8810,20 +8807,20 @@ export namespace Schemas { /** Only the hash policy is supported for existing sessions (to avoid exponential decay). */ session_policy?: "hash"; } - /** Controls location-based steering for non-proxied requests. See \`steering_policy\` to learn how steering is affected. */ + /** Controls location-based steering for non-proxied requests. See `steering_policy` to learn how steering is affected. */ export interface legacy$jhs_location_strategy { /** * Determines the authoritative location when ECS is not preferred, does not exist in the request, or its GeoIP lookup is unsuccessful. - * - \`"pop"\`: Use the Cloudflare PoP location. - * - \`"resolver_ip"\`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. + * - `"pop"`: Use the Cloudflare PoP location. + * - `"resolver_ip"`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. */ mode?: "pop" | "resolver_ip"; /** * Whether the EDNS Client Subnet (ECS) GeoIP should be preferred as the authoritative location. - * - \`"always"\`: Always prefer ECS. - * - \`"never"\`: Never prefer ECS. - * - \`"proximity"\`: Prefer ECS only when \`steering_policy="proximity"\`. - * - \`"geo"\`: Prefer ECS only when \`steering_policy="geo"\`. + * - `"always"`: Always prefer ECS. + * - `"never"`: Never prefer ECS. + * - `"proximity"`: Prefer ECS only when `steering_policy="proximity"`. + * - `"geo"`: Prefer ECS only when `steering_policy="geo"`. */ prefer_ecs?: "always" | "never" | "proximity" | "geo"; } @@ -8902,7 +8899,7 @@ export namespace Schemas { } /** The HTTP method used to access the endpoint. */ export type legacy$jhs_method = "GET" | "POST" | "HEAD" | "OPTIONS" | "PUT" | "DELETE" | "CONNECT" | "PATCH" | "TRACE"; - /** The HTTP methods to match. You can specify a subset (for example, \`['POST','PUT']\`) or all methods (\`['_ALL_']\`). This field is optional when creating a rate limit. */ + /** The HTTP methods to match. You can specify a subset (for example, `['POST','PUT']`) or all methods (`['_ALL_']`). This field is optional when creating a rate limit. */ export type legacy$jhs_methods = ("GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "_ALL_")[]; /** Minimum RTT in ms. */ export type legacy$jhs_min_rtt_ms = number; @@ -8910,9 +8907,9 @@ export namespace Schemas { export type legacy$jhs_minimum_origins = number; /** The action to perform. */ export type legacy$jhs_mode = "simulate" | "ban" | "challenge" | "js_challenge" | "managed_challenge"; - /** When set to \`on\`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ + /** When set to `on`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ export type legacy$jhs_mode_allow_traditional = "on" | "off"; - /** When set to \`on\`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ + /** When set to `on`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ export type legacy$jhs_mode_anomaly = "on" | "off"; /** The action that the current WAF rule will perform when triggered. Applies to traditional (deny) WAF rules. */ export type legacy$jhs_mode_deny_traditional = "default" | "disable" | "simulate" | "block" | "challenge"; @@ -9150,7 +9147,7 @@ export namespace Schemas { export type legacy$jhs_package_components$schemas$identifier = string; /** The name of the WAF package. */ export type legacy$jhs_package_components$schemas$name = string; - /** When set to \`active\`, indicates that the WAF package will be applied to the zone. */ + /** When set to `active`, indicates that the WAF package will be applied to the zone. */ export type legacy$jhs_package_components$schemas$status = "active"; export interface legacy$jhs_package_definition { description: Schemas.legacy$jhs_package_components$schemas$description; @@ -9229,16 +9226,16 @@ export namespace Schemas { export type legacy$jhs_pattern = string; /** When true, indicates that the WAF package is currently paused. */ export type legacy$jhs_paused = boolean; - /** The maximum number of bytes to capture. This field only applies to \`full\` packet captures. */ + /** The maximum number of bytes to capture. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_byte_limit = number; export type legacy$jhs_pcaps_collection_response = Schemas.legacy$jhs_api$response$collection & { result?: (Schemas.legacy$jhs_pcaps_response_simple | Schemas.legacy$jhs_pcaps_response_full)[]; }; - /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to \`full\` packet captures. */ + /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_colo_name = string; - /** The full URI for the bucket. This field only applies to \`full\` packet captures. */ + /** The full URI for the bucket. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_destination_conf = string; - /** An error message that describes why the packet capture failed. This field only applies to \`full\` packet captures. */ + /** An error message that describes why the packet capture failed. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_error_message = string; /** The packet capture filter. When this field is empty, all packets are captured. */ export interface legacy$jhs_pcaps_filter_v1 { @@ -9308,7 +9305,7 @@ export namespace Schemas { export type legacy$jhs_pcaps_system = "magic-transit"; /** The packet capture duration in seconds. */ export type legacy$jhs_pcaps_time_limit = number; - /** The type of packet capture. \`Simple\` captures sampled packets, and \`full\` captures entire payloads and non-sampled packets. */ + /** The type of packet capture. `Simple` captures sampled packets, and `full` captures entire payloads and non-sampled packets. */ export type legacy$jhs_pcaps_type = "simple" | "full"; /** The time in seconds (an integer value) to count matching traffic. If the count exceeds the configured threshold within this period, Cloudflare will perform the configured action. */ export type legacy$jhs_period = number; @@ -9551,7 +9548,7 @@ export namespace Schemas { export type legacy$jhs_profiles_components$schemas$response_collection = Schemas.legacy$jhs_api$response$collection & { result?: Schemas.legacy$jhs_profiles[]; }; - /** The port configuration at Cloudflare’s edge. May specify a single port, for example \`"tcp/1000"\`, or a range of ports, for example \`"tcp/1000-2000"\`. */ + /** The port configuration at Cloudflare’s edge. May specify a single port, for example `"tcp/1000"`, or a range of ports, for example `"tcp/1000-2000"`. */ export type legacy$jhs_protocol = string; /** Whether the hostname should be gray clouded (false) or orange clouded (true). */ export type legacy$jhs_proxied = boolean; @@ -9883,7 +9880,7 @@ export namespace Schemas { export type legacy$jhs_rule_single_response = Schemas.legacy$jhs_api$response$single & { result?: Schemas.legacy$jhs_rule; }; - /** An object that allows you to override the action of specific WAF rules. Each key of this object must be the ID of a WAF rule, and each value must be a valid WAF action. Unless you are disabling a rule, ensure that you also enable the rule group that this WAF rule belongs to. When creating a new URI-based WAF override, you must provide a \`groups\` object or a \`rules\` object. */ + /** An object that allows you to override the action of specific WAF rules. Each key of this object must be the ID of a WAF rule, and each value must be a valid WAF action. Unless you are disabling a rule, ensure that you also enable the rule group that this WAF rule belongs to. When creating a new URI-based WAF override, you must provide a `groups` object or a `rules` object. */ export interface legacy$jhs_rules { } /** The action to perform when the rule matches. */ @@ -9994,7 +9991,7 @@ export namespace Schemas { attribute_value: string; }; } - /** Polling frequency for the WARP client posture check. Default: \`5m\` (poll every five minutes). Minimum: \`1m\`. */ + /** Polling frequency for the WARP client posture check. Default: `5m` (poll every five minutes). Minimum: `1m`. */ export type legacy$jhs_schedule = string; export type legacy$jhs_schema_response_discovery = Schemas.legacy$jhs_default_response & { result?: { @@ -10073,9 +10070,9 @@ export namespace Schemas { /** The uploaded root CA certificate. */ export type legacy$jhs_schemas$certificates = string; export interface legacy$jhs_schemas$cidr_configuration { - /** The configuration target. You must set the target to \`ip_range\` when specifying an IP address range in the Zone Lockdown rule. */ + /** The configuration target. You must set the target to `ip_range` when specifying an IP address range in the Zone Lockdown rule. */ target?: "ip_range"; - /** The IP address range to match. You can only use prefix lengths \`/16\` and \`/24\`. */ + /** The IP address range to match. You can only use prefix lengths `/16` and `/24`. */ value?: string; } export type legacy$jhs_schemas$collection_invite_response = Schemas.legacy$jhs_api$response$collection & { @@ -10168,11 +10165,11 @@ export namespace Schemas { /** The target to search in existing rules. */ "configuration.target"?: "ip" | "ip_range" | "asn" | "country"; /** - * The target value to search for in existing rules: an IP address, an IP address range, or a country code, depending on the provided \`configuration.target\`. + * The target value to search for in existing rules: an IP address, an IP address range, or a country code, depending on the provided `configuration.target`. * Notes: You can search for a single IPv4 address, an IP address range with a subnet of '/16' or '/24', or a two-letter ISO-3166-1 alpha-2 country code. */ "configuration.value"?: string; - /** When set to \`all\`, all the search requirements must match. When set to \`any\`, only one of the search requirements has to match. */ + /** When set to `all`, all the search requirements must match. When set to `any`, only one of the search requirements has to match. */ match?: "any" | "all"; mode?: Schemas.legacy$jhs_schemas$mode; /** @@ -10219,7 +10216,7 @@ export namespace Schemas { /** The IP address of the authenticating user. */ export type legacy$jhs_schemas$ip = string; export interface legacy$jhs_schemas$ip_configuration { - /** The configuration target. You must set the target to \`ip\` when specifying an IP address in the Zone Lockdown rule. */ + /** The configuration target. You must set the target to `ip` when specifying an IP address in the Zone Lockdown rule. */ target?: "ip"; /** The IP address to match. This address will be compared to the IP address of incoming requests. */ value?: string; @@ -10245,7 +10242,7 @@ export namespace Schemas { export interface legacy$jhs_schemas$operation { /** The RFC 3339 timestamp of when the operation was completed. */ readonly completed?: string; - /** A message describing the error when the status is \`failed\`. */ + /** A message describing the error when the status is `failed`. */ readonly error?: string; id: Schemas.legacy$jhs_operation_id; /** The current status of the asynchronous operation. */ @@ -10395,7 +10392,7 @@ export namespace Schemas { export type legacy$jhs_schemas$updated_at = Date; /** This is the time the certificate was uploaded. */ export type legacy$jhs_schemas$uploaded_on = Date; - /** The URL pattern to match, composed of a host and a path such as \`example.org/path*\`. Normalization is applied before the pattern is matched. \`*\` wildcards are expanded to match applicable traffic. Query strings are not matched. Set the value to \`*\` to match all traffic to your zone. */ + /** The URL pattern to match, composed of a host and a path such as `example.org/path*`. Normalization is applied before the pattern is matched. `*` wildcards are expanded to match applicable traffic. Query strings are not matched. Set the value to `*` to match all traffic to your zone. */ export type legacy$jhs_schemas$url = string; /** The URLs to include in the rule definition. You can use wildcards. Each entered URL will be escaped before use, which means you can only use simple wildcard patterns. */ export type legacy$jhs_schemas$urls = string[]; @@ -10412,7 +10409,7 @@ export namespace Schemas { export interface legacy$jhs_schemas$zone { readonly name?: any; } - /** The HTTP schemes to match. You can specify one scheme (\`['HTTPS']\`), both schemes (\`['HTTP','HTTPS']\`), or all schemes (\`['_ALL_']\`). This field is optional. */ + /** The HTTP schemes to match. You can specify one scheme (`['HTTPS']`), both schemes (`['HTTP','HTTPS']`), or all schemes (`['_ALL_']`). This field is optional. */ export type legacy$jhs_schemes = string[]; export type legacy$jhs_script$response$collection = Schemas.legacy$jhs_api$response$common & { result?: { @@ -10426,7 +10423,7 @@ export namespace Schemas { export type legacy$jhs_script$response$single = Schemas.legacy$jhs_api$response$single & { result?: {}; }; - /** Optional secret that will be passed in the \`cf-webhook-auth\` header when dispatching a webhook notification. Secrets are not returned in any API response body. */ + /** Optional secret that will be passed in the `cf-webhook-auth` header when dispatching a webhook notification. Secrets are not returned in any API response body. */ export type legacy$jhs_secret = string; export interface legacy$jhs_self_hosted_props { allowed_idps?: Schemas.legacy$jhs_allowed_idps; @@ -10480,7 +10477,7 @@ export namespace Schemas { port?: number; } /** The session_affinity specifies the type of session affinity the load balancer should use unless specified as "none" or ""(default). The supported types are "cookie" and "ip_cookie". "cookie" - On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy then a new origin server is calculated and used. "ip_cookie" behaves the same as "cookie" except the initial origin selection is stable and based on the client’s ip address. */ - export type legacy$jhs_session_affinity = "none" | "cookie" | "ip_cookie" | "\\"\\""; + export type legacy$jhs_session_affinity = "none" | "cookie" | "ip_cookie" | "\"\""; /** Configures cookie attributes for session affinity cookie. */ export interface legacy$jhs_session_affinity_attributes { /** Configures the drain duration in seconds. This field is only used when session affinity is enabled on the load balancer. */ @@ -10494,7 +10491,7 @@ export namespace Schemas { } /** Time, in seconds, until this load balancer's session affinity cookie expires after being created. This parameter is ignored unless a supported session affinity policy is set. The current default of 23 hours will be used unless session_affinity_ttl is explicitly set. The accepted range of values is between [1800, 604800]. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. */ export type legacy$jhs_session_affinity_ttl = number; - /** The amount of time that tokens issued for this application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for this application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type legacy$jhs_session_duration = string; /** The type of hash used for the certificate. */ export type legacy$jhs_signature = string; @@ -10522,7 +10519,7 @@ export namespace Schemas { }; /** Enables automatic authentication through cloudflared. */ export type legacy$jhs_skip_interstitial = boolean; - /** The sort order for the result set; sort fields must be included in \`metrics\` or \`dimensions\`. */ + /** The sort order for the result set; sort fields must be included in `metrics` or `dimensions`. */ export type legacy$jhs_sort = {}[]; export interface legacy$jhs_split_tunnel { /** The address in CIDR format to exclude from the tunnel. If address is present, host must not be present. */ @@ -10625,14 +10622,14 @@ export namespace Schemas { export type legacy$jhs_std_dev_rtt_ms = number; /** * Steering Policy for this load balancer. - * - \`"off"\`: Use \`default_pools\`. - * - \`"geo"\`: Use \`region_pools\`/\`country_pools\`/\`pop_pools\`. For non-proxied requests, the country for \`country_pools\` is determined by \`location_strategy\`. - * - \`"random"\`: Select a pool randomly. - * - \`"dynamic_latency"\`: Use round trip time to select the closest pool in default_pools (requires pool health checks). - * - \`"proximity"\`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by \`location_strategy\` for non-proxied requests. - * - \`""\`: Will map to \`"geo"\` if you use \`region_pools\`/\`country_pools\`/\`pop_pools\` otherwise \`"off"\`. + * - `"off"`: Use `default_pools`. + * - `"geo"`: Use `region_pools`/`country_pools`/`pop_pools`. For non-proxied requests, the country for `country_pools` is determined by `location_strategy`. + * - `"random"`: Select a pool randomly. + * - `"dynamic_latency"`: Use round trip time to select the closest pool in default_pools (requires pool health checks). + * - `"proximity"`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by `location_strategy` for non-proxied requests. + * - `""`: Will map to `"geo"` if you use `region_pools`/`country_pools`/`pop_pools` otherwise `"off"`. */ - export type legacy$jhs_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "\\"\\""; + export type legacy$jhs_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "\"\""; /** STIX 2.1 identifier: https://docs.oasis-open.org/cti/stix/v2.1/cs02/stix-v2.1-cs02.html#_64yvzeku5a5c */ export type legacy$jhs_stix_identifier = string; export type legacy$jhs_subdomain$response = Schemas.legacy$jhs_api$response$common & { @@ -10693,7 +10690,7 @@ export namespace Schemas { /** The list of key/value pairs where the key is a threat category and the value is the number of requests. */ type?: {}; } - /** The threshold that will trigger the configured mitigation action. Configure this value along with the \`period\` property to establish a threshold per period. */ + /** The threshold that will trigger the configured mitigation action. Configure this value along with the `period` property to establish a threshold per period. */ export type legacy$jhs_threshold = number; export interface legacy$jhs_thresholds { thresholds?: { @@ -10797,7 +10794,7 @@ export namespace Schemas { default_mode?: Schemas.legacy$jhs_default_mode; mode?: Schemas.legacy$jhs_mode_deny_traditional; }; - /** Determines how data travels from the edge to your origin. When set to "direct", Spectrum will send traffic directly to your origin, and the application's type is derived from the \`protocol\`. When set to "http" or "https", Spectrum will apply Cloudflare's HTTP/HTTPS features as it sends traffic to your origin, and the application type matches this property exactly. */ + /** Determines how data travels from the edge to your origin. When set to "direct", Spectrum will send traffic directly to your origin, and the application's type is derived from the `protocol`. When set to "http" or "https", Spectrum will apply Cloudflare's HTTP/HTTPS features as it sends traffic to your origin, and the application type matches this property exactly. */ export type legacy$jhs_traffic_type = "direct" | "http" | "https"; /** Statuses for domain transfers into Cloudflare Registrar. */ export interface legacy$jhs_transfer_in { @@ -10951,7 +10948,7 @@ export namespace Schemas { comment: Schemas.legacy$jhs_schemas$comment; /** Timestamp of when the virtual network was created. */ created_at: any; - /** Timestamp of when the virtual network was deleted. If \`null\`, the virtual network has not been deleted. */ + /** Timestamp of when the virtual network was deleted. If `null`, the virtual network has not been deleted. */ deleted_at?: any; id: Schemas.legacy$jhs_vnet_id; is_default_network: Schemas.legacy$jhs_is_default_network; @@ -11196,7 +11193,7 @@ export namespace Schemas { export interface lists_operation { /** The RFC 3339 timestamp of when the operation was completed. */ readonly completed?: string; - /** A message describing the error when the status is \`failed\`. */ + /** A message describing the error when the status is `failed`. */ readonly error?: string; id: Schemas.lists_operation_id; /** The current status of the asynchronous operation. */ @@ -11208,7 +11205,7 @@ export namespace Schemas { export type load$balancing_Host = string[]; /** Controls features that modify the routing of requests to pools and origins in response to dynamic conditions, such as during the interval between active health monitoring requests. For example, zero-downtime failover occurs immediately when an origin becomes unavailable due to HTTP 521, 522, or 523 response codes. If there is another healthy origin in the same pool, the request is retried once against this alternate origin. */ export interface load$balancing_adaptive_routing { - /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See \`session_affinity_attributes\` for control over when sessions are broken or reassigned. */ + /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See `session_affinity_attributes` for control over when sessions are broken or reassigned. */ failover_across_pools?: boolean; } /** The IP address (IPv4 or IPv6) of the origin, or its publicly addressable hostname. Hostnames entered here should resolve directly to the origin, and not be a hostname proxied by Cloudflare. To set an internal/reserved address, virtual_network_id must also be set. */ @@ -11352,20 +11349,20 @@ export namespace Schemas { /** Only the hash policy is supported for existing sessions (to avoid exponential decay). */ session_policy?: "hash"; } - /** Controls location-based steering for non-proxied requests. See \`steering_policy\` to learn how steering is affected. */ + /** Controls location-based steering for non-proxied requests. See `steering_policy` to learn how steering is affected. */ export interface load$balancing_location_strategy { /** * Determines the authoritative location when ECS is not preferred, does not exist in the request, or its GeoIP lookup is unsuccessful. - * - \`"pop"\`: Use the Cloudflare PoP location. - * - \`"resolver_ip"\`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. + * - `"pop"`: Use the Cloudflare PoP location. + * - `"resolver_ip"`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. */ mode?: "pop" | "resolver_ip"; /** * Whether the EDNS Client Subnet (ECS) GeoIP should be preferred as the authoritative location. - * - \`"always"\`: Always prefer ECS. - * - \`"never"\`: Never prefer ECS. - * - \`"proximity"\`: Prefer ECS only when \`steering_policy="proximity"\`. - * - \`"geo"\`: Prefer ECS only when \`steering_policy="geo"\`. + * - `"always"`: Always prefer ECS. + * - `"never"`: Never prefer ECS. + * - `"proximity"`: Prefer ECS only when `steering_policy="proximity"`. + * - `"geo"`: Prefer ECS only when `steering_policy="geo"`. */ prefer_ecs?: "always" | "never" | "proximity" | "geo"; } @@ -11441,17 +11438,17 @@ export namespace Schemas { export interface load$balancing_origin_steering { /** * The type of origin steering policy to use. - * - \`"random"\`: Select an origin randomly. - * - \`"hash"\`: Select an origin by computing a hash over the CF-Connecting-IP address. - * - \`"least_outstanding_requests"\`: Select an origin by taking into consideration origin weights, as well as each origin's number of outstanding requests. Origins with more pending requests are weighted proportionately less relative to others. - * - \`"least_connections"\`: Select an origin by taking into consideration origin weights, as well as each origin's number of open connections. Origins with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. + * - `"random"`: Select an origin randomly. + * - `"hash"`: Select an origin by computing a hash over the CF-Connecting-IP address. + * - `"least_outstanding_requests"`: Select an origin by taking into consideration origin weights, as well as each origin's number of outstanding requests. Origins with more pending requests are weighted proportionately less relative to others. + * - `"least_connections"`: Select an origin by taking into consideration origin weights, as well as each origin's number of open connections. Origins with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. */ policy?: "random" | "hash" | "least_outstanding_requests" | "least_connections"; } /** The list of origins within this pool. Traffic directed at this pool is balanced across all currently healthy origins, provided the pool itself is healthy. */ export type load$balancing_origins = Schemas.load$balancing_origin[]; - /** The email address to send health status notifications to. This field is now deprecated in favor of Cloudflare Notifications for Load Balancing, so only resetting this field with an empty string \`""\` is accepted. */ - export type load$balancing_patch_pools_notification_email = "\\"\\""; + /** The email address to send health status notifications to. This field is now deprecated in favor of Cloudflare Notifications for Load Balancing, so only resetting this field with an empty string `""` is accepted. */ + export type load$balancing_patch_pools_notification_email = "\"\""; /** The endpoint path you want to conduct a health check against. This parameter is only valid for HTTP and HTTPS monitors. */ export type load$balancing_path = string; export interface load$balancing_pool { @@ -11500,9 +11497,9 @@ export namespace Schemas { export type load$balancing_proxied = boolean; /** * Configures pool weights. - * - \`steering_policy="random"\`: A random pool is selected with probability proportional to pool weights. - * - \`steering_policy="least_outstanding_requests"\`: Use pool weights to scale each pool's outstanding requests. - * - \`steering_policy="least_connections"\`: Use pool weights to scale each pool's open connections. + * - `steering_policy="random"`: A random pool is selected with probability proportional to pool weights. + * - `steering_policy="least_outstanding_requests"`: Use pool weights to scale each pool's outstanding requests. + * - `steering_policy="least_connections"`: Use pool weights to scale each pool's open connections. */ export interface load$balancing_random_steering { /** The default weight for pools in the load balancer that are not specified in the pool_weights map. */ @@ -11639,22 +11636,22 @@ export namespace Schemas { result?: Schemas.load$balancing_search; } /** - * Specifies the type of session affinity the load balancer should use unless specified as \`"none"\` or "" (default). The supported types are: - * - \`"cookie"\`: On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy, then a new origin server is calculated and used. - * - \`"ip_cookie"\`: Behaves the same as \`"cookie"\` except the initial origin selection is stable and based on the client's ip address. - * - \`"header"\`: On the first request to a proxied load balancer, a session key based on the configured HTTP headers (see \`session_affinity_attributes.headers\`) is generated, encoding the request headers used for storing in the load balancer session state which origin the request will be forwarded to. Subsequent requests to the load balancer with the same headers will be sent to the same origin server, for the duration of the session and as long as the origin server remains healthy. If the session has been idle for the duration of \`session_affinity_ttl\` seconds or the origin server is unhealthy, then a new origin server is calculated and used. See \`headers\` in \`session_affinity_attributes\` for additional required configuration. + * Specifies the type of session affinity the load balancer should use unless specified as `"none"` or "" (default). The supported types are: + * - `"cookie"`: On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy, then a new origin server is calculated and used. + * - `"ip_cookie"`: Behaves the same as `"cookie"` except the initial origin selection is stable and based on the client's ip address. + * - `"header"`: On the first request to a proxied load balancer, a session key based on the configured HTTP headers (see `session_affinity_attributes.headers`) is generated, encoding the request headers used for storing in the load balancer session state which origin the request will be forwarded to. Subsequent requests to the load balancer with the same headers will be sent to the same origin server, for the duration of the session and as long as the origin server remains healthy. If the session has been idle for the duration of `session_affinity_ttl` seconds or the origin server is unhealthy, then a new origin server is calculated and used. See `headers` in `session_affinity_attributes` for additional required configuration. */ - export type load$balancing_session_affinity = "none" | "cookie" | "ip_cookie" | "header" | "\\"\\""; + export type load$balancing_session_affinity = "none" | "cookie" | "ip_cookie" | "header" | "\"\""; /** Configures attributes for session affinity. */ export interface load$balancing_session_affinity_attributes { /** Configures the drain duration in seconds. This field is only used when session affinity is enabled on the load balancer. */ drain_duration?: number; - /** Configures the names of HTTP headers to base session affinity on when header \`session_affinity\` is enabled. At least one HTTP header name must be provided. To specify the exact cookies to be used, include an item in the following format: \`"cookie:,"\` (example) where everything after the colon is a comma-separated list of cookie names. Providing only \`"cookie"\` will result in all cookies being used. The default max number of HTTP header names that can be provided depends on your plan: 5 for Enterprise, 1 for all other plans. */ + /** Configures the names of HTTP headers to base session affinity on when header `session_affinity` is enabled. At least one HTTP header name must be provided. To specify the exact cookies to be used, include an item in the following format: `"cookie:,"` (example) where everything after the colon is a comma-separated list of cookie names. Providing only `"cookie"` will result in all cookies being used. The default max number of HTTP header names that can be provided depends on your plan: 5 for Enterprise, 1 for all other plans. */ headers?: string[]; /** - * When header \`session_affinity\` is enabled, this option can be used to specify how HTTP headers on load balancing requests will be used. The supported values are: - * - \`"true"\`: Load balancing requests must contain *all* of the HTTP headers specified by the \`headers\` session affinity attribute, otherwise sessions aren't created. - * - \`"false"\`: Load balancing requests must contain *at least one* of the HTTP headers specified by the \`headers\` session affinity attribute, otherwise sessions aren't created. + * When header `session_affinity` is enabled, this option can be used to specify how HTTP headers on load balancing requests will be used. The supported values are: + * - `"true"`: Load balancing requests must contain *all* of the HTTP headers specified by the `headers` session affinity attribute, otherwise sessions aren't created. + * - `"false"`: Load balancing requests must contain *at least one* of the HTTP headers specified by the `headers` session affinity attribute, otherwise sessions aren't created. */ require_all_headers?: boolean; /** Configures the SameSite attribute on session affinity cookie. Value "Auto" will be translated to "Lax" or "None" depending if Always Use HTTPS is enabled. Note: when using value "None", the secure attribute can not be set to "Never". */ @@ -11663,30 +11660,30 @@ export namespace Schemas { secure?: "Auto" | "Always" | "Never"; /** * Configures the zero-downtime failover between origins within a pool when session affinity is enabled. This feature is currently incompatible with Argo, Tiered Cache, and Bandwidth Alliance. The supported values are: - * - \`"none"\`: No failover takes place for sessions pinned to the origin (default). - * - \`"temporary"\`: Traffic will be sent to another other healthy origin until the originally pinned origin is available; note that this can potentially result in heavy origin flapping. - * - \`"sticky"\`: The session affinity cookie is updated and subsequent requests are sent to the new origin. Note: Zero-downtime failover with sticky sessions is currently not supported for session affinity by header. + * - `"none"`: No failover takes place for sessions pinned to the origin (default). + * - `"temporary"`: Traffic will be sent to another other healthy origin until the originally pinned origin is available; note that this can potentially result in heavy origin flapping. + * - `"sticky"`: The session affinity cookie is updated and subsequent requests are sent to the new origin. Note: Zero-downtime failover with sticky sessions is currently not supported for session affinity by header. */ zero_downtime_failover?: "none" | "temporary" | "sticky"; } /** - * Time, in seconds, until a client's session expires after being created. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. The accepted ranges per \`session_affinity\` policy are: - * - \`"cookie"\` / \`"ip_cookie"\`: The current default of 23 hours will be used unless explicitly set. The accepted range of values is between [1800, 604800]. - * - \`"header"\`: The current default of 1800 seconds will be used unless explicitly set. The accepted range of values is between [30, 3600]. Note: With session affinity by header, sessions only expire after they haven't been used for the number of seconds specified. + * Time, in seconds, until a client's session expires after being created. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. The accepted ranges per `session_affinity` policy are: + * - `"cookie"` / `"ip_cookie"`: The current default of 23 hours will be used unless explicitly set. The accepted range of values is between [1800, 604800]. + * - `"header"`: The current default of 1800 seconds will be used unless explicitly set. The accepted range of values is between [30, 3600]. Note: With session affinity by header, sessions only expire after they haven't been used for the number of seconds specified. */ export type load$balancing_session_affinity_ttl = number; /** * Steering Policy for this load balancer. - * - \`"off"\`: Use \`default_pools\`. - * - \`"geo"\`: Use \`region_pools\`/\`country_pools\`/\`pop_pools\`. For non-proxied requests, the country for \`country_pools\` is determined by \`location_strategy\`. - * - \`"random"\`: Select a pool randomly. - * - \`"dynamic_latency"\`: Use round trip time to select the closest pool in default_pools (requires pool health checks). - * - \`"proximity"\`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by \`location_strategy\` for non-proxied requests. - * - \`"least_outstanding_requests"\`: Select a pool by taking into consideration \`random_steering\` weights, as well as each pool's number of outstanding requests. Pools with more pending requests are weighted proportionately less relative to others. - * - \`"least_connections"\`: Select a pool by taking into consideration \`random_steering\` weights, as well as each pool's number of open connections. Pools with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. - * - \`""\`: Will map to \`"geo"\` if you use \`region_pools\`/\`country_pools\`/\`pop_pools\` otherwise \`"off"\`. + * - `"off"`: Use `default_pools`. + * - `"geo"`: Use `region_pools`/`country_pools`/`pop_pools`. For non-proxied requests, the country for `country_pools` is determined by `location_strategy`. + * - `"random"`: Select a pool randomly. + * - `"dynamic_latency"`: Use round trip time to select the closest pool in default_pools (requires pool health checks). + * - `"proximity"`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by `location_strategy` for non-proxied requests. + * - `"least_outstanding_requests"`: Select a pool by taking into consideration `random_steering` weights, as well as each pool's number of outstanding requests. Pools with more pending requests are weighted proportionately less relative to others. + * - `"least_connections"`: Select a pool by taking into consideration `random_steering` weights, as well as each pool's number of open connections. Pools with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. + * - `""`: Will map to `"geo"` if you use `region_pools`/`country_pools`/`pop_pools` otherwise `"off"`. */ - export type load$balancing_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "least_outstanding_requests" | "least_connections" | "\\"\\""; + export type load$balancing_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "least_outstanding_requests" | "least_connections" | "\"\""; /** Two-letter subdivision code followed in ISO 3166-2. */ export type load$balancing_subdivision_code_a2 = string; /** The timeout (in seconds) before marking the health check as failed. */ @@ -11702,8 +11699,8 @@ export namespace Schemas { export type load$balancing_virtual_network_id = string; /** * The weight of this origin relative to other origins in the pool. Based on the configured weight the total traffic is distributed among origins within the pool. - * - \`origin_steering.policy="least_outstanding_requests"\`: Use weight to scale the origin's outstanding requests. - * - \`origin_steering.policy="least_connections"\`: Use weight to scale the origin's open connections. + * - `origin_steering.policy="least_outstanding_requests"`: Use weight to scale the origin's outstanding requests. + * - `origin_steering.policy="least_connections"`: Use weight to scale the origin's open connections. */ export type load$balancing_weight = number; export type logcontrol_account_identifier = Schemas.logcontrol_identifier; @@ -11802,7 +11799,7 @@ export namespace Schemas { export type logpush_last_complete = (Date) | null; /** Records the last time the job failed. If not null, the job is currently failing. If null, the job has either never failed or has run successfully at least once since last failure. See also the error_message field. */ export type logpush_last_error = (Date) | null; - /** This field is deprecated. Use \`output_options\` instead. Configuration string. It specifies things like requested fields and timestamp formats. If migrating from the logpull api, copy the url (full url or just the query string) of your call here, and logpush will keep on making this call for you, setting start and end times appropriately. */ + /** This field is deprecated. Use `output_options` instead. Configuration string. It specifies things like requested fields and timestamp formats. If migrating from the logpull api, copy the url (full url or just the query string) of your call here, and logpush will keep on making this call for you, setting start and end times appropriately. */ export type logpush_logpull_options = string | null; export type logpush_logpush_field_response_collection = Schemas.logpush_api$response$common & { result?: {}; @@ -11832,19 +11829,19 @@ export namespace Schemas { }[]; /** Optional human readable job name. Not unique. Cloudflare suggests that you set this to a meaningful string, like the domain name, to make it easier to identify your job. */ export type logpush_name = string | null; - /** The structured replacement for \`logpull_options\`. When including this field, the \`logpull_option\` field will be ignored. */ + /** The structured replacement for `logpull_options`. When including this field, the `logpull_option` field will be ignored. */ export type logpush_output_options = { - /** If set to true, will cause all occurrences of \`\${\` in the generated files to be replaced with \`x{\`. */ + /** If set to true, will cause all occurrences of `${` in the generated files to be replaced with `x{`. */ "CVE-2021-4428"?: boolean | null; /** String to be prepended before each batch. */ batch_prefix?: string | null; /** String to be appended after each batch. */ batch_suffix?: string | null; - /** String to join fields. This field be ignored when \`record_template\` is set. */ + /** String to join fields. This field be ignored when `record_template` is set. */ field_delimiter?: string | null; /** List of field names to be included in the Logpush output. For the moment, there is no option to add all fields at once, so you must specify all the fields names you are interested in. */ field_names?: string[]; - /** Specifies the output type, such as \`ndjson\` or \`csv\`. This sets default values for the rest of the settings, depending on the chosen output type. Some formatting rules, like string quoting, are different between output types. */ + /** Specifies the output type, such as `ndjson` or `csv`. This sets default values for the rest of the settings, depending on the chosen output type. Some formatting rules, like string quoting, are different between output types. */ output_type?: "ndjson" | "csv"; /** String to be inserted in-between the records as separator. */ record_delimiter?: string | null; @@ -11852,11 +11849,11 @@ export namespace Schemas { record_prefix?: string | null; /** String to be appended after each record. */ record_suffix?: string | null; - /** String to use as template for each record instead of the default comma-separated list. All fields used in the template must be present in \`field_names\` as well, otherwise they will end up as null. Format as a Go \`text/template\` without any standard functions, like conditionals, loops, sub-templates, etc. */ + /** String to use as template for each record instead of the default comma-separated list. All fields used in the template must be present in `field_names` as well, otherwise they will end up as null. Format as a Go `text/template` without any standard functions, like conditionals, loops, sub-templates, etc. */ record_template?: string | null; - /** Floating number to specify sampling rate. Sampling is applied on top of filtering, and regardless of the current \`sample_interval\` of the data. */ + /** Floating number to specify sampling rate. Sampling is applied on top of filtering, and regardless of the current `sample_interval` of the data. */ sample_rate?: number | null; - /** String to specify the format for timestamps, such as \`unixnano\`, \`unix\`, or \`rfc3339\`. */ + /** String to specify the format for timestamps, such as `unixnano`, `unix`, or `rfc3339`. */ timestamp_format?: "unixnano" | "unix" | "rfc3339"; } | null; /** Ownership challenge token to prove destination ownership. */ @@ -11878,7 +11875,7 @@ export namespace Schemas { valid?: boolean; } | null; }; - /** When \`true\`, the tunnel can use a null-cipher (\`ENCR_NULL\`) in the ESP tunnel (Phase 2). */ + /** When `true`, the tunnel can use a null-cipher (`ENCR_NULL`) in the ESP tunnel (Phase 2). */ export type magic_allow_null_cipher = boolean; export interface magic_api$response$common { errors: Schemas.magic_messages; @@ -11973,11 +11970,11 @@ export namespace Schemas { direction?: "unidirectional" | "bidirectional"; /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } /** Identifier */ @@ -12059,7 +12056,7 @@ export namespace Schemas { export interface magic_psk_metadata { last_generated_on?: Schemas.magic_schemas$modified_on; } - /** If \`true\`, then IPsec replay protection will be supported in the Cloudflare-to-customer direction. */ + /** If `true`, then IPsec replay protection will be supported in the Cloudflare-to-customer direction. */ export type magic_replay_protection = boolean; export interface magic_route { created_on?: Schemas.magic_created_on; @@ -12122,11 +12119,11 @@ export namespace Schemas { export interface magic_schemas$health_check { /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } /** Tunnel identifier tag. */ @@ -12202,11 +12199,11 @@ export namespace Schemas { export interface magic_tunnel_health_check { /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } export type magic_tunnel_modified_response = Schemas.magic_api$response$single & { @@ -12240,9 +12237,9 @@ export namespace Schemas { /** * Specifies the default nameservers to be used for new zones added to this account. * - * - \`cloudflare.standard\` for Cloudflare-branded nameservers - * - \`custom.account\` for account custom nameservers - * - \`custom.tenant\` for tenant custom nameservers + * - `cloudflare.standard` for Cloudflare-branded nameservers + * - `custom.account` for account custom nameservers + * - `custom.tenant` for tenant custom nameservers * * See [Custom Nameservers](https://developers.cloudflare.com/dns/additional-options/custom-nameservers/) * for more information. @@ -13969,15 +13966,15 @@ export namespace Schemas { code: number; message: string; }[]; - /** Defines rules for fine-grained control over content than signed URL tokens alone. Access rules primarily make tokens conditionally valid based on user information. Access Rules are specified on token payloads as the \`accessRules\` property containing an array of Rule objects. */ + /** Defines rules for fine-grained control over content than signed URL tokens alone. Access rules primarily make tokens conditionally valid based on user information. Access Rules are specified on token payloads as the `accessRules` property containing an array of Rule objects. */ export interface stream_accessRules { - /** The action to take when a request matches a rule. If the action is \`block\`, the signed token blocks views for viewers matching the rule. */ + /** The action to take when a request matches a rule. If the action is `block`, the signed token blocks views for viewers matching the rule. */ action?: "allow" | "block"; /** An array of 2-letter country codes in ISO 3166-1 Alpha-2 format used to match requests. */ country?: string[]; /** An array of IPv4 or IPV6 addresses or CIDRs used to match requests. */ ip?: string[]; - /** Lists available rule types to match for requests. An \`any\` type matches all requests and can be used as a wildcard to apply default actions after other rules. */ + /** Lists available rule types to match for requests. An `any` type matches all requests and can be used as a wildcard to apply default actions after other rules. */ type?: "any" | "ip.src" | "ip.geoip.country"; } /** The account identifier tag. */ @@ -13991,7 +13988,7 @@ export namespace Schemas { status?: Schemas.stream_audio_state; uid?: Schemas.stream_identifier; } - /** Lists the origins allowed to display the video. Enter allowed origin domains in an array and use \`*\` for wildcard subdomains. Empty arrays allow the video to be viewed on any origin. */ + /** Lists the origins allowed to display the video. Enter allowed origin domains in an array and use `*` for wildcard subdomains. Empty arrays allow the video to be viewed on any origin. */ export type stream_allowedOrigins = string[]; export interface stream_api$response$common { errors: Schemas.stream_messages; @@ -14054,7 +14051,7 @@ export namespace Schemas { export type stream_clipping_created = Date; export interface stream_copyAudioTrack { label: Schemas.stream_audio_label; - /** An audio track URL. The server must be publicly routable and support \`HTTP HEAD\` requests and \`HTTP GET\` range requests. The server should respond to \`HTTP HEAD\` requests with a \`content-range\` header that includes the size of the file. */ + /** An audio track URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file. */ url?: string; } export interface stream_create_input_request { @@ -14091,7 +14088,7 @@ export namespace Schemas { result?: { scheduledDeletion?: Schemas.stream_scheduledDeletion; uid?: Schemas.stream_identifier; - /** The URL an unauthenticated upload can use for a single \`HTTP POST multipart/form-data\` request. */ + /** The URL an unauthenticated upload can use for a single `HTTP POST multipart/form-data` request. */ uploadURL?: string; watermark?: Schemas.stream_watermarks; }; @@ -14101,7 +14098,7 @@ export namespace Schemas { export type stream_downloads_response = Schemas.stream_api$response$single & { result?: {}; }; - /** The duration of the video in seconds. A value of \`-1\` means the duration is unknown. The duration becomes available after the upload and before the video is ready. */ + /** The duration of the video in seconds. A value of `-1` means the duration is unknown. The duration becomes available after the upload and before the video is ready. */ export type stream_duration = number; export interface stream_editAudioTrack { default?: Schemas.stream_audio_default; @@ -14111,9 +14108,9 @@ export namespace Schemas { export type stream_end = Date; /** Specifies the end time for the video clip in seconds. */ export type stream_end_time_seconds = number; - /** Specifies why the video failed to encode. This field is empty if the video is not in an \`error\` state. Preferred for programmatic use. */ + /** Specifies why the video failed to encode. This field is empty if the video is not in an `error` state. Preferred for programmatic use. */ export type stream_errorReasonCode = string; - /** Specifies why the video failed to encode using a human readable error message in English. This field is empty if the video is not in an \`error\` state. */ + /** Specifies why the video failed to encode using a human readable error message in English. This field is empty if the video is not in an `error` state. */ export type stream_errorReasonText = string; /** The height of the image in pixels. */ export type stream_height = number; @@ -14122,9 +14119,9 @@ export namespace Schemas { /** Includes the total number of videos associated with the submitted query parameters. */ export type stream_include_counts = boolean; export interface stream_input { - /** The video height in pixels. A value of \`-1\` means the height is unknown. The value becomes available after the upload and before the video is ready. */ + /** The video height in pixels. A value of `-1` means the height is unknown. The value becomes available after the upload and before the video is ready. */ height?: number; - /** The video width in pixels. A value of \`-1\` means the width is unknown. The value becomes available after the upload and before the video is ready. */ + /** The video width in pixels. A value of `-1` means the width is unknown. The value becomes available after the upload and before the video is ready. */ width?: number; } /** Details for streaming to an live input using RTMPS. */ @@ -14218,13 +14215,13 @@ export namespace Schemas { modified?: Schemas.stream_live_input_modified; uid?: Schemas.stream_live_input_identifier; } - /** Lists the origins allowed to display videos created with this input. Enter allowed origin domains in an array and use \`*\` for wildcard subdomains. An empty array allows videos to be viewed on any origin. */ + /** Lists the origins allowed to display videos created with this input. Enter allowed origin domains in an array and use `*` for wildcard subdomains. An empty array allows videos to be viewed on any origin. */ export type stream_live_input_recording_allowedOrigins = string[]; - /** Indicates the number of days after which the live inputs recordings will be deleted. When a stream completes and the recording is ready, the value is used to calculate a scheduled deletion date for that recording. Omit the field to indicate no change, or include with a \`null\` value to remove an existing scheduled deletion. */ + /** Indicates the number of days after which the live inputs recordings will be deleted. When a stream completes and the recording is ready, the value is used to calculate a scheduled deletion date for that recording. Omit the field to indicate no change, or include with a `null` value to remove an existing scheduled deletion. */ export type stream_live_input_recording_deletion = number; - /** Specifies the recording behavior for the live input. Set this value to \`off\` to prevent a recording. Set the value to \`automatic\` to begin a recording and transition to on-demand after Stream Live stops receiving input. */ + /** Specifies the recording behavior for the live input. Set this value to `off` to prevent a recording. Set the value to `automatic` to begin a recording and transition to on-demand after Stream Live stops receiving input. */ export type stream_live_input_recording_mode = "off" | "automatic"; - /** Indicates if a video using the live input has the \`requireSignedURLs\` property set. Also enforces access controls on any video recording of the livestream with the live input. */ + /** Indicates if a video using the live input has the `requireSignedURLs` property set. Also enforces access controls on any video recording of the livestream with the live input. */ export type stream_live_input_recording_requireSignedURLs = boolean; /** Records the input to a Cloudflare Stream video. Behavior depends on the mode. In most cases, the video will initially be viewable as a live video and transition to on-demand after a condition is satisfied. */ export interface stream_live_input_recording_settings { @@ -14233,7 +14230,7 @@ export namespace Schemas { requireSignedURLs?: Schemas.stream_live_input_recording_requireSignedURLs; timeoutSeconds?: Schemas.stream_live_input_recording_timeoutSeconds; } - /** Determines the amount of time a live input configured in \`automatic\` mode should wait before a recording transitions from live to on-demand. \`0\` is recommended for most use cases and indicates the platform default should be used. */ + /** Determines the amount of time a live input configured in `automatic` mode should wait before a recording transitions from live to on-demand. `0` is recommended for most use cases and indicates the platform default should be used. */ export type stream_live_input_recording_timeoutSeconds = number; export type stream_live_input_response_collection = Schemas.stream_api$response$common & { result?: { @@ -14251,14 +14248,14 @@ export namespace Schemas { export type stream_live_input_status = string | null; /** The live input ID used to upload a video with Stream Live. */ export type stream_liveInput = string; - /** The maximum duration in seconds for a video upload. Can be set for a video that is not yet uploaded to limit its duration. Uploads that exceed the specified duration will fail during processing. A value of \`-1\` means the value is unknown. */ + /** The maximum duration in seconds for a video upload. Can be set for a video that is not yet uploaded to limit its duration. Uploads that exceed the specified duration will fail during processing. A value of `-1` means the value is unknown. */ export type stream_maxDurationSeconds = number; /** A user modifiable key-value store used to reference other systems of record for managing videos. */ export interface stream_media_metadata { } /** Specifies the processing status for all quality levels for a video. */ export type stream_media_state = "pendingupload" | "downloading" | "queued" | "inprogress" | "ready" | "error"; - /** Specifies a detailed status for a video. If the \`state\` is \`inprogress\` or \`error\`, the \`step\` field returns \`encoding\` or \`manifest\`. If the \`state\` is \`inprogress\`, \`pctComplete\` returns a number between 0 and 100 to indicate the approximate percent of completion. If the \`state\` is \`error\`, \`errorReasonCode\` and \`errorReasonText\` provide additional details. */ + /** Specifies a detailed status for a video. If the `state` is `inprogress` or `error`, the `step` field returns `encoding` or `manifest`. If the `state` is `inprogress`, `pctComplete` returns a number between 0 and 100 to indicate the approximate percent of completion. If the `state` is `error`, `errorReasonCode` and `errorReasonText` provide additional details. */ export interface stream_media_status { errorReasonCode?: Schemas.stream_errorReasonCode; errorReasonText?: Schemas.stream_errorReasonText; @@ -14277,7 +14274,7 @@ export namespace Schemas { export type stream_notificationUrl = string; /** The date and time when the video upload URL is no longer valid for direct user uploads. */ export type stream_oneTimeUploadExpiry = Date; - /** The translucency of the image. A value of \`0.0\` makes the image completely transparent, and \`1.0\` makes the image completely opaque. Note that if the image is already semi-transparent, setting this to \`1.0\` will not make the image completely opaque. */ + /** The translucency of the image. A value of `0.0` makes the image completely transparent, and `1.0` makes the image completely opaque. Note that if the image is already semi-transparent, setting this to `1.0` will not make the image completely opaque. */ export type stream_opacity = number; export interface stream_output { enabled?: Schemas.stream_output_enabled; @@ -14299,7 +14296,7 @@ export namespace Schemas { export type stream_output_streamKey = string; /** The URL an output uses to restream. */ export type stream_output_url = string; - /** The whitespace between the adjacent edges (determined by position) of the video and the image. \`0.0\` indicates no padding, and \`1.0\` indicates a fully padded video width or length, as determined by the algorithm. */ + /** The whitespace between the adjacent edges (determined by position) of the video and the image. `0.0` indicates no padding, and `1.0` indicates a fully padded video width or length, as determined by the algorithm. */ export type stream_padding = number; /** Indicates the size of the entire upload in bytes. The value must be a non-negative integer. */ export type stream_pctComplete = string; @@ -14338,7 +14335,7 @@ export namespace Schemas { } /** The URL used to play live video over WebRTC. */ export type stream_playback_webrtc_url = string; - /** The location of the image. Valid positions are: \`upperRight\`, \`upperLeft\`, \`lowerLeft\`, \`lowerRight\`, and \`center\`. Note that \`center\` ignores the \`padding\` parameter. */ + /** The location of the image. Valid positions are: `upperRight`, `upperLeft`, `lowerLeft`, `lowerRight`, and `center`. Note that `center` ignores the `padding` parameter. */ export type stream_position = string; /** The video's preview page URI. This field is omitted until encoding is complete. */ export type stream_preview = string; @@ -14346,15 +14343,15 @@ export namespace Schemas { export type stream_readyToStream = boolean; /** Indicates the time at which the video became playable. The field is empty if the video is not ready for viewing or the live stream is still in progress. */ export type stream_readyToStreamAt = Date; - /** Indicates whether the video can be a accessed using the UID. When set to \`true\`, a signed token must be generated with a signing key to view the video. */ + /** Indicates whether the video can be a accessed using the UID. When set to `true`, a signed token must be generated with a signing key to view the video. */ export type stream_requireSignedURLs = boolean; - /** The size of the image relative to the overall size of the video. This parameter will adapt to horizontal and vertical videos automatically. \`0.0\` indicates no scaling (use the size of the image as-is), and \`1.0 \`fills the entire video. */ + /** The size of the image relative to the overall size of the video. This parameter will adapt to horizontal and vertical videos automatically. `0.0` indicates no scaling (use the size of the image as-is), and `1.0 `fills the entire video. */ export type stream_scale = number; - /** Indicates the date and time at which the video will be deleted. Omit the field to indicate no change, or include with a \`null\` value to remove an existing scheduled deletion. If specified, must be at least 30 days from upload time. */ + /** Indicates the date and time at which the video will be deleted. Omit the field to indicate no change, or include with a `null` value to remove an existing scheduled deletion. If specified, must be at least 30 days from upload time. */ export type stream_scheduledDeletion = Date; /** Identifier */ export type stream_schemas$identifier = string; - /** Searches over the \`name\` key in the \`meta\` field. This field can be set with or after the upload request. */ + /** Searches over the `name` key in the `meta` field. This field can be set with or after the upload request. */ export type stream_search = string; export interface stream_signed_token_request { /** The optional list of access rule constraints on the token. Access can be blocked or allowed based on an IP, IP range, or by country. Access rules are evaluated from first to last. If a rule matches, the associated action is applied and no further rules are evaluated. */ @@ -14363,11 +14360,11 @@ export namespace Schemas { downloadable?: boolean; /** The optional unix epoch timestamp that specficies the time after a token is not accepted. The maximum time specification is 24 hours from issuing time. If this field is not set, the default is one hour after issuing. */ exp?: number; - /** The optional ID of a Stream signing key. If present, the \`pem\` field is also required. */ + /** The optional ID of a Stream signing key. If present, the `pem` field is also required. */ id?: string; /** The optional unix epoch timestamp that specifies the time before a the token is not accepted. If this field is not set, the default is one hour before issuing. */ nbf?: number; - /** The optional base64 encoded private key in PEM format associated with a Stream signing key. If present, the \`id\` field is also required. */ + /** The optional base64 encoded private key in PEM format associated with a Stream signing key. If present, the `id` field is also required. */ pem?: string; } export type stream_signed_token_response = Schemas.stream_api$response$single & { @@ -14404,7 +14401,7 @@ export namespace Schemas { * Notes: The only supported version of TUS protocol is 1.0.0. */ export type stream_tus_resumable = "1.0.0"; - /** Specifies whether the video is \`vod\` or \`live\`. */ + /** Specifies whether the video is `vod` or `live`. */ export type stream_type = string; export interface stream_update_input_request { defaultCreator?: Schemas.stream_live_input_default_creator; @@ -14419,7 +14416,7 @@ export namespace Schemas { export type stream_upload_length = number; /** * Comma-separated key-value pairs following the TUS protocol specification. Values are Base-64 encoded. - * Supported keys: \`name\`, \`requiresignedurls\`, \`allowedorigins\`, \`thumbnailtimestamppct\`, \`watermark\`, \`scheduleddeletion\`. + * Supported keys: `name`, `requiresignedurls`, `allowedorigins`, `thumbnailtimestamppct`, `watermark`, `scheduleddeletion`. */ export type stream_upload_metadata = string; /** The date and time the media item was uploaded. */ @@ -14431,7 +14428,7 @@ export namespace Schemas { requireSignedURLs?: Schemas.stream_requireSignedURLs; scheduledDeletion?: Schemas.stream_scheduledDeletion; thumbnailTimestampPct?: Schemas.stream_thumbnailTimestampPct; - /** A video's URL. The server must be publicly routable and support \`HTTP HEAD\` requests and \`HTTP GET\` range requests. The server should respond to \`HTTP HEAD\` requests with a \`content-range\` header that includes the size of the file. */ + /** A video's URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file. */ url: string; watermark?: Schemas.stream_watermark_at_upload; } @@ -14791,7 +14788,7 @@ export namespace Schemas { export type teams$devices_dex$single_response = Schemas.teams$devices_api$response$single & { result?: Schemas.teams$devices_device$dex$test$schemas$http; }; - /** If the \`dns_server\` field of a fallback domain is not present, the client will fall back to a best guess of the default/system DNS resolvers unless this policy option is set to \`true\`. */ + /** If the `dns_server` field of a fallback domain is not present, the client will fall back to a best guess of the default/system DNS resolvers unless this policy option is set to `true`. */ export type teams$devices_disable_auto_fallback = boolean; export interface teams$devices_disable_for_time { /** Override code that is valid for 1 hour. */ @@ -14861,7 +14858,7 @@ export namespace Schemas { export type teams$devices_identifier = any; export type teams$devices_include = Schemas.teams$devices_split_tunnel_include[]; export type teams$devices_input = Schemas.teams$devices_file_input_request | Schemas.teams$devices_unique_client_id_input_request | Schemas.teams$devices_domain_joined_input_request | Schemas.teams$devices_os_version_input_request | Schemas.teams$devices_firewall_input_request | Schemas.teams$devices_sentinelone_input_request | Schemas.teams$devices_carbonblack_input_request | Schemas.teams$devices_disk_encryption_input_request | Schemas.teams$devices_application_input_request | Schemas.teams$devices_client_certificate_input_request | Schemas.teams$devices_workspace_one_input_request | Schemas.teams$devices_crowdstrike_input_request | Schemas.teams$devices_intune_input_request | Schemas.teams$devices_kolide_input_request | Schemas.teams$devices_tanium_input_request | Schemas.teams$devices_sentinelone_s2s_input_request; - /** The interval between each posture check with the third-party API. Use \`m\` for minutes (e.g. \`5m\`) and \`h\` for hours (e.g. \`12h\`). */ + /** The interval between each posture check with the third-party API. Use `m` for minutes (e.g. `5m`) and `h` for hours (e.g. `12h`). */ export type teams$devices_interval = string; export interface teams$devices_intune_config_request { /** The Intune client ID. */ @@ -14967,7 +14964,7 @@ export namespace Schemas { export type teams$devices_revoke_devices_request = Schemas.teams$devices_schemas$uuid[]; /** When the device was revoked. */ export type teams$devices_revoked_at = Date; - /** Polling frequency for the WARP client posture check. Default: \`5m\` (poll every five minutes). Minimum: \`1m\`. */ + /** Polling frequency for the WARP client posture check. Default: `5m` (poll every five minutes). Minimum: `1m`. */ export type teams$devices_schedule = string; export type teams$devices_schemas$config_request = Schemas.teams$devices_tls_config_request; export type teams$devices_schemas$config_response = Schemas.teams$devices_tls_config_response; @@ -15032,11 +15029,11 @@ export namespace Schemas { result?: Schemas.teams$devices_device$posture$rules; }; export interface teams$devices_split_tunnel { - /** The address in CIDR format to exclude from the tunnel. If \`address\` is present, \`host\` must not be present. */ + /** The address in CIDR format to exclude from the tunnel. If `address` is present, `host` must not be present. */ address: string; /** A description of the Split Tunnel item, displayed in the client UI. */ description: string; - /** The domain name to exclude from the tunnel. If \`host\` is present, \`address\` must not be present. */ + /** The domain name to exclude from the tunnel. If `host` is present, `address` must not be present. */ host?: string; } export interface teams$devices_split_tunnel_include { @@ -15058,9 +15055,9 @@ export namespace Schemas { /** Whether to allow the user to turn off the WARP switch and disconnect the client. */ export type teams$devices_switch_locked = boolean; export interface teams$devices_tanium_config_request { - /** If present, this id will be passed in the \`CF-Access-Client-ID\` header when hitting the \`api_url\` */ + /** If present, this id will be passed in the `CF-Access-Client-ID` header when hitting the `api_url` */ access_client_id?: string; - /** If present, this secret will be passed in the \`CF-Access-Client-Secret\` header when hitting the \`api_url\` */ + /** If present, this secret will be passed in the `CF-Access-Client-Secret` header when hitting the `api_url` */ access_client_secret?: string; /** The Tanium API URL. */ api_url: string; @@ -15252,7 +15249,7 @@ export namespace Schemas { export type tunnel_config_response_single = Schemas.tunnel_api$response$single & { result?: {}; }; - /** Indicates if this is a locally or remotely configured tunnel. If \`local\`, manage the tunnel using a YAML file on the origin machine. If \`cloudflare\`, manage the tunnel on the Zero Trust dashboard or using the [Cloudflare Tunnel configuration](https://api.cloudflare.com/#cloudflare-tunnel-configuration-properties) endpoint. */ + /** Indicates if this is a locally or remotely configured tunnel. If `local`, manage the tunnel using a YAML file on the origin machine. If `cloudflare`, manage the tunnel on the Zero Trust dashboard or using the [Cloudflare Tunnel configuration](https://api.cloudflare.com/#cloudflare-tunnel-configuration-properties) endpoint. */ export type tunnel_config_src = "local" | "cloudflare"; /** The version of the remote tunnel configuration. Used internally to sync cloudflared with the Zero Trust dashboard. */ export type tunnel_config_version = number; @@ -15265,13 +15262,13 @@ export namespace Schemas { export type tunnel_connection_id = string; /** The Cloudflare Tunnel connections between your origin and Cloudflare's edge. */ export type tunnel_connections = Schemas.tunnel_schemas$connection[]; - /** Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If \`null\`, the tunnel is inactive. */ + /** Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If `null`, the tunnel is inactive. */ export type tunnel_conns_active_at = (Date) | null; - /** Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If \`null\`, the tunnel is active. */ + /** Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If `null`, the tunnel is active. */ export type tunnel_conns_inactive_at = (Date) | null; /** Timestamp of when the tunnel was created. */ export type tunnel_created_at = Date; - /** Timestamp of when the tunnel was deleted. If \`null\`, the tunnel has not been deleted. */ + /** Timestamp of when the tunnel was deleted. If `null`, the tunnel has not been deleted. */ export type tunnel_deleted_at = (Date) | null; export type tunnel_empty_response = Schemas.tunnel_api$response$common & { result?: {}; @@ -15299,9 +15296,9 @@ export namespace Schemas { export type tunnel_ip_network = string; /** IP/CIDR range in URL-encoded format */ export type tunnel_ip_network_encoded = string; - /** If \`true\`, this virtual network is the default for the account. */ + /** If `true`, this virtual network is the default for the account. */ export type tunnel_is_default_network = boolean; - /** Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If \`true\`, the connection has disconnected but is still being tracked. If \`false\`, the connection is actively serving traffic. */ + /** Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If `true`, the connection has disconnected but is still being tracked. If `false`, the connection is actively serving traffic. */ export type tunnel_is_pending_reconnect = boolean; export type tunnel_legacy$tunnel$response$collection = Schemas.tunnel_api$response$collection & { result?: Schemas.tunnel_argo$tunnel[]; @@ -15359,7 +15356,7 @@ export namespace Schemas { } /** Number of results to display. */ export type tunnel_per_page = number; - /** If \`true\`, the tunnel can be configured remotely from the Zero Trust dashboard. If \`false\`, the tunnel must be configured locally on the origin machine. */ + /** If `true`, the tunnel can be configured remotely from the Zero Trust dashboard. If `false`, the tunnel must be configured locally on the origin machine. */ export type tunnel_remote_config = boolean; export interface tunnel_result_info { /** Total number of results for the requested service */ @@ -15375,7 +15372,7 @@ export namespace Schemas { comment?: Schemas.tunnel_comment; /** Timestamp of when the route was created. */ created_at?: any; - /** Timestamp of when the route was deleted. If \`null\`, the route has not been deleted. */ + /** Timestamp of when the route was deleted. If `null`, the route has not been deleted. */ readonly deleted_at?: Date; id?: Schemas.tunnel_route_id; network?: Schemas.tunnel_ip_network; @@ -15410,13 +15407,13 @@ export namespace Schemas { origin_ip?: string; uuid?: Schemas.tunnel_connection_id; } - /** The status of the tunnel. Valid values are \`inactive\` (tunnel has never been run), \`degraded\` (tunnel is active and able to serve traffic but in an unhealthy state), \`healthy\` (tunnel is active and able to serve traffic), or \`down\` (tunnel can not serve traffic as it has no connections to the Cloudflare Edge). */ + /** The status of the tunnel. Valid values are `inactive` (tunnel has never been run), `degraded` (tunnel is active and able to serve traffic but in an unhealthy state), `healthy` (tunnel is active and able to serve traffic), or `down` (tunnel can not serve traffic as it has no connections to the Cloudflare Edge). */ export type tunnel_status = string; export interface tunnel_teamnet { comment?: Schemas.tunnel_comment; /** Timestamp of when the route was created. */ created_at?: any; - /** Timestamp of when the route was deleted. If \`null\`, the route has not been deleted. */ + /** Timestamp of when the route was deleted. If `null`, the route has not been deleted. */ readonly deleted_at?: Date; id?: Schemas.tunnel_route_id; network?: Schemas.tunnel_ip_network; @@ -15481,7 +15478,7 @@ export namespace Schemas { comment: Schemas.tunnel_schemas$comment; /** Timestamp of when the virtual network was created. */ created_at: any; - /** Timestamp of when the virtual network was deleted. If \`null\`, the virtual network has not been deleted. */ + /** Timestamp of when the virtual network was deleted. If `null`, the virtual network has not been deleted. */ deleted_at?: any; id: Schemas.tunnel_vnet_id; is_default_network: Schemas.tunnel_is_default_network; @@ -16104,7 +16101,7 @@ export namespace Schemas { }; /** Determines type of delivery mechanism. */ export type w2PBr26F_schemas$type = "email" | "pagerduty" | "webhook"; - /** Optional secret that will be passed in the \`cf-webhook-auth\` header when dispatching generic webhook notifications or formatted for supported destinations. Secrets are not returned in any API response body. */ + /** Optional secret that will be passed in the `cf-webhook-auth` header when dispatching generic webhook notifications or formatted for supported destinations. Secrets are not returned in any API response body. */ export type w2PBr26F_secret = string; /** Timestamp of when the notification was dispatched in ISO 8601 format. */ export type w2PBr26F_sent = Date; @@ -16199,11 +16196,11 @@ export namespace Schemas { code: number; message: string; }[]; - /** The state of the rules contained in the rule group. When \`on\`, the rules in the group are configurable/usable. */ + /** The state of the rules contained in the rule group. When `on`, the rules in the group are configurable/usable. */ export type waf$managed$rules_mode = "on" | "off"; - /** When set to \`on\`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ + /** When set to `on`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ export type waf$managed$rules_mode_allow_traditional = "on" | "off"; - /** When set to \`on\`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ + /** When set to `on`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ export type waf$managed$rules_mode_anomaly = "on" | "off"; /** The action that the current WAF rule will perform when triggered. Applies to traditional (deny) WAF rules. */ export type waf$managed$rules_mode_deny_traditional = "default" | "disable" | "simulate" | "block" | "challenge"; @@ -16283,12 +16280,12 @@ export namespace Schemas { }; /** Configures cookie attributes for the waiting room cookie. This encrypted cookie stores a user's status in the waiting room, such as queue position. */ export interface waitingroom_cookie_attributes { - /** Configures the SameSite attribute on the waiting room cookie. Value \`auto\` will be translated to \`lax\` or \`none\` depending if **Always Use HTTPS** is enabled. Note that when using value \`none\`, the secure attribute cannot be set to \`never\`. */ + /** Configures the SameSite attribute on the waiting room cookie. Value `auto` will be translated to `lax` or `none` depending if **Always Use HTTPS** is enabled. Note that when using value `none`, the secure attribute cannot be set to `never`. */ samesite?: "auto" | "lax" | "none" | "strict"; - /** Configures the Secure attribute on the waiting room cookie. Value \`always\` indicates that the Secure attribute will be set in the Set-Cookie header, \`never\` indicates that the Secure attribute will not be set, and \`auto\` will set the Secure attribute depending if **Always Use HTTPS** is enabled. */ + /** Configures the Secure attribute on the waiting room cookie. Value `always` indicates that the Secure attribute will be set in the Set-Cookie header, `never` indicates that the Secure attribute will not be set, and `auto` will set the Secure attribute depending if **Always Use HTTPS** is enabled. */ secure?: "auto" | "always" | "never"; } - /** Appends a '_' + a custom suffix to the end of Cloudflare Waiting Room's cookie name(__cf_waitingroom). If \`cookie_suffix\` is "abcd", the cookie name will be \`__cf_waitingroom_abcd\`. This field is required if using \`additional_routes\`. */ + /** Appends a '_' + a custom suffix to the end of Cloudflare Waiting Room's cookie name(__cf_waitingroom). If `cookie_suffix` is "abcd", the cookie name will be `__cf_waitingroom_abcd`. This field is required if using `additional_routes`. */ export type waitingroom_cookie_suffix = string; export interface waitingroom_create_rule { action: Schemas.waitingroom_rule_action; @@ -16298,25 +16295,25 @@ export namespace Schemas { } /** * Only available for the Waiting Room Advanced subscription. This is a template html file that will be rendered at the edge. If no custom_page_html is provided, the default waiting room will be used. The template is based on mustache ( https://mustache.github.io/ ). There are several variables that are evaluated by the Cloudflare edge: - * 1. {{\`waitTimeKnown\`}} Acts like a boolean value that indicates the behavior to take when wait time is not available, for instance when queue_all is **true**. - * 2. {{\`waitTimeFormatted\`}} Estimated wait time for the user. For example, five minutes. Alternatively, you can use: - * 3. {{\`waitTime\`}} Number of minutes of estimated wait for a user. - * 4. {{\`waitTimeHours\`}} Number of hours of estimated wait for a user (\`Math.floor(waitTime/60)\`). - * 5. {{\`waitTimeHourMinutes\`}} Number of minutes above the \`waitTimeHours\` value (\`waitTime%60\`). - * 6. {{\`queueIsFull\`}} Changes to **true** when no more people can be added to the queue. + * 1. {{`waitTimeKnown`}} Acts like a boolean value that indicates the behavior to take when wait time is not available, for instance when queue_all is **true**. + * 2. {{`waitTimeFormatted`}} Estimated wait time for the user. For example, five minutes. Alternatively, you can use: + * 3. {{`waitTime`}} Number of minutes of estimated wait for a user. + * 4. {{`waitTimeHours`}} Number of hours of estimated wait for a user (`Math.floor(waitTime/60)`). + * 5. {{`waitTimeHourMinutes`}} Number of minutes above the `waitTimeHours` value (`waitTime%60`). + * 6. {{`queueIsFull`}} Changes to **true** when no more people can be added to the queue. * - * To view the full list of variables, look at the \`cfWaitingRoom\` object described under the \`json_response_enabled\` property in other Waiting Room API calls. + * To view the full list of variables, look at the `cfWaitingRoom` object described under the `json_response_enabled` property in other Waiting Room API calls. */ export type waitingroom_custom_page_html = string; - /** The language of the default page template. If no default_template_language is provided, then \`en-US\` (English) will be used. */ + /** The language of the default page template. If no default_template_language is provided, then `en-US` (English) will be used. */ export type waitingroom_default_template_language = "en-US" | "es-ES" | "de-DE" | "fr-FR" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW" | "nl-NL" | "pl-PL" | "id-ID" | "tr-TR" | "ar-EG" | "ru-RU" | "fa-IR"; /** A note that you can use to add more details about the waiting room. */ export type waitingroom_description = string; - /** Only available for the Waiting Room Advanced subscription. Disables automatic renewal of session cookies. If \`true\`, an accepted user will have session_duration minutes to browse the site. After that, they will have to go through the waiting room again. If \`false\`, a user's session cookie will be automatically renewed on every request. */ + /** Only available for the Waiting Room Advanced subscription. Disables automatic renewal of session cookies. If `true`, an accepted user will have session_duration minutes to browse the site. After that, they will have to go through the waiting room again. If `false`, a user's session cookie will be automatically renewed on every request. */ export type waitingroom_disable_session_renewal = boolean; export type waitingroom_estimated_queued_users = number; export type waitingroom_estimated_total_active_users = number; - /** If set, the event will override the waiting room's \`custom_page_html\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `custom_page_html` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_custom_page_html = string | null; /** A note that you can use to add more details about the event. */ export type waitingroom_event_description = string; @@ -16347,7 +16344,7 @@ export namespace Schemas { } export type waitingroom_event_details_session_duration = number; export type waitingroom_event_details_total_active_users = number; - /** If set, the event will override the waiting room's \`disable_session_renewal\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `disable_session_renewal` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_disable_session_renewal = boolean | null; /** An ISO 8601 timestamp that marks the end of the event. */ export type waitingroom_event_end_time = string; @@ -16359,11 +16356,11 @@ export namespace Schemas { }; /** A unique name to identify the event. Only alphanumeric characters, hyphens and underscores are allowed. */ export type waitingroom_event_name = string; - /** If set, the event will override the waiting room's \`new_users_per_minute\` property while it is active. If null, the event will inherit it. This can only be set if the event's \`total_active_users\` property is also set. */ + /** If set, the event will override the waiting room's `new_users_per_minute` property while it is active. If null, the event will inherit it. This can only be set if the event's `total_active_users` property is also set. */ export type waitingroom_event_new_users_per_minute = number | null; - /** An ISO 8601 timestamp that marks when to begin queueing all users before the event starts. The prequeue must start at least five minutes before \`event_start_time\`. */ + /** An ISO 8601 timestamp that marks when to begin queueing all users before the event starts. The prequeue must start at least five minutes before `event_start_time`. */ export type waitingroom_event_prequeue_start_time = string | null; - /** If set, the event will override the waiting room's \`queueing_method\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `queueing_method` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_queueing_method = string | null; export type waitingroom_event_response = Schemas.waitingroom_api$response$single & { result?: Schemas.waitingroom_event_result; @@ -16389,52 +16386,52 @@ export namespace Schemas { suspended?: Schemas.waitingroom_event_suspended; total_active_users?: Schemas.waitingroom_event_total_active_users; } - /** If set, the event will override the waiting room's \`session_duration\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `session_duration` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_session_duration = number | null; - /** If enabled, users in the prequeue will be shuffled randomly at the \`event_start_time\`. Requires that \`prequeue_start_time\` is not null. This is useful for situations when many users will join the event prequeue at the same time and you want to shuffle them to ensure fairness. Naturally, it makes the most sense to enable this feature when the \`queueing_method\` during the event respects ordering such as **fifo**, or else the shuffling may be unnecessary. */ + /** If enabled, users in the prequeue will be shuffled randomly at the `event_start_time`. Requires that `prequeue_start_time` is not null. This is useful for situations when many users will join the event prequeue at the same time and you want to shuffle them to ensure fairness. Naturally, it makes the most sense to enable this feature when the `queueing_method` during the event respects ordering such as **fifo**, or else the shuffling may be unnecessary. */ export type waitingroom_event_shuffle_at_event_start = boolean; - /** An ISO 8601 timestamp that marks the start of the event. At this time, queued users will be processed with the event's configuration. The start time must be at least one minute before \`event_end_time\`. */ + /** An ISO 8601 timestamp that marks the start of the event. At this time, queued users will be processed with the event's configuration. The start time must be at least one minute before `event_end_time`. */ export type waitingroom_event_start_time = string; - /** Suspends or allows an event. If set to \`true\`, the event is ignored and traffic will be handled based on the waiting room configuration. */ + /** Suspends or allows an event. If set to `true`, the event is ignored and traffic will be handled based on the waiting room configuration. */ export type waitingroom_event_suspended = boolean; - /** If set, the event will override the waiting room's \`total_active_users\` property while it is active. If null, the event will inherit it. This can only be set if the event's \`new_users_per_minute\` property is also set. */ + /** If set, the event will override the waiting room's `total_active_users` property while it is active. If null, the event will inherit it. This can only be set if the event's `new_users_per_minute` property is also set. */ export type waitingroom_event_total_active_users = number | null; /** The host name to which the waiting room will be applied (no wildcards). Please do not include the scheme (http:// or https://). The host and path combination must be unique. */ export type waitingroom_host = string; /** Identifier */ export type waitingroom_identifier = string; /** - * Only available for the Waiting Room Advanced subscription. If \`true\`, requests to the waiting room with the header \`Accept: application/json\` will receive a JSON response object with information on the user's status in the waiting room as opposed to the configured static HTML page. This JSON response object has one property \`cfWaitingRoom\` which is an object containing the following fields: - * 1. \`inWaitingRoom\`: Boolean indicating if the user is in the waiting room (always **true**). - * 2. \`waitTimeKnown\`: Boolean indicating if the current estimated wait times are accurate. If **false**, they are not available. - * 3. \`waitTime\`: Valid only when \`waitTimeKnown\` is **true**. Integer indicating the current estimated time in minutes the user will wait in the waiting room. When \`queueingMethod\` is **random**, this is set to \`waitTime50Percentile\`. - * 4. \`waitTime25Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 25% of users that gain entry the fastest (25th percentile). - * 5. \`waitTime50Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 50% of users that gain entry the fastest (50th percentile). In other words, half of the queued users are expected to let into the origin website before \`waitTime50Percentile\` and half are expected to be let in after it. - * 6. \`waitTime75Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 75% of users that gain entry the fastest (75th percentile). - * 7. \`waitTimeFormatted\`: String displaying the \`waitTime\` formatted in English for users. If \`waitTimeKnown\` is **false**, \`waitTimeFormatted\` will display **unavailable**. - * 8. \`queueIsFull\`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. - * 9. \`queueAll\`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website. - * 10. \`lastUpdated\`: String displaying the timestamp as an ISO 8601 string of the user's last attempt to leave the waiting room and be let into the origin website. The user is able to make another attempt after \`refreshIntervalSeconds\` past this time. If the user makes a request too soon, it will be ignored and \`lastUpdated\` will not change. - * 11. \`refreshIntervalSeconds\`: Integer indicating the number of seconds after \`lastUpdated\` until the user is able to make another attempt to leave the waiting room and be let into the origin website. When the \`queueingMethod\` is \`reject\`, there is no specified refresh time — it will always be **zero**. - * 12. \`queueingMethod\`: The queueing method currently used by the waiting room. It is either **fifo**, **random**, **passthrough**, or **reject**. - * 13. \`isFIFOQueue\`: Boolean indicating if the waiting room uses a FIFO (First-In-First-Out) queue. - * 14. \`isRandomQueue\`: Boolean indicating if the waiting room uses a Random queue where users gain access randomly. - * 15. \`isPassthroughQueue\`: Boolean indicating if the waiting room uses a passthrough queue. Keep in mind that when passthrough is enabled, this JSON response will only exist when \`queueAll\` is **true** or \`isEventPrequeueing\` is **true** because in all other cases requests will go directly to the origin. - * 16. \`isRejectQueue\`: Boolean indicating if the waiting room uses a reject queue. - * 17. \`isEventActive\`: Boolean indicating if an event is currently occurring. Events are able to change a waiting room's behavior during a specified period of time. For additional information, look at the event properties \`prequeue_start_time\`, \`event_start_time\`, and \`event_end_time\` in the documentation for creating waiting room events. Events are considered active between these start and end times, as well as during the prequeueing period if it exists. - * 18. \`isEventPrequeueing\`: Valid only when \`isEventActive\` is **true**. Boolean indicating if an event is currently prequeueing users before it starts. - * 19. \`timeUntilEventStart\`: Valid only when \`isEventPrequeueing\` is **true**. Integer indicating the number of minutes until the event starts. - * 20. \`timeUntilEventStartFormatted\`: String displaying the \`timeUntilEventStart\` formatted in English for users. If \`isEventPrequeueing\` is **false**, \`timeUntilEventStartFormatted\` will display **unavailable**. - * 21. \`timeUntilEventEnd\`: Valid only when \`isEventActive\` is **true**. Integer indicating the number of minutes until the event ends. - * 22. \`timeUntilEventEndFormatted\`: String displaying the \`timeUntilEventEnd\` formatted in English for users. If \`isEventActive\` is **false**, \`timeUntilEventEndFormatted\` will display **unavailable**. - * 23. \`shuffleAtEventStart\`: Valid only when \`isEventActive\` is **true**. Boolean indicating if the users in the prequeue are shuffled randomly when the event starts. + * Only available for the Waiting Room Advanced subscription. If `true`, requests to the waiting room with the header `Accept: application/json` will receive a JSON response object with information on the user's status in the waiting room as opposed to the configured static HTML page. This JSON response object has one property `cfWaitingRoom` which is an object containing the following fields: + * 1. `inWaitingRoom`: Boolean indicating if the user is in the waiting room (always **true**). + * 2. `waitTimeKnown`: Boolean indicating if the current estimated wait times are accurate. If **false**, they are not available. + * 3. `waitTime`: Valid only when `waitTimeKnown` is **true**. Integer indicating the current estimated time in minutes the user will wait in the waiting room. When `queueingMethod` is **random**, this is set to `waitTime50Percentile`. + * 4. `waitTime25Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 25% of users that gain entry the fastest (25th percentile). + * 5. `waitTime50Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 50% of users that gain entry the fastest (50th percentile). In other words, half of the queued users are expected to let into the origin website before `waitTime50Percentile` and half are expected to be let in after it. + * 6. `waitTime75Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 75% of users that gain entry the fastest (75th percentile). + * 7. `waitTimeFormatted`: String displaying the `waitTime` formatted in English for users. If `waitTimeKnown` is **false**, `waitTimeFormatted` will display **unavailable**. + * 8. `queueIsFull`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. + * 9. `queueAll`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website. + * 10. `lastUpdated`: String displaying the timestamp as an ISO 8601 string of the user's last attempt to leave the waiting room and be let into the origin website. The user is able to make another attempt after `refreshIntervalSeconds` past this time. If the user makes a request too soon, it will be ignored and `lastUpdated` will not change. + * 11. `refreshIntervalSeconds`: Integer indicating the number of seconds after `lastUpdated` until the user is able to make another attempt to leave the waiting room and be let into the origin website. When the `queueingMethod` is `reject`, there is no specified refresh time — it will always be **zero**. + * 12. `queueingMethod`: The queueing method currently used by the waiting room. It is either **fifo**, **random**, **passthrough**, or **reject**. + * 13. `isFIFOQueue`: Boolean indicating if the waiting room uses a FIFO (First-In-First-Out) queue. + * 14. `isRandomQueue`: Boolean indicating if the waiting room uses a Random queue where users gain access randomly. + * 15. `isPassthroughQueue`: Boolean indicating if the waiting room uses a passthrough queue. Keep in mind that when passthrough is enabled, this JSON response will only exist when `queueAll` is **true** or `isEventPrequeueing` is **true** because in all other cases requests will go directly to the origin. + * 16. `isRejectQueue`: Boolean indicating if the waiting room uses a reject queue. + * 17. `isEventActive`: Boolean indicating if an event is currently occurring. Events are able to change a waiting room's behavior during a specified period of time. For additional information, look at the event properties `prequeue_start_time`, `event_start_time`, and `event_end_time` in the documentation for creating waiting room events. Events are considered active between these start and end times, as well as during the prequeueing period if it exists. + * 18. `isEventPrequeueing`: Valid only when `isEventActive` is **true**. Boolean indicating if an event is currently prequeueing users before it starts. + * 19. `timeUntilEventStart`: Valid only when `isEventPrequeueing` is **true**. Integer indicating the number of minutes until the event starts. + * 20. `timeUntilEventStartFormatted`: String displaying the `timeUntilEventStart` formatted in English for users. If `isEventPrequeueing` is **false**, `timeUntilEventStartFormatted` will display **unavailable**. + * 21. `timeUntilEventEnd`: Valid only when `isEventActive` is **true**. Integer indicating the number of minutes until the event ends. + * 22. `timeUntilEventEndFormatted`: String displaying the `timeUntilEventEnd` formatted in English for users. If `isEventActive` is **false**, `timeUntilEventEndFormatted` will display **unavailable**. + * 23. `shuffleAtEventStart`: Valid only when `isEventActive` is **true**. Boolean indicating if the users in the prequeue are shuffled randomly when the event starts. * * An example cURL to a waiting room could be: * - * curl -X GET "https://example.com/waitingroom" \\ + * curl -X GET "https://example.com/waitingroom" \ * -H "Accept: application/json" * - * If \`json_response_enabled\` is **true** and the request hits the waiting room, an example JSON response when \`queueingMethod\` is **fifo** and no event is active could be: + * If `json_response_enabled` is **true** and the request hits the waiting room, an example JSON response when `queueingMethod` is **fifo** and no event is active could be: * * { * "cfWaitingRoom": { @@ -16464,7 +16461,7 @@ export namespace Schemas { * } * } * - * If \`json_response_enabled\` is **true** and the request hits the waiting room, an example JSON response when \`queueingMethod\` is **random** and an event is active could be: + * If `json_response_enabled` is **true** and the request hits the waiting room, an example JSON response when `queueingMethod` is **random** and an event is active could be: * * { * "cfWaitingRoom": { @@ -16562,14 +16559,14 @@ export namespace Schemas { suspended?: Schemas.waitingroom_suspended; total_active_users: Schemas.waitingroom_total_active_users; } - /** If queue_all is \`true\`, all the traffic that is coming to a route will be sent to the waiting room. No new traffic can get to the route once this field is set and estimated time will become unavailable. */ + /** If queue_all is `true`, all the traffic that is coming to a route will be sent to the waiting room. No new traffic can get to the route once this field is set and estimated time will become unavailable. */ export type waitingroom_queue_all = boolean; /** - * Sets the queueing method used by the waiting room. Changing this parameter from the **default** queueing method is only available for the Waiting Room Advanced subscription. Regardless of the queueing method, if \`queue_all\` is enabled or an event is prequeueing, users in the waiting room will not be accepted to the origin. These users will always see a waiting room page that refreshes automatically. The valid queueing methods are: - * 1. \`fifo\` **(default)**: First-In-First-Out queue where customers gain access in the order they arrived. - * 2. \`random\`: Random queue where customers gain access randomly, regardless of arrival time. - * 3. \`passthrough\`: Users will pass directly through the waiting room and into the origin website. As a result, any configured limits will not be respected while this is enabled. This method can be used as an alternative to disabling a waiting room (with \`suspended\`) so that analytics are still reported. This can be used if you wish to allow all traffic normally, but want to restrict traffic during a waiting room event, or vice versa. - * 4. \`reject\`: Users will be immediately rejected from the waiting room. As a result, no users will reach the origin website while this is enabled. This can be used if you wish to reject all traffic while performing maintenance, block traffic during a specified period of time (an event), or block traffic while events are not occurring. Consider a waiting room used for vaccine distribution that only allows traffic during sign-up events, and otherwise blocks all traffic. For this case, the waiting room uses \`reject\`, and its events override this with \`fifo\`, \`random\`, or \`passthrough\`. When this queueing method is enabled and neither \`queueAll\` is enabled nor an event is prequeueing, the waiting room page **will not refresh automatically**. + * Sets the queueing method used by the waiting room. Changing this parameter from the **default** queueing method is only available for the Waiting Room Advanced subscription. Regardless of the queueing method, if `queue_all` is enabled or an event is prequeueing, users in the waiting room will not be accepted to the origin. These users will always see a waiting room page that refreshes automatically. The valid queueing methods are: + * 1. `fifo` **(default)**: First-In-First-Out queue where customers gain access in the order they arrived. + * 2. `random`: Random queue where customers gain access randomly, regardless of arrival time. + * 3. `passthrough`: Users will pass directly through the waiting room and into the origin website. As a result, any configured limits will not be respected while this is enabled. This method can be used as an alternative to disabling a waiting room (with `suspended`) so that analytics are still reported. This can be used if you wish to allow all traffic normally, but want to restrict traffic during a waiting room event, or vice versa. + * 4. `reject`: Users will be immediately rejected from the waiting room. As a result, no users will reach the origin website while this is enabled. This can be used if you wish to reject all traffic while performing maintenance, block traffic during a specified period of time (an event), or block traffic while events are not occurring. Consider a waiting room used for vaccine distribution that only allows traffic during sign-up events, and otherwise blocks all traffic. For this case, the waiting room uses `reject`, and its events override this with `fifo`, `random`, or `passthrough`. When this queueing method is enabled and neither `queueAll` is enabled nor an event is prequeueing, the waiting room page **will not refresh automatically**. */ export type waitingroom_queueing_method = "fifo" | "random" | "passthrough" | "reject"; /** HTTP status code returned to a user while in the queue. */ @@ -16650,7 +16647,7 @@ export namespace Schemas { status?: Schemas.waitingroom_status; }; }; - /** Suspends or allows traffic going to the waiting room. If set to \`true\`, the traffic will not go to the waiting room. */ + /** Suspends or allows traffic going to the waiting room. If set to `true`, the traffic will not go to the waiting room. */ export type waitingroom_suspended = boolean; export type waitingroom_timestamp = Date; /** Sets the total number of active user sessions on the route at a point in time. A route is a combination of host and path on which a waiting room is available. This value is used as a baseline for the total number of active user sessions on the route. It is possible to have a situation where there are more or less active users sessions on the route based on the traffic patterns at that time around the world. */ @@ -17111,7 +17108,7 @@ export namespace Schemas { /** Deprecated. Deployment metadata for internal usage. */ export type workers_pipeline_hash = string; export interface workers_placement_config { - /** Enables [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Only \`"smart"\` is currently supported */ + /** Enables [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Only `"smart"` is currently supported */ mode?: "smart"; } /** Specifies the placement mode for the Worker (e.g. 'smart'). */ @@ -17529,7 +17526,7 @@ export namespace Schemas { result?: Schemas.zaraz_zaraz$workflow; }; export type zaraz_zone$identifier = Schemas.zaraz_identifier; - /** The action to preform when the associated traffic, identity, and device posture expressions are either absent or evaluate to \`true\`. */ + /** The action to preform when the associated traffic, identity, and device posture expressions are either absent or evaluate to `true`. */ export type zero$trust$gateway_action = "on" | "off" | "allow" | "block" | "scan" | "noscan" | "safesearch" | "ytrestricted" | "isolate" | "noisolate" | "override" | "l4_override" | "egress" | "audit_ssh"; /** Activity log settings. */ export interface zero$trust$gateway_activity$log$settings { @@ -17572,7 +17569,7 @@ export namespace Schemas { }; /** The identifier for this application. There is only one application per ID. */ export type zero$trust$gateway_app_id = number; - /** The identifier for the type of this application. There can be many applications with the same type. This refers to the \`id\` of a returned application type. */ + /** The identifier for the type of this application. There can be many applications with the same type. This refers to the `id` of a returned application type. */ export type zero$trust$gateway_app_type_id = number; export interface zero$trust$gateway_application { application_type_id?: Schemas.zero$trust$gateway_app_type_id; @@ -17617,7 +17614,7 @@ export namespace Schemas { } /** DLP body scanning settings. */ export interface zero$trust$gateway_body$scanning$settings { - /** Set the inspection mode to either \`deep\` or \`shallow\`. */ + /** Set the inspection mode to either `deep` or `shallow`. */ inspection_mode?: string; } /** Browser isolation settings. */ @@ -17643,7 +17640,7 @@ export namespace Schemas { }; /** Cloudflare account ID. */ export type zero$trust$gateway_cf_account_id = string; - /** Which account types are allowed to create policies based on this category. \`blocked\` categories are blocked unconditionally for all accounts. \`removalPending\` categories can be removed from policies but not added. \`noBlock\` categories cannot be blocked. */ + /** Which account types are allowed to create policies based on this category. `blocked` categories are blocked unconditionally for all accounts. `removalPending` categories can be removed from policies but not added. `noBlock` categories cannot be blocked. */ export type zero$trust$gateway_class = "free" | "premium" | "blocked" | "removalPending" | "noBlock"; /** True if the location is the default location. */ export type zero$trust$gateway_client$default = boolean; @@ -18240,7 +18237,7 @@ export namespace Schemas { }; /** * Value of the zone setting. - * Notes: Setting a TTL of 0 is equivalent to selecting \`Respect Existing Headers\` + * Notes: Setting a TTL of 0 is equivalent to selecting `Respect Existing Headers` */ export type zones_browser_cache_ttl_value = 0 | 30 | 60 | 120 | 300 | 1200 | 1800 | 3600 | 7200 | 10800 | 14400 | 18000 | 28800 | 43200 | 57600 | 72000 | 86400 | 172800 | 259200 | 345600 | 432000 | 691200 | 1382400 | 2073600 | 2678400 | 5356800 | 16070400 | 31536000; export type zones_browser_check = Schemas.zones_base & { @@ -18351,7 +18348,7 @@ export namespace Schemas { id?: "image_resizing"; value?: Schemas.zones_image_resizing_value; }; - /** Whether the feature is enabled, disabled, or enabled in \`open proxy\` mode. */ + /** Whether the feature is enabled, disabled, or enabled in `open proxy` mode. */ export type zones_image_resizing_value = "on" | "off" | "open"; export type zones_ip_geolocation = Schemas.zones_base & { /** ID of the zone setting. */ @@ -18506,7 +18503,7 @@ export namespace Schemas { }; /** Value of the zone setting. */ export type zones_prefetch_preload_value = "on" | "off"; - /** The priority of the rule, used to define which Page Rule is processed over another. A higher number indicates a higher priority. For example, if you have a catch-all Page Rule (rule A: \`/images/\\\\*\`) but want a more specific Page Rule to take precedence (rule B: \`/images/special/*\`), specify a higher priority for rule B so it overrides rule A. */ + /** The priority of the rule, used to define which Page Rule is processed over another. A higher number indicates a higher priority. For example, if you have a catch-all Page Rule (rule A: `/images/\\*`) but want a more specific Page Rule to take precedence (rule B: `/images/special/*`), specify a higher priority for rule B so it overrides rule A. */ export type zones_priority = number; export type zones_proxy_read_timeout = Schemas.zones_base & { /** ID of the zone setting. */ @@ -18559,7 +18556,7 @@ export namespace Schemas { type?: "temporary" | "permanent"; /** * The URL to redirect the request to. - * Notes: \${num} refers to the position of '*' in the constraint value. + * Notes: ${num} refers to the position of '*' in the constraint value. */ url?: string; }; @@ -18827,15 +18824,15 @@ export namespace Responses { export namespace Parameters { /** * Filter results to only include discovery results sourced from a particular discovery engine - * * \`ML\` - Discovered operations that were sourced using ML API Discovery - * * \`SessionIdentifier\` - Discovered operations that were sourced using Session Identifier API Discovery + * * `ML` - Discovered operations that were sourced using ML API Discovery + * * `SessionIdentifier` - Discovered operations that were sourced using Session Identifier API Discovery */ export type api$shield_api_discovery_origin_parameter = Schemas.api$shield_api_discovery_origin; /** * Filter results to only include discovery results in a particular state. States are as follows - * * \`review\` - Discovered operations that are not saved into API Shield Endpoint Management - * * \`saved\` - Discovered operations that are already saved into API Shield Endpoint Management - * * \`ignored\` - Discovered operations that have been marked as ignored + * * `review` - Discovered operations that are not saved into API Shield Endpoint Management + * * `saved` - Discovered operations that are already saved into API Shield Endpoint Management + * * `ignored` - Discovered operations that have been marked as ignored */ export type api$shield_api_discovery_state_parameter = Schemas.api$shield_api_discovery_state; export type api$shield_diff_parameter = boolean; @@ -18866,22 +18863,22 @@ export namespace RequestBodies { /** Raw javascript content comprising a Worker. Must be in service worker syntax. */ "application/javascript": string; "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present and referenced in the metadata as \`main_module\` or \`body_part\` by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present and referenced in the metadata as `main_module` or `body_part` by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { /** List of bindings available to the worker. */ bindings?: {}[]; - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; /** Date indicating targeted support in the Workers runtime. Backwards incompatible fixes to the runtime following this date will not affect this Worker. */ compatibility_date?: string; - /** Flags that enable or disable certain features in the Workers runtime. Used to enable upcoming features or opt in or out of specific changes not included in a \`compatibility_date\`. */ + /** Flags that enable or disable certain features in the Workers runtime. Used to enable upcoming features or opt in or out of specific changes not included in a `compatibility_date`. */ compatibility_flags?: string[]; /** List of binding types to keep from previous_upload. */ keep_bindings?: string[]; logpush?: Schemas.workers_logpush; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; /** Migrations to apply for Durable Objects associated with this Worker. */ migrations?: Schemas.workers_single_step_migrations | Schemas.workers_stepped_migrations; @@ -18895,7 +18892,7 @@ export namespace RequestBodies { version_tags?: {}; }; } | { - /** Rollback message to be associated with this deployment. Only parsed when query param \`"rollback_to"\` is present. */ + /** Rollback message to be associated with this deployment. Only parsed when query param `"rollback_to"` is present. */ message?: string; }; /** Raw javascript content comprising a Worker. Must be in service worker syntax. */ @@ -20892,7 +20889,7 @@ export interface Parameter$pages$deployment$create$deployment { } export interface RequestBody$pages$deployment$create$deployment { "multipart/form-data": { - /** The branch to build the new deployment from. The \`HEAD\` of the branch will be used. If omitted, the production branch will be used by default. */ + /** The branch to build the new deployment from. The `HEAD` of the branch will be used. If omitted, the production branch will be used by default. */ branch?: string; }; } @@ -22338,13 +22335,13 @@ export interface Parameter$namespace$worker$put$script$content { } export interface RequestBody$namespace$worker$put$script$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -22706,13 +22703,13 @@ export interface Parameter$worker$script$put$content { } export interface RequestBody$worker$script$put$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -22857,13 +22854,13 @@ export interface Parameter$worker$environment$put$script$content { } export interface RequestBody$worker$environment$put$script$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -25575,7 +25572,7 @@ export interface RequestBody$urlscanner$create$scan { /** Take multiple screenshots targeting different device types */ screenshotsResolutions?: ("desktop" | "mobile" | "tablet")[]; url: string; - /** The option \`Public\` means it will be included in listings like recent scans and search results. \`Unlisted\` means it will not be included in the aforementioned listings, users will need to have the scan's ID to access it. A a scan will be automatically marked as unlisted if it fails, if it contains potential PII or other sensitive material. */ + /** The option `Public` means it will be included in listings like recent scans and search results. `Unlisted` means it will not be included in the aforementioned listings, users will need to have the scan's ID to access it. A a scan will be automatically marked as unlisted if it fails, if it contains potential PII or other sensitive material. */ visibility?: "Public" | "Unlisted"; }; } @@ -27646,7 +27643,7 @@ export interface Response$origin$ca$revoke$certificate$Status$4XX { "application/json": Schemas.ApQU2qAj_certificate_response_single_id & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$cloudflare$i$ps$cloudflare$ip$details { - /** Specified as \`jdcloud\` to list IPs used by JD Cloud data centers. */ + /** Specified as `jdcloud` to list IPs used by JD Cloud data centers. */ networks?: string; } export interface Response$cloudflare$i$ps$cloudflare$ip$details$Status$200 { @@ -36709,7 +36706,7 @@ export interface RequestBody$zones$0$patch { "application/json": { paused?: Schemas.zones_paused; /** - * (Deprecated) Please use the \`/zones/{zone_id}/subscription\` API + * (Deprecated) Please use the `/zones/{zone_id}/subscription` API * to update a zone's plan. Changing this value will create/cancel * associated subscriptions. To view available plans for this zone, * see Zone Plans. @@ -36813,15 +36810,15 @@ export interface Parameter$api$shield$api$discovery$retrieve$discovered$operatio diff?: Parameters.api$shield_diff_parameter; /** * Filter results to only include discovery results sourced from a particular discovery engine - * * \`ML\` - Discovered operations that were sourced using ML API Discovery - * * \`SessionIdentifier\` - Discovered operations that were sourced using Session Identifier API Discovery + * * `ML` - Discovered operations that were sourced using ML API Discovery + * * `SessionIdentifier` - Discovered operations that were sourced using Session Identifier API Discovery */ origin?: Parameters.api$shield_api_discovery_origin_parameter; /** * Filter results to only include discovery results in a particular state. States are as follows - * * \`review\` - Discovered operations that are not saved into API Shield Endpoint Management - * * \`saved\` - Discovered operations that are already saved into API Shield Endpoint Management - * * \`ignored\` - Discovered operations that have been marked as ignored + * * `review` - Discovered operations that are not saved into API Shield Endpoint Management + * * `saved` - Discovered operations that are already saved into API Shield Endpoint Management + * * `ignored` - Discovered operations that have been marked as ignored */ state?: Parameters.api$shield_api_discovery_state_parameter; } @@ -37098,7 +37095,7 @@ export interface Parameter$api$shield$schema$validation$extract$operations$from$ page?: Parameters.api$shield_page; /** Maximum number of results per page. */ per_page?: Parameters.api$shield_per_page; - /** Filter results by whether operations exist in API Shield Endpoint Management or not. \`new\` will just return operations from the schema that do not exist in API Shield Endpoint Management. \`existing\` will just return operations from the schema that already exist in API Shield Endpoint Management. */ + /** Filter results by whether operations exist in API Shield Endpoint Management or not. `new` will just return operations from the schema that do not exist in API Shield Endpoint Management. `existing` will just return operations from the schema that already exist in API Shield Endpoint Management. */ operation_status?: "new" | "existing"; } export interface Response$api$shield$schema$validation$extract$operations$from$schema$Status$200 { @@ -37466,13 +37463,13 @@ export interface RequestBody$dns$records$for$a$zone$import$dns$records { /** * BIND config to import. * - * **Tip:** When using cURL, a file can be uploaded using \`--form 'file=@bind_config.txt'\`. + * **Tip:** When using cURL, a file can be uploaded using `--form 'file=@bind_config.txt'`. */ file: string; /** * Whether or not proxiable records should receive the performance and security benefits of Cloudflare. * - * The value should be either \`true\` or \`false\`. + * The value should be either `true` or `false`. */ proxied?: string; }; @@ -37564,7 +37561,7 @@ export interface Parameter$ip$access$rules$for$a$zone$delete$an$ip$access$rule { } export interface RequestBody$ip$access$rules$for$a$zone$delete$an$ip$access$rule { "application/json": { - /** The level to attempt to delete similar rules defined for other zones with the same owner. The default value is \`none\`, which will only delete the current rule. Using \`basic\` will delete rules that match the same action (mode) and configuration, while using \`aggressive\` will delete rules that match the same configuration. */ + /** The level to attempt to delete similar rules defined for other zones with the same owner. The default value is `none`, which will only delete the current rule. Using `basic` will delete rules that match the same action (mode) and configuration, while using `aggressive` will delete rules that match the same configuration. */ cascade?: "none" | "basic" | "aggressive"; }; } @@ -37672,7 +37669,7 @@ export interface Parameter$waf$rules$update$a$waf$rule { } export interface RequestBody$waf$rules$update$a$waf$rule { "application/json": { - /** The mode/action of the rule when triggered. You must use a value from the \`allowed_modes\` array of the current rule. */ + /** The mode/action of the rule when triggered. You must use a value from the `allowed_modes` array of the current rule. */ mode?: "default" | "disable" | "simulate" | "block" | "challenge" | "on" | "off"; }; } @@ -37727,7 +37724,7 @@ export interface Response$zones$0$hold$post$Status$4XX { } export interface Parameter$zones$0$hold$delete { /** - * If \`hold_after\` is provided, the hold will be temporarily disabled, + * If `hold_after` is provided, the hold will be temporarily disabled, * then automatically re-enabled by the system at the time specified * in this RFC3339-formatted timestamp. Otherwise, the hold will be * disabled indefinitely. @@ -50321,7 +50318,7 @@ export interface ApiClient { * List all accounts you have ownership or verified access to. */ export const accounts$list$accounts = (apiClient: ApiClient) => (params: Params$accounts$list$accounts, option?: RequestOption): Promise => { - const uri = \`/accounts\`; + const uri = `/accounts`; const headers = { Accept: "application/json" }; @@ -50343,7 +50340,7 @@ export const accounts$list$accounts = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$notification$alert$types$get$alert$types, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/available_alerts\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/available_alerts`; const headers = { Accept: "application/json" }; @@ -50358,7 +50355,7 @@ export const notification$alert$types$get$alert$types = (apiClien * Get a list of all delivery mechanism types for which an account is eligible. */ export const notification$mechanism$eligibility$get$delivery$mechanism$eligibility = (apiClient: ApiClient) => (params: Params$notification$mechanism$eligibility$get$delivery$mechanism$eligibility, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/eligible\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/eligible`; const headers = { Accept: "application/json" }; @@ -50373,7 +50370,7 @@ export const notification$mechanism$eligibility$get$delivery$mechanism$eligibili * Get a list of all configured PagerDuty services. */ export const notification$destinations$with$pager$duty$list$pager$duty$services = (apiClient: ApiClient) => (params: Params$notification$destinations$with$pager$duty$list$pager$duty$services, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty`; const headers = { Accept: "application/json" }; @@ -50388,7 +50385,7 @@ export const notification$destinations$with$pager$duty$list$pager$duty$services * Deletes all the PagerDuty Services connected to the account. */ export const notification$destinations$with$pager$duty$delete$pager$duty$services = (apiClient: ApiClient) => (params: Params$notification$destinations$with$pager$duty$delete$pager$duty$services, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty`; const headers = { Accept: "application/json" }; @@ -50403,7 +50400,7 @@ export const notification$destinations$with$pager$duty$delete$pager$duty$service * Creates a new token for integrating with PagerDuty. */ export const notification$destinations$with$pager$duty$connect$pager$duty = (apiClient: ApiClient) => (params: Params$notification$destinations$with$pager$duty$connect$pager$duty, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect`; const headers = { Accept: "application/json" }; @@ -50418,7 +50415,7 @@ export const notification$destinations$with$pager$duty$connect$pager$duty = (apiClient: ApiClient) => (params: Params$notification$destinations$with$pager$duty$connect$pager$duty$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect/\${encodeURIComponent(params.parameter.token_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect/${encodeURIComponent(params.parameter.token_id)}`; const headers = { Accept: "application/json" }; @@ -50433,7 +50430,7 @@ export const notification$destinations$with$pager$duty$connect$pager$duty$token * Gets a list of all configured webhook destinations. */ export const notification$webhooks$list$webhooks = (apiClient: ApiClient) => (params: Params$notification$webhooks$list$webhooks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks`; const headers = { Accept: "application/json" }; @@ -50448,7 +50445,7 @@ export const notification$webhooks$list$webhooks = (apiClient: Ap * Creates a new webhook destination. */ export const notification$webhooks$create$a$webhook = (apiClient: ApiClient) => (params: Params$notification$webhooks$create$a$webhook, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50465,7 +50462,7 @@ export const notification$webhooks$create$a$webhook = (apiClient: * Get details for a single webhooks destination. */ export const notification$webhooks$get$a$webhook = (apiClient: ApiClient) => (params: Params$notification$webhooks$get$a$webhook, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { Accept: "application/json" }; @@ -50480,7 +50477,7 @@ export const notification$webhooks$get$a$webhook = (apiClient: Ap * Update a webhook destination. */ export const notification$webhooks$update$a$webhook = (apiClient: ApiClient) => (params: Params$notification$webhooks$update$a$webhook, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50497,7 +50494,7 @@ export const notification$webhooks$update$a$webhook = (apiClient: * Delete a configured webhook destination. */ export const notification$webhooks$delete$a$webhook = (apiClient: ApiClient) => (params: Params$notification$webhooks$delete$a$webhook, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { Accept: "application/json" }; @@ -50509,10 +50506,10 @@ export const notification$webhooks$delete$a$webhook = (apiClient: }; /** * List History - * Gets a list of history records for notifications sent to an account. The records are displayed for last \`x\` number of days based on the zone plan (free = 30, pro = 30, biz = 30, ent = 90). + * Gets a list of history records for notifications sent to an account. The records are displayed for last `x` number of days based on the zone plan (free = 30, pro = 30, biz = 30, ent = 90). */ export const notification$history$list$history = (apiClient: ApiClient) => (params: Params$notification$history$list$history, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/history\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/history`; const headers = { Accept: "application/json" }; @@ -50534,7 +50531,7 @@ export const notification$history$list$history = (apiClient: ApiC * Get a list of all Notification policies. */ export const notification$policies$list$notification$policies = (apiClient: ApiClient) => (params: Params$notification$policies$list$notification$policies, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies`; const headers = { Accept: "application/json" }; @@ -50549,7 +50546,7 @@ export const notification$policies$list$notification$policies = ( * Creates a new Notification policy. */ export const notification$policies$create$a$notification$policy = (apiClient: ApiClient) => (params: Params$notification$policies$create$a$notification$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50566,7 +50563,7 @@ export const notification$policies$create$a$notification$policy = (apiClient: ApiClient) => (params: Params$notification$policies$get$a$notification$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -50581,7 +50578,7 @@ export const notification$policies$get$a$notification$policy = (a * Update a Notification policy. */ export const notification$policies$update$a$notification$policy = (apiClient: ApiClient) => (params: Params$notification$policies$update$a$notification$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50598,7 +50595,7 @@ export const notification$policies$update$a$notification$policy = (apiClient: ApiClient) => (params: Params$notification$policies$delete$a$notification$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -50610,7 +50607,7 @@ export const notification$policies$delete$a$notification$policy = (apiClient: ApiClient) => (params: Params$phishing$url$scanner$submit$suspicious$url$for$scanning, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/brand-protection/submit\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/brand-protection/submit`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50624,7 +50621,7 @@ export const phishing$url$scanner$submit$suspicious$url$for$scanning = (apiClient: ApiClient) => (params: Params$phishing$url$information$get$results$for$a$url$scan, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/brand-protection/url-info\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/brand-protection/url-info`; const headers = { Accept: "application/json" }; @@ -50644,7 +50641,7 @@ export const phishing$url$information$get$results$for$a$url$scan = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$list$cloudflare$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel`; const headers = { Accept: "application/json" }; @@ -50672,7 +50669,7 @@ export const cloudflare$tunnel$list$cloudflare$tunnels = (apiClie * Creates a new Cloudflare Tunnel in an account. */ export const cloudflare$tunnel$create$a$cloudflare$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$create$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50689,7 +50686,7 @@ export const cloudflare$tunnel$create$a$cloudflare$tunnel = (apiC * Fetches a single Cloudflare Tunnel. */ export const cloudflare$tunnel$get$a$cloudflare$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -50704,7 +50701,7 @@ export const cloudflare$tunnel$get$a$cloudflare$tunnel = (apiClie * Deletes a Cloudflare Tunnel from an account. */ export const cloudflare$tunnel$delete$a$cloudflare$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$delete$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50721,7 +50718,7 @@ export const cloudflare$tunnel$delete$a$cloudflare$tunnel = (apiC * Updates an existing Cloudflare Tunnel. */ export const cloudflare$tunnel$update$a$cloudflare$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$update$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50738,7 +50735,7 @@ export const cloudflare$tunnel$update$a$cloudflare$tunnel = (apiC * Gets the configuration for a remotely-managed tunnel */ export const cloudflare$tunnel$configuration$get$configuration = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$configuration$get$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/configurations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/configurations`; const headers = { Accept: "application/json" }; @@ -50753,7 +50750,7 @@ export const cloudflare$tunnel$configuration$get$configuration = * Adds or updates the configuration for a remotely-managed tunnel. */ export const cloudflare$tunnel$configuration$put$configuration = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$configuration$put$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/configurations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/configurations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50770,7 +50767,7 @@ export const cloudflare$tunnel$configuration$put$configuration = * Fetches connection details for a Cloudflare Tunnel. */ export const cloudflare$tunnel$list$cloudflare$tunnel$connections = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$list$cloudflare$tunnel$connections, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { Accept: "application/json" }; @@ -50785,7 +50782,7 @@ export const cloudflare$tunnel$list$cloudflare$tunnel$connections = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50806,7 +50803,7 @@ export const cloudflare$tunnel$clean$up$cloudflare$tunnel$connections = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$get$cloudflare$tunnel$connector, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connectors/\${encodeURIComponent(params.parameter.connector_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connectors/${encodeURIComponent(params.parameter.connector_id)}`; const headers = { Accept: "application/json" }; @@ -50821,7 +50818,7 @@ export const cloudflare$tunnel$get$cloudflare$tunnel$connector = * Gets a management token used to access the management resources (i.e. Streaming Logs) of a tunnel. */ export const cloudflare$tunnel$get$a$cloudflare$tunnel$management$token = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel$management$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/management\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/management`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50838,7 +50835,7 @@ export const cloudflare$tunnel$get$a$cloudflare$tunnel$management$token = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/token\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/token`; const headers = { Accept: "application/json" }; @@ -50853,7 +50850,7 @@ export const cloudflare$tunnel$get$a$cloudflare$tunnel$token = (a * List an account's custom nameservers. */ export const account$level$custom$nameservers$list$account$custom$nameservers = (apiClient: ApiClient) => (params: Params$account$level$custom$nameservers$list$account$custom$nameservers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns`; const headers = { Accept: "application/json" }; @@ -50865,7 +50862,7 @@ export const account$level$custom$nameservers$list$account$custom$nameservers = }; /** Add Account Custom Nameserver */ export const account$level$custom$nameservers$add$account$custom$nameserver = (apiClient: ApiClient) => (params: Params$account$level$custom$nameservers$add$account$custom$nameserver, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50879,7 +50876,7 @@ export const account$level$custom$nameservers$add$account$custom$nameserver = (apiClient: ApiClient) => (params: Params$account$level$custom$nameservers$delete$account$custom$nameserver, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/\${encodeURIComponent(params.parameter.custom_ns_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/${encodeURIComponent(params.parameter.custom_ns_id)}`; const headers = { Accept: "application/json" }; @@ -50891,7 +50888,7 @@ export const account$level$custom$nameservers$delete$account$custom$nameserver = }; /** Get Eligible Zones for Account Custom Nameservers */ export const account$level$custom$nameservers$get$eligible$zones$for$account$custom$nameservers = (apiClient: ApiClient) => (params: Params$account$level$custom$nameservers$get$eligible$zones$for$account$custom$nameservers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/availability\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/availability`; const headers = { Accept: "application/json" }; @@ -50903,7 +50900,7 @@ export const account$level$custom$nameservers$get$eligible$zones$for$account$cus }; /** Verify Account Custom Nameserver Glue Records */ export const account$level$custom$nameservers$verify$account$custom$nameserver$glue$records = (apiClient: ApiClient) => (params: Params$account$level$custom$nameservers$verify$account$custom$nameserver$glue$records, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/verify\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/verify`; const headers = { Accept: "application/json" }; @@ -50918,7 +50915,7 @@ export const account$level$custom$nameservers$verify$account$custom$nameserver$g * Returns a list of D1 databases. */ export const cloudflare$d1$list$databases = (apiClient: ApiClient) => (params: Params$cloudflare$d1$list$databases, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/d1/database\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/d1/database`; const headers = { Accept: "application/json" }; @@ -50939,7 +50936,7 @@ export const cloudflare$d1$list$databases = (apiClient: ApiClient * Returns the created D1 database. */ export const cloudflare$d1$create$database = (apiClient: ApiClient) => (params: Params$cloudflare$d1$create$database, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/d1/database\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/d1/database`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50956,7 +50953,7 @@ export const cloudflare$d1$create$database = (apiClient: ApiClien * List Cloudflare colos that account's devices were connected to during a time period, sorted by usage starting from the most used colo. Colos without traffic are also returned and sorted alphabetically. */ export const dex$endpoints$list$colos = (apiClient: ApiClient) => (params: Params$dex$endpoints$list$colos, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/colos\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/colos`; const headers = { Accept: "application/json" }; @@ -50977,7 +50974,7 @@ export const dex$endpoints$list$colos = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dex$fleet$status$devices, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/devices\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/devices`; const headers = { Accept: "application/json" }; @@ -51006,7 +51003,7 @@ export const dex$fleet$status$devices = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dex$fleet$status$live, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/live\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/live`; const headers = { Accept: "application/json" }; @@ -51025,7 +51022,7 @@ export const dex$fleet$status$live = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dex$fleet$status$over$time, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/over-time\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/over-time`; const headers = {}; const queryParameters: QueryParameters = { time_end: { value: params.parameter.time_end, explode: false }, @@ -51045,7 +51042,7 @@ export const dex$fleet$status$over$time = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dex$endpoints$http$test$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -51068,7 +51065,7 @@ export const dex$endpoints$http$test$details = (apiClient: ApiCli * Get percentiles for an http test for a given time period between 1 hour and 7 days. */ export const dex$endpoints$http$test$percentiles = (apiClient: ApiClient) => (params: Params$dex$endpoints$http$test$percentiles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/\${encodeURIComponent(params.parameter.test_id)}/percentiles\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/${encodeURIComponent(params.parameter.test_id)}/percentiles`; const headers = { Accept: "application/json" }; @@ -51090,7 +51087,7 @@ export const dex$endpoints$http$test$percentiles = (apiClient: Ap * List DEX tests */ export const dex$endpoints$list$tests = (apiClient: ApiClient) => (params: Params$dex$endpoints$list$tests, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/tests\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/tests`; const headers = { Accept: "application/json" }; @@ -51113,7 +51110,7 @@ export const dex$endpoints$list$tests = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dex$endpoints$tests$unique$devices, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/tests/unique-devices\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/tests/unique-devices`; const headers = { Accept: "application/json" }; @@ -51133,7 +51130,7 @@ export const dex$endpoints$tests$unique$devices = (apiClient: Api * Get a breakdown of hops and performance metrics for a specific traceroute test run */ export const dex$endpoints$traceroute$test$result$network$path = (apiClient: ApiClient) => (params: Params$dex$endpoints$traceroute$test$result$network$path, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-test-results/\${encodeURIComponent(params.parameter.test_result_id)}/network-path\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-test-results/${encodeURIComponent(params.parameter.test_result_id)}/network-path`; const headers = { Accept: "application/json" }; @@ -51148,7 +51145,7 @@ export const dex$endpoints$traceroute$test$result$network$path = * Get test details and aggregate performance metrics for an traceroute test for a given time period between 1 hour and 7 days. */ export const dex$endpoints$traceroute$test$details = (apiClient: ApiClient) => (params: Params$dex$endpoints$traceroute$test$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -51171,7 +51168,7 @@ export const dex$endpoints$traceroute$test$details = (apiClient: * Get a breakdown of metrics by hop for individual traceroute test runs */ export const dex$endpoints$traceroute$test$network$path = (apiClient: ApiClient) => (params: Params$dex$endpoints$traceroute$test$network$path, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}/network-path\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}/network-path`; const headers = { Accept: "application/json" }; @@ -51193,7 +51190,7 @@ export const dex$endpoints$traceroute$test$network$path = (apiCli * Get percentiles for a traceroute test for a given time period between 1 hour and 7 days. */ export const dex$endpoints$traceroute$test$percentiles = (apiClient: ApiClient) => (params: Params$dex$endpoints$traceroute$test$percentiles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}/percentiles\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}/percentiles`; const headers = { Accept: "application/json" }; @@ -51215,7 +51212,7 @@ export const dex$endpoints$traceroute$test$percentiles = (apiClie * Fetch all datasets with information about available versions. */ export const dlp$datasets$read$all = (apiClient: ApiClient) => (params: Params$dlp$datasets$read$all, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets`; const headers = { Accept: "application/json" }; @@ -51230,7 +51227,7 @@ export const dlp$datasets$read$all = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dlp$datasets$create, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51247,7 +51244,7 @@ export const dlp$datasets$create = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dlp$datasets$read, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = { Accept: "application/json" }; @@ -51262,7 +51259,7 @@ export const dlp$datasets$read = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dlp$datasets$update, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51281,7 +51278,7 @@ export const dlp$datasets$update = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dlp$datasets$delete, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -51294,7 +51291,7 @@ export const dlp$datasets$delete = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dlp$datasets$create$version, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/upload\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}/upload`; const headers = { Accept: "application/json" }; @@ -51309,7 +51306,7 @@ export const dlp$datasets$create$version = (apiClient: ApiClient< * Upload a new version of a dataset. */ export const dlp$datasets$upload$version = (apiClient: ApiClient) => (params: Params$dlp$datasets$upload$version, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/upload/\${encodeURIComponent(params.parameter.version)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}/upload/${encodeURIComponent(params.parameter.version)}`; const headers = { "Content-Type": "application/octet-stream", Accept: "application/json" @@ -51326,7 +51323,7 @@ export const dlp$datasets$upload$version = (apiClient: ApiClient< * Validates whether this pattern is a valid regular expression. Rejects it if the regular expression is too complex or can match an unbounded-length string. Your regex will be rejected if it uses the Kleene Star -- be sure to bound the maximum number of characters that can be matched. */ export const dlp$pattern$validation$validate$pattern = (apiClient: ApiClient) => (params: Params$dlp$pattern$validation$validate$pattern, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/patterns/validate\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/patterns/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51343,7 +51340,7 @@ export const dlp$pattern$validation$validate$pattern = (apiClient * Gets the current DLP payload log settings for this account. */ export const dlp$payload$log$settings$get$settings = (apiClient: ApiClient) => (params: Params$dlp$payload$log$settings$get$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log`; const headers = { Accept: "application/json" }; @@ -51358,7 +51355,7 @@ export const dlp$payload$log$settings$get$settings = (apiClient: * Updates the DLP payload log settings for this account. */ export const dlp$payload$log$settings$update$settings = (apiClient: ApiClient) => (params: Params$dlp$payload$log$settings$update$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51375,7 +51372,7 @@ export const dlp$payload$log$settings$update$settings = (apiClien * Lists all DLP profiles in an account. */ export const dlp$profiles$list$all$profiles = (apiClient: ApiClient) => (params: Params$dlp$profiles$list$all$profiles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles`; const headers = { Accept: "application/json" }; @@ -51390,7 +51387,7 @@ export const dlp$profiles$list$all$profiles = (apiClient: ApiClie * Fetches a DLP profile by ID. Supports both predefined and custom profiles */ export const dlp$profiles$get$dlp$profile = (apiClient: ApiClient) => (params: Params$dlp$profiles$get$dlp$profile, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/\${encodeURIComponent(params.parameter.profile_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51405,7 +51402,7 @@ export const dlp$profiles$get$dlp$profile = (apiClient: ApiClient * Creates a set of DLP custom profiles. */ export const dlp$profiles$create$custom$profiles = (apiClient: ApiClient) => (params: Params$dlp$profiles$create$custom$profiles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51422,7 +51419,7 @@ export const dlp$profiles$create$custom$profiles = (apiClient: Ap * Fetches a custom DLP profile. */ export const dlp$profiles$get$custom$profile = (apiClient: ApiClient) => (params: Params$dlp$profiles$get$custom$profile, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51437,7 +51434,7 @@ export const dlp$profiles$get$custom$profile = (apiClient: ApiCli * Updates a DLP custom profile. */ export const dlp$profiles$update$custom$profile = (apiClient: ApiClient) => (params: Params$dlp$profiles$update$custom$profile, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51454,7 +51451,7 @@ export const dlp$profiles$update$custom$profile = (apiClient: Api * Deletes a DLP custom profile. */ export const dlp$profiles$delete$custom$profile = (apiClient: ApiClient) => (params: Params$dlp$profiles$delete$custom$profile, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51469,7 +51466,7 @@ export const dlp$profiles$delete$custom$profile = (apiClient: Api * Fetches a predefined DLP profile. */ export const dlp$profiles$get$predefined$profile = (apiClient: ApiClient) => (params: Params$dlp$profiles$get$predefined$profile, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/\${encodeURIComponent(params.parameter.profile_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51484,7 +51481,7 @@ export const dlp$profiles$get$predefined$profile = (apiClient: Ap * Updates a DLP predefined profile. Only supports enabling/disabling entries. */ export const dlp$profiles$update$predefined$profile = (apiClient: ApiClient) => (params: Params$dlp$profiles$update$predefined$profile, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/\${encodeURIComponent(params.parameter.profile_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51501,7 +51498,7 @@ export const dlp$profiles$update$predefined$profile = (apiClient: * List configured DNS Firewall clusters for an account. */ export const dns$firewall$list$dns$firewall$clusters = (apiClient: ApiClient) => (params: Params$dns$firewall$list$dns$firewall$clusters, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall`; const headers = { Accept: "application/json" }; @@ -51521,7 +51518,7 @@ export const dns$firewall$list$dns$firewall$clusters = (apiClient * Create a configured DNS Firewall Cluster. */ export const dns$firewall$create$dns$firewall$cluster = (apiClient: ApiClient) => (params: Params$dns$firewall$create$dns$firewall$cluster, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51538,7 +51535,7 @@ export const dns$firewall$create$dns$firewall$cluster = (apiClien * Show a single configured DNS Firewall cluster for an account. */ export const dns$firewall$dns$firewall$cluster$details = (apiClient: ApiClient) => (params: Params$dns$firewall$dns$firewall$cluster$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { Accept: "application/json" }; @@ -51553,7 +51550,7 @@ export const dns$firewall$dns$firewall$cluster$details = (apiClie * Delete a configured DNS Firewall Cluster. */ export const dns$firewall$delete$dns$firewall$cluster = (apiClient: ApiClient) => (params: Params$dns$firewall$delete$dns$firewall$cluster, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { Accept: "application/json" }; @@ -51568,7 +51565,7 @@ export const dns$firewall$delete$dns$firewall$cluster = (apiClien * Modify a DNS Firewall Cluster configuration. */ export const dns$firewall$update$dns$firewall$cluster = (apiClient: ApiClient) => (params: Params$dns$firewall$update$dns$firewall$cluster, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51585,7 +51582,7 @@ export const dns$firewall$update$dns$firewall$cluster = (apiClien * Gets information about the current Zero Trust account. */ export const zero$trust$accounts$get$zero$trust$account$information = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$get$zero$trust$account$information, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway`; const headers = { Accept: "application/json" }; @@ -51600,7 +51597,7 @@ export const zero$trust$accounts$get$zero$trust$account$information = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$create$zero$trust$account, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway`; const headers = { Accept: "application/json" }; @@ -51615,7 +51612,7 @@ export const zero$trust$accounts$create$zero$trust$account = (api * Fetches all application and application type mappings. */ export const zero$trust$gateway$application$and$application$type$mappings$list$application$and$application$type$mappings = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$application$and$application$type$mappings$list$application$and$application$type$mappings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/app_types\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/app_types`; const headers = { Accept: "application/json" }; @@ -51630,7 +51627,7 @@ export const zero$trust$gateway$application$and$application$type$mappings$list$a * Get all Zero Trust Audit SSH settings for an account. */ export const zero$trust$get$audit$ssh$settings = (apiClient: ApiClient) => (params: Params$zero$trust$get$audit$ssh$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings`; const headers = { Accept: "application/json" }; @@ -51645,7 +51642,7 @@ export const zero$trust$get$audit$ssh$settings = (apiClient: ApiC * Updates Zero Trust Audit SSH settings. */ export const zero$trust$update$audit$ssh$settings = (apiClient: ApiClient) => (params: Params$zero$trust$update$audit$ssh$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51662,7 +51659,7 @@ export const zero$trust$update$audit$ssh$settings = (apiClient: A * Fetches a list of all categories. */ export const zero$trust$gateway$categories$list$categories = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$categories$list$categories, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/categories\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/categories`; const headers = { Accept: "application/json" }; @@ -51677,7 +51674,7 @@ export const zero$trust$gateway$categories$list$categories = (api * Fetches the current Zero Trust account configuration. */ export const zero$trust$accounts$get$zero$trust$account$configuration = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$get$zero$trust$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { Accept: "application/json" }; @@ -51692,7 +51689,7 @@ export const zero$trust$accounts$get$zero$trust$account$configuration = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$update$zero$trust$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51706,10 +51703,10 @@ export const zero$trust$accounts$update$zero$trust$account$configuration = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$patch$zero$trust$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51726,7 +51723,7 @@ export const zero$trust$accounts$patch$zero$trust$account$configuration = (apiClient: ApiClient) => (params: Params$zero$trust$lists$list$zero$trust$lists, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists`; const headers = { Accept: "application/json" }; @@ -51741,7 +51738,7 @@ export const zero$trust$lists$list$zero$trust$lists = (apiClient: * Creates a new Zero Trust list. */ export const zero$trust$lists$create$zero$trust$list = (apiClient: ApiClient) => (params: Params$zero$trust$lists$create$zero$trust$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51758,7 +51755,7 @@ export const zero$trust$lists$create$zero$trust$list = (apiClient * Fetches a single Zero Trust list. */ export const zero$trust$lists$zero$trust$list$details = (apiClient: ApiClient) => (params: Params$zero$trust$lists$zero$trust$list$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -51773,7 +51770,7 @@ export const zero$trust$lists$zero$trust$list$details = (apiClien * Updates a configured Zero Trust list. */ export const zero$trust$lists$update$zero$trust$list = (apiClient: ApiClient) => (params: Params$zero$trust$lists$update$zero$trust$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51790,7 +51787,7 @@ export const zero$trust$lists$update$zero$trust$list = (apiClient * Deletes a Zero Trust list. */ export const zero$trust$lists$delete$zero$trust$list = (apiClient: ApiClient) => (params: Params$zero$trust$lists$delete$zero$trust$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -51805,7 +51802,7 @@ export const zero$trust$lists$delete$zero$trust$list = (apiClient * Appends or removes an item from a configured Zero Trust list. */ export const zero$trust$lists$patch$zero$trust$list = (apiClient: ApiClient) => (params: Params$zero$trust$lists$patch$zero$trust$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51822,7 +51819,7 @@ export const zero$trust$lists$patch$zero$trust$list = (apiClient: * Fetches all items in a single Zero Trust list. */ export const zero$trust$lists$zero$trust$list$items = (apiClient: ApiClient) => (params: Params$zero$trust$lists$zero$trust$list$items, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { Accept: "application/json" }; @@ -51837,7 +51834,7 @@ export const zero$trust$lists$zero$trust$list$items = (apiClient: * Fetches Zero Trust Gateway locations for an account. */ export const zero$trust$gateway$locations$list$zero$trust$gateway$locations = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$locations$list$zero$trust$gateway$locations, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations`; const headers = { Accept: "application/json" }; @@ -51852,7 +51849,7 @@ export const zero$trust$gateway$locations$list$zero$trust$gateway$locations = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$locations$create$zero$trust$gateway$location, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51869,7 +51866,7 @@ export const zero$trust$gateway$locations$create$zero$trust$gateway$location = < * Fetches a single Zero Trust Gateway location. */ export const zero$trust$gateway$locations$zero$trust$gateway$location$details = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$locations$zero$trust$gateway$location$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { Accept: "application/json" }; @@ -51884,7 +51881,7 @@ export const zero$trust$gateway$locations$zero$trust$gateway$location$details = * Updates a configured Zero Trust Gateway location. */ export const zero$trust$gateway$locations$update$zero$trust$gateway$location = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$locations$update$zero$trust$gateway$location, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51901,7 +51898,7 @@ export const zero$trust$gateway$locations$update$zero$trust$gateway$location = < * Deletes a configured Zero Trust Gateway location. */ export const zero$trust$gateway$locations$delete$zero$trust$gateway$location = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$locations$delete$zero$trust$gateway$location, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { Accept: "application/json" }; @@ -51916,7 +51913,7 @@ export const zero$trust$gateway$locations$delete$zero$trust$gateway$location = < * Fetches the current logging settings for Zero Trust account. */ export const zero$trust$accounts$get$logging$settings$for$the$zero$trust$account = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$get$logging$settings$for$the$zero$trust$account, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/logging\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/logging`; const headers = { Accept: "application/json" }; @@ -51931,7 +51928,7 @@ export const zero$trust$accounts$get$logging$settings$for$the$zero$trust$account * Updates logging settings for the current Zero Trust account. */ export const zero$trust$accounts$update$logging$settings$for$the$zero$trust$account = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$update$logging$settings$for$the$zero$trust$account, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/logging\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/logging`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51948,7 +51945,7 @@ export const zero$trust$accounts$update$logging$settings$for$the$zero$trust$acco * Fetches a single Zero Trust Gateway proxy endpoint. */ export const zero$trust$gateway$proxy$endpoints$list$proxy$endpoints = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$proxy$endpoints$list$proxy$endpoints, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints`; const headers = { Accept: "application/json" }; @@ -51963,7 +51960,7 @@ export const zero$trust$gateway$proxy$endpoints$list$proxy$endpoints = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$proxy$endpoints$create$proxy$endpoint, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51980,7 +51977,7 @@ export const zero$trust$gateway$proxy$endpoints$create$proxy$endpoint = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$proxy$endpoints$proxy$endpoint$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { Accept: "application/json" }; @@ -51995,7 +51992,7 @@ export const zero$trust$gateway$proxy$endpoints$proxy$endpoint$details = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$proxy$endpoints$delete$proxy$endpoint, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { Accept: "application/json" }; @@ -52010,7 +52007,7 @@ export const zero$trust$gateway$proxy$endpoints$delete$proxy$endpoint = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$proxy$endpoints$update$proxy$endpoint, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52027,7 +52024,7 @@ export const zero$trust$gateway$proxy$endpoints$update$proxy$endpoint = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$rules$list$zero$trust$gateway$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules`; const headers = { Accept: "application/json" }; @@ -52042,7 +52039,7 @@ export const zero$trust$gateway$rules$list$zero$trust$gateway$rules = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$rules$create$zero$trust$gateway$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52059,7 +52056,7 @@ export const zero$trust$gateway$rules$create$zero$trust$gateway$rule = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$rules$zero$trust$gateway$rule$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -52074,7 +52071,7 @@ export const zero$trust$gateway$rules$zero$trust$gateway$rule$details = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$rules$update$zero$trust$gateway$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52091,7 +52088,7 @@ export const zero$trust$gateway$rules$update$zero$trust$gateway$rule = (apiClient: ApiClient) => (params: Params$zero$trust$gateway$rules$delete$zero$trust$gateway$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -52106,7 +52103,7 @@ export const zero$trust$gateway$rules$delete$zero$trust$gateway$rule = (apiClient: ApiClient) => (params: Params$list$hyperdrive, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs`; const headers = { Accept: "application/json" }; @@ -52121,7 +52118,7 @@ export const list$hyperdrive = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$create$hyperdrive, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52138,7 +52135,7 @@ export const create$hyperdrive = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$get$hyperdrive, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { Accept: "application/json" }; @@ -52153,7 +52150,7 @@ export const get$hyperdrive = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$update$hyperdrive, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52170,7 +52167,7 @@ export const update$hyperdrive = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$delete$hyperdrive, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { Accept: "application/json" }; @@ -52185,7 +52182,7 @@ export const delete$hyperdrive = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$cloudflare$images$list$images, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1`; const headers = { Accept: "application/json" }; @@ -52206,7 +52203,7 @@ export const cloudflare$images$list$images = (apiClient: ApiClien * An image can be uploaded by sending an image file or passing an accessible to an API url. */ export const cloudflare$images$upload$an$image$via$url = (apiClient: ApiClient) => (params: Params$cloudflare$images$upload$an$image$via$url, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52223,7 +52220,7 @@ export const cloudflare$images$upload$an$image$via$url = (apiClie * Fetch details for a single image. */ export const cloudflare$images$image$details = (apiClient: ApiClient) => (params: Params$cloudflare$images$image$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { Accept: "application/json" }; @@ -52238,7 +52235,7 @@ export const cloudflare$images$image$details = (apiClient: ApiCli * Delete an image on Cloudflare Images. On success, all copies of the image are deleted and purged from cache. */ export const cloudflare$images$delete$image = (apiClient: ApiClient) => (params: Params$cloudflare$images$delete$image, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { Accept: "application/json" }; @@ -52253,7 +52250,7 @@ export const cloudflare$images$delete$image = (apiClient: ApiClie * Update image access control. On access control change, all copies of the image are purged from cache. */ export const cloudflare$images$update$image = (apiClient: ApiClient) => (params: Params$cloudflare$images$update$image, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52270,7 +52267,7 @@ export const cloudflare$images$update$image = (apiClient: ApiClie * Fetch base image. For most images this will be the originally uploaded file. For larger images it can be a near-lossless version of the original. */ export const cloudflare$images$base$image = (apiClient: ApiClient) => (params: Params$cloudflare$images$base$image, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}/blob\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}/blob`; const headers = { Accept: "image/*" }; @@ -52285,7 +52282,7 @@ export const cloudflare$images$base$image = (apiClient: ApiClient * Lists your signing keys. These can be found on your Cloudflare Images dashboard. */ export const cloudflare$images$keys$list$signing$keys = (apiClient: ApiClient) => (params: Params$cloudflare$images$keys$list$signing$keys, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/keys\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/keys`; const headers = { Accept: "application/json" }; @@ -52300,7 +52297,7 @@ export const cloudflare$images$keys$list$signing$keys = (apiClien * Fetch usage statistics details for Cloudflare Images. */ export const cloudflare$images$images$usage$statistics = (apiClient: ApiClient) => (params: Params$cloudflare$images$images$usage$statistics, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/stats\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/stats`; const headers = { Accept: "application/json" }; @@ -52315,7 +52312,7 @@ export const cloudflare$images$images$usage$statistics = (apiClie * Lists existing variants. */ export const cloudflare$images$variants$list$variants = (apiClient: ApiClient) => (params: Params$cloudflare$images$variants$list$variants, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants`; const headers = { Accept: "application/json" }; @@ -52330,7 +52327,7 @@ export const cloudflare$images$variants$list$variants = (apiClien * Specify variants that allow you to resize images for different use cases. */ export const cloudflare$images$variants$create$a$variant = (apiClient: ApiClient) => (params: Params$cloudflare$images$variants$create$a$variant, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52347,7 +52344,7 @@ export const cloudflare$images$variants$create$a$variant = (apiCl * Fetch details for a single variant. */ export const cloudflare$images$variants$variant$details = (apiClient: ApiClient) => (params: Params$cloudflare$images$variants$variant$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { Accept: "application/json" }; @@ -52362,7 +52359,7 @@ export const cloudflare$images$variants$variant$details = (apiCli * Deleting a variant purges the cache for all images associated with the variant. */ export const cloudflare$images$variants$delete$a$variant = (apiClient: ApiClient) => (params: Params$cloudflare$images$variants$delete$a$variant, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { Accept: "application/json" }; @@ -52377,7 +52374,7 @@ export const cloudflare$images$variants$delete$a$variant = (apiCl * Updating a variant purges the cache for all images associated with the variant. */ export const cloudflare$images$variants$update$a$variant = (apiClient: ApiClient) => (params: Params$cloudflare$images$variants$update$a$variant, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52395,7 +52392,7 @@ export const cloudflare$images$variants$update$a$variant = (apiCl * Endpoint returns continuation_token if more images are present. */ export const cloudflare$images$list$images$v2 = (apiClient: ApiClient) => (params: Params$cloudflare$images$list$images$v2, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v2\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v2`; const headers = { Accept: "application/json" }; @@ -52413,10 +52410,10 @@ export const cloudflare$images$list$images$v2 = (apiClient: ApiCl }; /** * Create authenticated direct upload URL V2 - * Direct uploads allow users to upload images without API keys. A common use case are web apps, client-side applications, or mobile devices where users upload content directly to Cloudflare Images. This method creates a draft record for a future image. It returns an upload URL and an image identifier. To verify if the image itself has been uploaded, send an image details request (accounts/:account_identifier/images/v1/:identifier), and check that the \`draft: true\` property is not present. + * Direct uploads allow users to upload images without API keys. A common use case are web apps, client-side applications, or mobile devices where users upload content directly to Cloudflare Images. This method creates a draft record for a future image. It returns an upload URL and an image identifier. To verify if the image itself has been uploaded, send an image details request (accounts/:account_identifier/images/v1/:identifier), and check that the `draft: true` property is not present. */ export const cloudflare$images$create$authenticated$direct$upload$url$v$2 = (apiClient: ApiClient) => (params: Params$cloudflare$images$create$authenticated$direct$upload$url$v$2, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v2/direct_upload\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v2/direct_upload`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52430,7 +52427,7 @@ export const cloudflare$images$create$authenticated$direct$upload$url$v$2 = (apiClient: ApiClient) => (params: Params$asn$intelligence$get$asn$overview, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/asn/\${encodeURIComponent(params.parameter.asn)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/asn/${encodeURIComponent(params.parameter.asn)}`; const headers = { Accept: "application/json" }; @@ -52442,7 +52439,7 @@ export const asn$intelligence$get$asn$overview = (apiClient: ApiC }; /** Get ASN Subnets */ export const asn$intelligence$get$asn$subnets = (apiClient: ApiClient) => (params: Params$asn$intelligence$get$asn$subnets, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/asn/\${encodeURIComponent(params.parameter.asn)}/subnets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/asn/${encodeURIComponent(params.parameter.asn)}/subnets`; const headers = { Accept: "application/json" }; @@ -52454,7 +52451,7 @@ export const asn$intelligence$get$asn$subnets = (apiClient: ApiCl }; /** Get Passive DNS by IP */ export const passive$dns$by$ip$get$passive$dns$by$ip = (apiClient: ApiClient) => (params: Params$passive$dns$by$ip$get$passive$dns$by$ip, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/dns\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/dns`; const headers = { Accept: "application/json" }; @@ -52473,7 +52470,7 @@ export const passive$dns$by$ip$get$passive$dns$by$ip = (apiClient }; /** Get Domain Details */ export const domain$intelligence$get$domain$details = (apiClient: ApiClient) => (params: Params$domain$intelligence$get$domain$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain`; const headers = { Accept: "application/json" }; @@ -52489,7 +52486,7 @@ export const domain$intelligence$get$domain$details = (apiClient: }; /** Get Domain History */ export const domain$history$get$domain$history = (apiClient: ApiClient) => (params: Params$domain$history$get$domain$history, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain-history\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain-history`; const headers = { Accept: "application/json" }; @@ -52505,7 +52502,7 @@ export const domain$history$get$domain$history = (apiClient: ApiC }; /** Get Multiple Domain Details */ export const domain$intelligence$get$multiple$domain$details = (apiClient: ApiClient) => (params: Params$domain$intelligence$get$multiple$domain$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain/bulk\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain/bulk`; const headers = { Accept: "application/json" }; @@ -52521,7 +52518,7 @@ export const domain$intelligence$get$multiple$domain$details = (a }; /** Get IP Overview */ export const ip$intelligence$get$ip$overview = (apiClient: ApiClient) => (params: Params$ip$intelligence$get$ip$overview, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/ip\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/ip`; const headers = { Accept: "application/json" }; @@ -52538,7 +52535,7 @@ export const ip$intelligence$get$ip$overview = (apiClient: ApiCli }; /** Get IP Lists */ export const ip$list$get$ip$lists = (apiClient: ApiClient) => (params: Params$ip$list$get$ip$lists, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/ip-list\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/ip-list`; const headers = { Accept: "application/json" }; @@ -52550,7 +52547,7 @@ export const ip$list$get$ip$lists = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$miscategorization$create$miscategorization, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/miscategorization\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/miscategorization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52564,7 +52561,7 @@ export const miscategorization$create$miscategorization = (apiCli }; /** Get WHOIS Record */ export const whois$record$get$whois$record = (apiClient: ApiClient) => (params: Params$whois$record$get$whois$record, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/whois\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/whois`; const headers = { Accept: "application/json" }; @@ -52583,7 +52580,7 @@ export const whois$record$get$whois$record = (apiClient: ApiClien * Lists all fields available for a dataset. The response result is an object with key-value pairs, where keys are field names, and values are descriptions. */ export const get$accounts$account_identifier$logpush$datasets$dataset$fields = (apiClient: ApiClient) => (params: Params$get$accounts$account_identifier$logpush$datasets$dataset$fields, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/fields\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/fields`; const headers = { Accept: "application/json" }; @@ -52598,7 +52595,7 @@ export const get$accounts$account_identifier$logpush$datasets$dataset$fields = < * Lists Logpush jobs for an account for a dataset. */ export const get$accounts$account_identifier$logpush$datasets$dataset$jobs = (apiClient: ApiClient) => (params: Params$get$accounts$account_identifier$logpush$datasets$dataset$jobs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/jobs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/jobs`; const headers = { Accept: "application/json" }; @@ -52613,7 +52610,7 @@ export const get$accounts$account_identifier$logpush$datasets$dataset$jobs = (apiClient: ApiClient) => (params: Params$get$accounts$account_identifier$logpush$jobs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs`; const headers = { Accept: "application/json" }; @@ -52628,7 +52625,7 @@ export const get$accounts$account_identifier$logpush$jobs = (apiC * Creates a new Logpush job for an account. */ export const post$accounts$account_identifier$logpush$jobs = (apiClient: ApiClient) => (params: Params$post$accounts$account_identifier$logpush$jobs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52645,7 +52642,7 @@ export const post$accounts$account_identifier$logpush$jobs = (api * Gets the details of a Logpush job. */ export const get$accounts$account_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$get$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -52660,7 +52657,7 @@ export const get$accounts$account_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$put$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52677,7 +52674,7 @@ export const put$accounts$account_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$delete$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -52692,7 +52689,7 @@ export const delete$accounts$account_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$post$accounts$account_identifier$logpush$ownership, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/ownership\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52709,7 +52706,7 @@ export const post$accounts$account_identifier$logpush$ownership = (apiClient: ApiClient) => (params: Params$post$accounts$account_identifier$logpush$ownership$validate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/ownership/validate\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52726,7 +52723,7 @@ export const post$accounts$account_identifier$logpush$ownership$validate = (apiClient: ApiClient) => (params: Params$delete$accounts$account_identifier$logpush$validate$destination$exists, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/validate/destination/exists\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/validate/destination/exists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52743,7 +52740,7 @@ export const delete$accounts$account_identifier$logpush$validate$destination$exi * Validates logpull origin with logpull_options. */ export const post$accounts$account_identifier$logpush$validate$origin = (apiClient: ApiClient) => (params: Params$post$accounts$account_identifier$logpush$validate$origin, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/validate/origin\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/validate/origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52760,7 +52757,7 @@ export const post$accounts$account_identifier$logpush$validate$origin = (apiClient: ApiClient) => (params: Params$get$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { Accept: "application/json" }; @@ -52775,7 +52772,7 @@ export const get$accounts$account_identifier$logs$control$cmb$config = (apiClient: ApiClient) => (params: Params$put$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52792,7 +52789,7 @@ export const put$accounts$account_identifier$logs$control$cmb$config = (apiClient: ApiClient) => (params: Params$delete$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { Accept: "application/json" }; @@ -52807,7 +52804,7 @@ export const delete$accounts$account_identifier$logs$control$cmb$config = (apiClient: ApiClient) => (params: Params$pages$project$get$projects, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects`; const headers = { Accept: "application/json" }; @@ -52822,7 +52819,7 @@ export const pages$project$get$projects = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$pages$project$create$project, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52839,7 +52836,7 @@ export const pages$project$create$project = (apiClient: ApiClient * Fetch a project by name. */ export const pages$project$get$project = (apiClient: ApiClient) => (params: Params$pages$project$get$project, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { Accept: "application/json" }; @@ -52854,7 +52851,7 @@ export const pages$project$get$project = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$pages$project$delete$project, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { Accept: "application/json" }; @@ -52869,7 +52866,7 @@ export const pages$project$delete$project = (apiClient: ApiClient * Set new attributes for an existing project. Modify environment variables. To delete an environment variable, set the key to null. */ export const pages$project$update$project = (apiClient: ApiClient) => (params: Params$pages$project$update$project, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52886,7 +52883,7 @@ export const pages$project$update$project = (apiClient: ApiClient * Fetch a list of project deployments. */ export const pages$deployment$get$deployments = (apiClient: ApiClient) => (params: Params$pages$deployment$get$deployments, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments`; const headers = { Accept: "application/json" }; @@ -52901,7 +52898,7 @@ export const pages$deployment$get$deployments = (apiClient: ApiCl * Start a new deployment from production. The repository and account must have already been authorized on the Cloudflare Pages dashboard. */ export const pages$deployment$create$deployment = (apiClient: ApiClient) => (params: Params$pages$deployment$create$deployment, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52918,7 +52915,7 @@ export const pages$deployment$create$deployment = (apiClient: Api * Fetch information about a deployment. */ export const pages$deployment$get$deployment$info = (apiClient: ApiClient) => (params: Params$pages$deployment$get$deployment$info, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -52933,7 +52930,7 @@ export const pages$deployment$get$deployment$info = (apiClient: A * Delete a deployment. */ export const pages$deployment$delete$deployment = (apiClient: ApiClient) => (params: Params$pages$deployment$delete$deployment, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -52948,7 +52945,7 @@ export const pages$deployment$delete$deployment = (apiClient: Api * Fetch deployment logs for a project. */ export const pages$deployment$get$deployment$logs = (apiClient: ApiClient) => (params: Params$pages$deployment$get$deployment$logs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/history/logs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/history/logs`; const headers = { Accept: "application/json" }; @@ -52963,7 +52960,7 @@ export const pages$deployment$get$deployment$logs = (apiClient: A * Retry a previous deployment. */ export const pages$deployment$retry$deployment = (apiClient: ApiClient) => (params: Params$pages$deployment$retry$deployment, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/retry\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/retry`; const headers = { Accept: "application/json" }; @@ -52978,7 +52975,7 @@ export const pages$deployment$retry$deployment = (apiClient: ApiC * Rollback the production deployment to a previous deployment. You can only rollback to succesful builds on production. */ export const pages$deployment$rollback$deployment = (apiClient: ApiClient) => (params: Params$pages$deployment$rollback$deployment, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/rollback\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/rollback`; const headers = { Accept: "application/json" }; @@ -52993,7 +52990,7 @@ export const pages$deployment$rollback$deployment = (apiClient: A * Fetch a list of all domains associated with a Pages project. */ export const pages$domains$get$domains = (apiClient: ApiClient) => (params: Params$pages$domains$get$domains, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains`; const headers = { Accept: "application/json" }; @@ -53008,7 +53005,7 @@ export const pages$domains$get$domains = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$pages$domains$add$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53025,7 +53022,7 @@ export const pages$domains$add$domain = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$pages$domains$get$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53040,7 +53037,7 @@ export const pages$domains$get$domain = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$pages$domains$delete$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53055,7 +53052,7 @@ export const pages$domains$delete$domain = (apiClient: ApiClient< * Retry the validation status of a single domain. */ export const pages$domains$patch$domain = (apiClient: ApiClient) => (params: Params$pages$domains$patch$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53070,7 +53067,7 @@ export const pages$domains$patch$domain = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$pages$purge$build$cache, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/purge_build_cache\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/purge_build_cache`; const headers = { Accept: "application/json" }; @@ -53085,7 +53082,7 @@ export const pages$purge$build$cache = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$r2$list$buckets, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets`; const headers = { Accept: "application/json" }; @@ -53109,7 +53106,7 @@ export const r2$list$buckets = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$r2$create$bucket, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53126,7 +53123,7 @@ export const r2$create$bucket = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$r2$get$bucket, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}`; const headers = { Accept: "application/json" }; @@ -53141,7 +53138,7 @@ export const r2$get$bucket = (apiClient: ApiClient * Deletes an existing R2 bucket. */ export const r2$delete$bucket = (apiClient: ApiClient) => (params: Params$r2$delete$bucket, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}`; const headers = { Accept: "application/json" }; @@ -53156,7 +53153,7 @@ export const r2$delete$bucket = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$r2$get$bucket$sippy$config, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { Accept: "application/json" }; @@ -53171,7 +53168,7 @@ export const r2$get$bucket$sippy$config = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$r2$put$bucket$sippy$config, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53188,7 +53185,7 @@ export const r2$put$bucket$sippy$config = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$r2$delete$bucket$sippy$config, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { Accept: "application/json" }; @@ -53203,7 +53200,7 @@ export const r2$delete$bucket$sippy$config = (apiClient: ApiClien * List domains handled by Registrar. */ export const registrar$domains$list$domains = (apiClient: ApiClient) => (params: Params$registrar$domains$list$domains, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains`; const headers = { Accept: "application/json" }; @@ -53218,7 +53215,7 @@ export const registrar$domains$list$domains = (apiClient: ApiClie * Show individual domain. */ export const registrar$domains$get$domain = (apiClient: ApiClient) => (params: Params$registrar$domains$get$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53233,7 +53230,7 @@ export const registrar$domains$get$domain = (apiClient: ApiClient * Update individual domain. */ export const registrar$domains$update$domain = (apiClient: ApiClient) => (params: Params$registrar$domains$update$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53250,7 +53247,7 @@ export const registrar$domains$update$domain = (apiClient: ApiCli * Fetches all lists in the account. */ export const lists$get$lists = (apiClient: ApiClient) => (params: Params$lists$get$lists, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists`; const headers = { Accept: "application/json" }; @@ -53265,7 +53262,7 @@ export const lists$get$lists = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$create$a$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53282,7 +53279,7 @@ export const lists$create$a$list = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$get$a$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -53297,7 +53294,7 @@ export const lists$get$a$list = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$update$a$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53314,7 +53311,7 @@ export const lists$update$a$list = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$delete$a$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -53329,7 +53326,7 @@ export const lists$delete$a$list = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$get$list$items, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { Accept: "application/json" }; @@ -53349,10 +53346,10 @@ export const lists$get$list$items = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$update$all$list$items, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53368,10 +53365,10 @@ export const lists$update$all$list$items = (apiClient: ApiClient< * Create list items * Appends new items to the list. * - * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned \`operation_id\`. + * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned `operation_id`. */ export const lists$create$list$items = (apiClient: ApiClient) => (params: Params$lists$create$list$items, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53387,10 +53384,10 @@ export const lists$create$list$items = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$delete$list$items, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53407,7 +53404,7 @@ export const lists$delete$list$items = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$listAccountRulesets, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets`; const headers = { Accept: "application/json" }; @@ -53422,7 +53419,7 @@ export const listAccountRulesets = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$createAccountRuleset, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53439,7 +53436,7 @@ export const createAccountRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$getAccountRuleset, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { Accept: "application/json" }; @@ -53454,7 +53451,7 @@ export const getAccountRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$updateAccountRuleset, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53471,7 +53468,7 @@ export const updateAccountRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$deleteAccountRuleset, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -53484,7 +53481,7 @@ export const deleteAccountRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$createAccountRulesetRule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53501,7 +53498,7 @@ export const createAccountRulesetRule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$deleteAccountRulesetRule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -53516,7 +53513,7 @@ export const deleteAccountRulesetRule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$updateAccountRulesetRule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53533,7 +53530,7 @@ export const updateAccountRulesetRule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$listAccountRulesetVersions, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions`; const headers = { Accept: "application/json" }; @@ -53548,7 +53545,7 @@ export const listAccountRulesetVersions = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$getAccountRulesetVersion, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -53563,7 +53560,7 @@ export const getAccountRulesetVersion = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$deleteAccountRulesetVersion, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -53576,7 +53573,7 @@ export const deleteAccountRulesetVersion = (apiClient: ApiClient< * Fetches the rules of a managed account ruleset version for a given tag. */ export const listAccountRulesetVersionRulesByTag = (apiClient: ApiClient) => (params: Params$listAccountRulesetVersionRulesByTag, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}/by_tag/\${encodeURIComponent(params.parameter.rule_tag)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}/by_tag/${encodeURIComponent(params.parameter.rule_tag)}`; const headers = { Accept: "application/json" }; @@ -53591,7 +53588,7 @@ export const listAccountRulesetVersionRulesByTag = (apiClient: Ap * Fetches the latest version of the account entry point ruleset for a given phase. */ export const getAccountEntrypointRuleset = (apiClient: ApiClient) => (params: Params$getAccountEntrypointRuleset, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { Accept: "application/json" }; @@ -53606,7 +53603,7 @@ export const getAccountEntrypointRuleset = (apiClient: ApiClient< * Updates an account entry point ruleset, creating a new version. */ export const updateAccountEntrypointRuleset = (apiClient: ApiClient) => (params: Params$updateAccountEntrypointRuleset, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53623,7 +53620,7 @@ export const updateAccountEntrypointRuleset = (apiClient: ApiClie * Fetches the versions of an account entry point ruleset. */ export const listAccountEntrypointRulesetVersions = (apiClient: ApiClient) => (params: Params$listAccountEntrypointRulesetVersions, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions`; const headers = { Accept: "application/json" }; @@ -53638,7 +53635,7 @@ export const listAccountEntrypointRulesetVersions = (apiClient: A * Fetches a specific version of an account entry point ruleset. */ export const getAccountEntrypointRulesetVersion = (apiClient: ApiClient) => (params: Params$getAccountEntrypointRulesetVersion, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -53653,7 +53650,7 @@ export const getAccountEntrypointRulesetVersion = (apiClient: Api * Lists up to 1000 videos from a single request. For a specific range, refer to the optional parameters. */ export const stream$videos$list$videos = (apiClient: ApiClient) => (params: Params$stream$videos$list$videos, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream`; const headers = { Accept: "application/json" }; @@ -53676,10 +53673,10 @@ export const stream$videos$list$videos = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$stream$videos$initiate$video$uploads$using$tus, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream`; const headers = { "Tus-Resumable": params.parameter["Tus-Resumable"], "Upload-Creator": params.parameter["Upload-Creator"], @@ -53697,7 +53694,7 @@ export const stream$videos$initiate$video$uploads$using$tus = (ap * Fetches details for a single video. */ export const stream$videos$retrieve$video$details = (apiClient: ApiClient) => (params: Params$stream$videos$retrieve$video$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -53712,7 +53709,7 @@ export const stream$videos$retrieve$video$details = (apiClient: A * Edit details for a single video. */ export const stream$videos$update$video$details = (apiClient: ApiClient) => (params: Params$stream$videos$update$video$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53729,7 +53726,7 @@ export const stream$videos$update$video$details = (apiClient: Api * Deletes a video and its copies from Cloudflare Stream. */ export const stream$videos$delete$video = (apiClient: ApiClient) => (params: Params$stream$videos$delete$video, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -53742,7 +53739,7 @@ export const stream$videos$delete$video = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$list$audio$tracks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio`; const headers = { Accept: "application/json" }; @@ -53757,7 +53754,7 @@ export const list$audio$tracks = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$delete$audio$tracks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/\${encodeURIComponent(params.parameter.audio_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/${encodeURIComponent(params.parameter.audio_identifier)}`; const headers = { Accept: "application/json" }; @@ -53769,10 +53766,10 @@ export const delete$audio$tracks = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$edit$audio$tracks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/\${encodeURIComponent(params.parameter.audio_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/${encodeURIComponent(params.parameter.audio_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53789,7 +53786,7 @@ export const edit$audio$tracks = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$add$audio$track, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/copy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/copy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53806,7 +53803,7 @@ export const add$audio$track = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$stream$subtitles$$captions$list$captions$or$subtitles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions`; const headers = { Accept: "application/json" }; @@ -53821,7 +53818,7 @@ export const stream$subtitles$$captions$list$captions$or$subtitles = (apiClient: ApiClient) => (params: Params$stream$subtitles$$captions$upload$captions$or$subtitles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions/\${encodeURIComponent(params.parameter.language)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions/${encodeURIComponent(params.parameter.language)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -53838,7 +53835,7 @@ export const stream$subtitles$$captions$upload$captions$or$subtitles = (apiClient: ApiClient) => (params: Params$stream$subtitles$$captions$delete$captions$or$subtitles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions/\${encodeURIComponent(params.parameter.language)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions/${encodeURIComponent(params.parameter.language)}`; const headers = { Accept: "application/json" }; @@ -53853,7 +53850,7 @@ export const stream$subtitles$$captions$delete$captions$or$subtitles = (apiClient: ApiClient) => (params: Params$stream$m$p$4$downloads$list$downloads, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53868,7 +53865,7 @@ export const stream$m$p$4$downloads$list$downloads = (apiClient: * Creates a download for a video when a video is ready to view. */ export const stream$m$p$4$downloads$create$downloads = (apiClient: ApiClient) => (params: Params$stream$m$p$4$downloads$create$downloads, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53883,7 +53880,7 @@ export const stream$m$p$4$downloads$create$downloads = (apiClient * Delete the downloads for a video. */ export const stream$m$p$4$downloads$delete$downloads = (apiClient: ApiClient) => (params: Params$stream$m$p$4$downloads$delete$downloads, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53898,7 +53895,7 @@ export const stream$m$p$4$downloads$delete$downloads = (apiClient * Fetches an HTML code snippet to embed a video in a web page delivered through Cloudflare. On success, returns an HTML fragment for use on web pages to display a video. On failure, returns a JSON response body. */ export const stream$videos$retreieve$embed$code$html = (apiClient: ApiClient) => (params: Params$stream$videos$retreieve$embed$code$html, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/embed\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/embed`; const headers = { Accept: "application/json" }; @@ -53913,7 +53910,7 @@ export const stream$videos$retreieve$embed$code$html = (apiClient * Creates a signed URL token for a video. If a body is not provided in the request, a token is created with default values. */ export const stream$videos$create$signed$url$tokens$for$videos = (apiClient: ApiClient) => (params: Params$stream$videos$create$signed$url$tokens$for$videos, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/token\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/token`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53930,7 +53927,7 @@ export const stream$videos$create$signed$url$tokens$for$videos = * Clips a video based on the specified start and end times provided in seconds. */ export const stream$video$clipping$clip$videos$given$a$start$and$end$time = (apiClient: ApiClient) => (params: Params$stream$video$clipping$clip$videos$given$a$start$and$end$time, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/clip\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/clip`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53947,7 +53944,7 @@ export const stream$video$clipping$clip$videos$given$a$start$and$end$time = (apiClient: ApiClient) => (params: Params$stream$videos$upload$videos$from$a$url, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/copy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/copy`; const headers = { "Content-Type": "application/json", Accept: "application/json", @@ -53966,7 +53963,7 @@ export const stream$videos$upload$videos$from$a$url = (apiClient: * Creates a direct upload that allows video uploads without an API key. */ export const stream$videos$upload$videos$via$direct$upload$ur$ls = (apiClient: ApiClient) => (params: Params$stream$videos$upload$videos$via$direct$upload$ur$ls, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/direct_upload\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/direct_upload`; const headers = { "Content-Type": "application/json", Accept: "application/json", @@ -53984,7 +53981,7 @@ export const stream$videos$upload$videos$via$direct$upload$ur$ls = (apiClient: ApiClient) => (params: Params$stream$signing$keys$list$signing$keys, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys`; const headers = { Accept: "application/json" }; @@ -53999,7 +53996,7 @@ export const stream$signing$keys$list$signing$keys = (apiClient: * Creates an RSA private key in PEM and JWK formats. Key files are only displayed once after creation. Keys are created, used, and deleted independently of videos, and every key can sign any video. */ export const stream$signing$keys$create$signing$keys = (apiClient: ApiClient) => (params: Params$stream$signing$keys$create$signing$keys, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys`; const headers = { Accept: "application/json" }; @@ -54014,7 +54011,7 @@ export const stream$signing$keys$create$signing$keys = (apiClient * Deletes signing keys and revokes all signed URLs generated with the key. */ export const stream$signing$keys$delete$signing$keys = (apiClient: ApiClient) => (params: Params$stream$signing$keys$delete$signing$keys, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54029,7 +54026,7 @@ export const stream$signing$keys$delete$signing$keys = (apiClient * Lists the live inputs created for an account. To get the credentials needed to stream to a specific live input, request a single live input. */ export const stream$live$inputs$list$live$inputs = (apiClient: ApiClient) => (params: Params$stream$live$inputs$list$live$inputs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs`; const headers = { Accept: "application/json" }; @@ -54048,7 +54045,7 @@ export const stream$live$inputs$list$live$inputs = (apiClient: Ap * Creates a live input, and returns credentials that you or your users can use to stream live video to Cloudflare Stream. */ export const stream$live$inputs$create$a$live$input = (apiClient: ApiClient) => (params: Params$stream$live$inputs$create$a$live$input, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54065,7 +54062,7 @@ export const stream$live$inputs$create$a$live$input = (apiClient: * Retrieves details of an existing live input. */ export const stream$live$inputs$retrieve$a$live$input = (apiClient: ApiClient) => (params: Params$stream$live$inputs$retrieve$a$live$input, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = { Accept: "application/json" }; @@ -54080,7 +54077,7 @@ export const stream$live$inputs$retrieve$a$live$input = (apiClien * Updates a specified live input. */ export const stream$live$inputs$update$a$live$input = (apiClient: ApiClient) => (params: Params$stream$live$inputs$update$a$live$input, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54097,7 +54094,7 @@ export const stream$live$inputs$update$a$live$input = (apiClient: * Prevents a live input from being streamed to and makes the live input inaccessible to any future API calls. */ export const stream$live$inputs$delete$a$live$input = (apiClient: ApiClient) => (params: Params$stream$live$inputs$delete$a$live$input, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -54110,7 +54107,7 @@ export const stream$live$inputs$delete$a$live$input = (apiClient: * Retrieves all outputs associated with a specified live input. */ export const stream$live$inputs$list$all$outputs$associated$with$a$specified$live$input = (apiClient: ApiClient) => (params: Params$stream$live$inputs$list$all$outputs$associated$with$a$specified$live$input, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs`; const headers = { Accept: "application/json" }; @@ -54125,7 +54122,7 @@ export const stream$live$inputs$list$all$outputs$associated$with$a$specified$liv * Creates a new output that can be used to simulcast or restream live video to other RTMP or SRT destinations. Outputs are always linked to a specific live input — one live input can have many outputs. */ export const stream$live$inputs$create$a$new$output$$connected$to$a$live$input = (apiClient: ApiClient) => (params: Params$stream$live$inputs$create$a$new$output$$connected$to$a$live$input, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54142,7 +54139,7 @@ export const stream$live$inputs$create$a$new$output$$connected$to$a$live$input = * Updates the state of an output. */ export const stream$live$inputs$update$an$output = (apiClient: ApiClient) => (params: Params$stream$live$inputs$update$an$output, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/\${encodeURIComponent(params.parameter.output_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/${encodeURIComponent(params.parameter.output_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54159,7 +54156,7 @@ export const stream$live$inputs$update$an$output = (apiClient: Ap * Deletes an output and removes it from the associated live input. */ export const stream$live$inputs$delete$an$output = (apiClient: ApiClient) => (params: Params$stream$live$inputs$delete$an$output, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/\${encodeURIComponent(params.parameter.output_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/${encodeURIComponent(params.parameter.output_identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -54172,7 +54169,7 @@ export const stream$live$inputs$delete$an$output = (apiClient: Ap * Returns information about an account's storage use. */ export const stream$videos$storage$usage = (apiClient: ApiClient) => (params: Params$stream$videos$storage$usage, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/storage-usage\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/storage-usage`; const headers = { Accept: "application/json" }; @@ -54191,7 +54188,7 @@ export const stream$videos$storage$usage = (apiClient: ApiClient< * Lists all watermark profiles for an account. */ export const stream$watermark$profile$list$watermark$profiles = (apiClient: ApiClient) => (params: Params$stream$watermark$profile$list$watermark$profiles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks`; const headers = { Accept: "application/json" }; @@ -54203,10 +54200,10 @@ export const stream$watermark$profile$list$watermark$profiles = ( }; /** * Create watermark profiles via basic upload - * Creates watermark profiles using a single \`HTTP POST multipart/form-data\` request. + * Creates watermark profiles using a single `HTTP POST multipart/form-data` request. */ export const stream$watermark$profile$create$watermark$profiles$via$basic$upload = (apiClient: ApiClient) => (params: Params$stream$watermark$profile$create$watermark$profiles$via$basic$upload, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -54223,7 +54220,7 @@ export const stream$watermark$profile$create$watermark$profiles$via$basic$upload * Retrieves details for a single watermark profile. */ export const stream$watermark$profile$watermark$profile$details = (apiClient: ApiClient) => (params: Params$stream$watermark$profile$watermark$profile$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54238,7 +54235,7 @@ export const stream$watermark$profile$watermark$profile$details = (apiClient: ApiClient) => (params: Params$stream$watermark$profile$delete$watermark$profiles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54253,7 +54250,7 @@ export const stream$watermark$profile$delete$watermark$profiles = (apiClient: ApiClient) => (params: Params$stream$webhook$view$webhooks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { Accept: "application/json" }; @@ -54268,7 +54265,7 @@ export const stream$webhook$view$webhooks = (apiClient: ApiClient * Creates a webhook notification. */ export const stream$webhook$create$webhooks = (apiClient: ApiClient) => (params: Params$stream$webhook$create$webhooks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54285,7 +54282,7 @@ export const stream$webhook$create$webhooks = (apiClient: ApiClie * Deletes a webhook. */ export const stream$webhook$delete$webhooks = (apiClient: ApiClient) => (params: Params$stream$webhook$delete$webhooks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { Accept: "application/json" }; @@ -54300,7 +54297,7 @@ export const stream$webhook$delete$webhooks = (apiClient: ApiClie * Lists and filters private network routes in an account. */ export const tunnel$route$list$tunnel$routes = (apiClient: ApiClient) => (params: Params$tunnel$route$list$tunnel$routes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes`; const headers = { Accept: "application/json" }; @@ -54329,7 +54326,7 @@ export const tunnel$route$list$tunnel$routes = (apiClient: ApiCli * Routes a private network through a Cloudflare Tunnel. */ export const tunnel$route$create$a$tunnel$route = (apiClient: ApiClient) => (params: Params$tunnel$route$create$a$tunnel$route, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54346,7 +54343,7 @@ export const tunnel$route$create$a$tunnel$route = (apiClient: Api * Deletes a private network route from an account. */ export const tunnel$route$delete$a$tunnel$route = (apiClient: ApiClient) => (params: Params$tunnel$route$delete$a$tunnel$route, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -54361,7 +54358,7 @@ export const tunnel$route$delete$a$tunnel$route = (apiClient: Api * Updates an existing private network route in an account. The fields that are meant to be updated should be provided in the body of the request. */ export const tunnel$route$update$a$tunnel$route = (apiClient: ApiClient) => (params: Params$tunnel$route$update$a$tunnel$route, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54378,7 +54375,7 @@ export const tunnel$route$update$a$tunnel$route = (apiClient: Api * Fetches routes that contain the given IP address. */ export const tunnel$route$get$tunnel$route$by$ip = (apiClient: ApiClient) => (params: Params$tunnel$route$get$tunnel$route$by$ip, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/ip/\${encodeURIComponent(params.parameter.ip)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/ip/${encodeURIComponent(params.parameter.ip)}`; const headers = { Accept: "application/json" }; @@ -54394,10 +54391,10 @@ export const tunnel$route$get$tunnel$route$by$ip = (apiClient: Ap }; /** * Create a tunnel route (CIDR Endpoint) - * Routes a private network through a Cloudflare Tunnel. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. + * Routes a private network through a Cloudflare Tunnel. The CIDR in `ip_network_encoded` must be written in URL-encoded format. */ export const tunnel$route$create$a$tunnel$route$with$cidr = (apiClient: ApiClient) => (params: Params$tunnel$route$create$a$tunnel$route$with$cidr, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54411,10 +54408,10 @@ export const tunnel$route$create$a$tunnel$route$with$cidr = (apiC }; /** * Delete a tunnel route (CIDR Endpoint) - * Deletes a private network route from an account. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. If no virtual_network_id is provided it will delete the route from the default vnet. If no tun_type is provided it will fetch the type from the tunnel_id or if that is missing it will assume Cloudflare Tunnel as default. If tunnel_id is provided it will delete the route from that tunnel, otherwise it will delete the route based on the vnet and tun_type. + * Deletes a private network route from an account. The CIDR in `ip_network_encoded` must be written in URL-encoded format. If no virtual_network_id is provided it will delete the route from the default vnet. If no tun_type is provided it will fetch the type from the tunnel_id or if that is missing it will assume Cloudflare Tunnel as default. If tunnel_id is provided it will delete the route from that tunnel, otherwise it will delete the route based on the vnet and tun_type. */ export const tunnel$route$delete$a$tunnel$route$with$cidr = (apiClient: ApiClient) => (params: Params$tunnel$route$delete$a$tunnel$route$with$cidr, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { Accept: "application/json" }; @@ -54432,10 +54429,10 @@ export const tunnel$route$delete$a$tunnel$route$with$cidr = (apiC }; /** * Update a tunnel route (CIDR Endpoint) - * Updates an existing private network route in an account. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. + * Updates an existing private network route in an account. The CIDR in `ip_network_encoded` must be written in URL-encoded format. */ export const tunnel$route$update$a$tunnel$route$with$cidr = (apiClient: ApiClient) => (params: Params$tunnel$route$update$a$tunnel$route$with$cidr, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { Accept: "application/json" }; @@ -54450,7 +54447,7 @@ export const tunnel$route$update$a$tunnel$route$with$cidr = (apiC * Lists and filters virtual networks in an account. */ export const tunnel$virtual$network$list$virtual$networks = (apiClient: ApiClient) => (params: Params$tunnel$virtual$network$list$virtual$networks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks`; const headers = { Accept: "application/json" }; @@ -54473,7 +54470,7 @@ export const tunnel$virtual$network$list$virtual$networks = (apiC * Adds a new virtual network to an account. */ export const tunnel$virtual$network$create$a$virtual$network = (apiClient: ApiClient) => (params: Params$tunnel$virtual$network$create$a$virtual$network, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54490,7 +54487,7 @@ export const tunnel$virtual$network$create$a$virtual$network = (a * Deletes an existing virtual network. */ export const tunnel$virtual$network$delete$a$virtual$network = (apiClient: ApiClient) => (params: Params$tunnel$virtual$network$delete$a$virtual$network, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/\${encodeURIComponent(params.parameter.virtual_network_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/${encodeURIComponent(params.parameter.virtual_network_id)}`; const headers = { Accept: "application/json" }; @@ -54505,7 +54502,7 @@ export const tunnel$virtual$network$delete$a$virtual$network = (a * Updates an existing virtual network. */ export const tunnel$virtual$network$update$a$virtual$network = (apiClient: ApiClient) => (params: Params$tunnel$virtual$network$update$a$virtual$network, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/\${encodeURIComponent(params.parameter.virtual_network_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/${encodeURIComponent(params.parameter.virtual_network_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54522,7 +54519,7 @@ export const tunnel$virtual$network$update$a$virtual$network = (a * Lists and filters all types of Tunnels in an account. */ export const cloudflare$tunnel$list$all$tunnels = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$list$all$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels`; const headers = { Accept: "application/json" }; @@ -54551,7 +54548,7 @@ export const cloudflare$tunnel$list$all$tunnels = (apiClient: Api * Creates a new Argo Tunnel in an account. */ export const argo$tunnel$create$an$argo$tunnel = (apiClient: ApiClient) => (params: Params$argo$tunnel$create$an$argo$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54568,7 +54565,7 @@ export const argo$tunnel$create$an$argo$tunnel = (apiClient: ApiC * Fetches a single Argo Tunnel. */ export const argo$tunnel$get$an$argo$tunnel = (apiClient: ApiClient) => (params: Params$argo$tunnel$get$an$argo$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -54583,7 +54580,7 @@ export const argo$tunnel$get$an$argo$tunnel = (apiClient: ApiClie * Deletes an Argo Tunnel from an account. */ export const argo$tunnel$delete$an$argo$tunnel = (apiClient: ApiClient) => (params: Params$argo$tunnel$delete$an$argo$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54600,7 +54597,7 @@ export const argo$tunnel$delete$an$argo$tunnel = (apiClient: ApiC * Removes connections that are in a disconnected or pending reconnect state. We recommend running this command after shutting down a tunnel. */ export const argo$tunnel$clean$up$argo$tunnel$connections = (apiClient: ApiClient) => (params: Params$argo$tunnel$clean$up$argo$tunnel$connections, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54617,7 +54614,7 @@ export const argo$tunnel$clean$up$argo$tunnel$connections = (apiC * Lists and filters Warp Connector Tunnels in an account. */ export const cloudflare$tunnel$list$warp$connector$tunnels = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$list$warp$connector$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector`; const headers = { Accept: "application/json" }; @@ -54645,7 +54642,7 @@ export const cloudflare$tunnel$list$warp$connector$tunnels = (api * Creates a new Warp Connector Tunnel in an account. */ export const cloudflare$tunnel$create$a$warp$connector$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$create$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54662,7 +54659,7 @@ export const cloudflare$tunnel$create$a$warp$connector$tunnel = ( * Fetches a single Warp Connector Tunnel. */ export const cloudflare$tunnel$get$a$warp$connector$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$get$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -54677,7 +54674,7 @@ export const cloudflare$tunnel$get$a$warp$connector$tunnel = (api * Deletes a Warp Connector Tunnel from an account. */ export const cloudflare$tunnel$delete$a$warp$connector$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$delete$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54694,7 +54691,7 @@ export const cloudflare$tunnel$delete$a$warp$connector$tunnel = ( * Updates an existing Warp Connector Tunnel. */ export const cloudflare$tunnel$update$a$warp$connector$tunnel = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$update$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54711,7 +54708,7 @@ export const cloudflare$tunnel$update$a$warp$connector$tunnel = ( * Gets the token used to associate warp device with a specific Warp Connector tunnel. */ export const cloudflare$tunnel$get$a$warp$connector$tunnel$token = (apiClient: ApiClient) => (params: Params$cloudflare$tunnel$get$a$warp$connector$tunnel$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}/token\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}/token`; const headers = { Accept: "application/json" }; @@ -54726,7 +54723,7 @@ export const cloudflare$tunnel$get$a$warp$connector$tunnel$token = (apiClient: ApiClient) => (params: Params$worker$account$settings$fetch$worker$account$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/account-settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/account-settings`; const headers = { Accept: "application/json" }; @@ -54741,7 +54738,7 @@ export const worker$account$settings$fetch$worker$account$settings = (apiClient: ApiClient) => (params: Params$worker$account$settings$create$worker$account$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/account-settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/account-settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54755,7 +54752,7 @@ export const worker$account$settings$create$worker$account$settings = (apiClient: ApiClient) => (params: Params$worker$deployments$list$deployments, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/\${encodeURIComponent(params.parameter.script_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/${encodeURIComponent(params.parameter.script_id)}`; const headers = { Accept: "application/json" }; @@ -54767,7 +54764,7 @@ export const worker$deployments$list$deployments = (apiClient: Ap }; /** Get Deployment Detail */ export const worker$deployments$get$deployment$detail = (apiClient: ApiClient) => (params: Params$worker$deployments$get$deployment$detail, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/\${encodeURIComponent(params.parameter.script_id)}/detail/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/${encodeURIComponent(params.parameter.script_id)}/detail/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -54782,7 +54779,7 @@ export const worker$deployments$get$deployment$detail = (apiClien * Fetch information about a script uploaded to a Workers for Platforms namespace. */ export const namespace$worker$script$worker$details = (apiClient: ApiClient) => (params: Params$namespace$worker$script$worker$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { Accept: "application/json" }; @@ -54797,7 +54794,7 @@ export const namespace$worker$script$worker$details = (apiClient: * Upload a worker module to a Workers for Platforms namespace. */ export const namespace$worker$script$upload$worker$module = (apiClient: ApiClient) => (params: Params$namespace$worker$script$upload$worker$module, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -54822,7 +54819,7 @@ export const namespace$worker$script$upload$worker$module = (apiC * Delete a worker from a Workers for Platforms namespace. This call has no response body on a successful delete. */ export const namespace$worker$script$delete$worker = (apiClient: ApiClient) => (params: Params$namespace$worker$script$delete$worker, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = {}; const queryParameters: QueryParameters = { force: { value: params.parameter.force, explode: false } @@ -54839,7 +54836,7 @@ export const namespace$worker$script$delete$worker = (apiClient: * Fetch script content from a script uploaded to a Workers for Platforms namespace. */ export const namespace$worker$get$script$content = (apiClient: ApiClient) => (params: Params$namespace$worker$get$script$content, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { Accept: "string" }; @@ -54854,7 +54851,7 @@ export const namespace$worker$get$script$content = (apiClient: Ap * Put script content for a script uploaded to a Workers for Platforms namespace. */ export const namespace$worker$put$script$content = (apiClient: ApiClient) => (params: Params$namespace$worker$put$script$content, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -54881,7 +54878,7 @@ export const namespace$worker$put$script$content = (apiClient: Ap * Get script settings from a script uploaded to a Workers for Platforms namespace. */ export const namespace$worker$get$script$settings = (apiClient: ApiClient) => (params: Params$namespace$worker$get$script$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { Accept: "application/json" }; @@ -54896,7 +54893,7 @@ export const namespace$worker$get$script$settings = (apiClient: A * Patch script metadata, such as bindings */ export const namespace$worker$patch$script$settings = (apiClient: ApiClient) => (params: Params$namespace$worker$patch$script$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54913,7 +54910,7 @@ export const namespace$worker$patch$script$settings = (apiClient: * Lists all Worker Domains for an account. */ export const worker$domain$list$domains = (apiClient: ApiClient) => (params: Params$worker$domain$list$domains, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains`; const headers = { Accept: "application/json" }; @@ -54936,7 +54933,7 @@ export const worker$domain$list$domains = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$domain$attach$to$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54953,7 +54950,7 @@ export const worker$domain$attach$to$domain = (apiClient: ApiClie * Gets a Worker domain. */ export const worker$domain$get$a$domain = (apiClient: ApiClient) => (params: Params$worker$domain$get$a$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains/\${encodeURIComponent(params.parameter.domain_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains/${encodeURIComponent(params.parameter.domain_id)}`; const headers = { Accept: "application/json" }; @@ -54968,7 +54965,7 @@ export const worker$domain$get$a$domain = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$domain$detach$from$domain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains/\${encodeURIComponent(params.parameter.domain_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains/${encodeURIComponent(params.parameter.domain_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -54981,7 +54978,7 @@ export const worker$domain$detach$from$domain = (apiClient: ApiCl * Returns the Durable Object namespaces owned by an account. */ export const durable$objects$namespace$list$namespaces = (apiClient: ApiClient) => (params: Params$durable$objects$namespace$list$namespaces, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces`; const headers = { Accept: "application/json" }; @@ -54996,7 +54993,7 @@ export const durable$objects$namespace$list$namespaces = (apiClie * Returns the Durable Objects in a given namespace. */ export const durable$objects$namespace$list$objects = (apiClient: ApiClient) => (params: Params$durable$objects$namespace$list$objects, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces/\${encodeURIComponent(params.parameter.id)}/objects\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces/${encodeURIComponent(params.parameter.id)}/objects`; const headers = { Accept: "application/json" }; @@ -55016,7 +55013,7 @@ export const durable$objects$namespace$list$objects = (apiClient: * Returns the queues owned by an account. */ export const queue$list$queues = (apiClient: ApiClient) => (params: Params$queue$list$queues, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues`; const headers = { Accept: "application/json" }; @@ -55031,7 +55028,7 @@ export const queue$list$queues = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$queue$create$queue, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55048,7 +55045,7 @@ export const queue$create$queue = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$queue$queue$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -55063,7 +55060,7 @@ export const queue$queue$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$queue$update$queue, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55080,7 +55077,7 @@ export const queue$update$queue = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$queue$delete$queue, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -55095,7 +55092,7 @@ export const queue$delete$queue = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$queue$list$queue$consumers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers`; const headers = { Accept: "application/json" }; @@ -55110,7 +55107,7 @@ export const queue$list$queue$consumers = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$queue$create$queue$consumer, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55127,7 +55124,7 @@ export const queue$create$queue$consumer = (apiClient: ApiClient< * Updates the consumer for a queue, or creates one if it does not exist. */ export const queue$update$queue$consumer = (apiClient: ApiClient) => (params: Params$queue$update$queue$consumer, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers/\${encodeURIComponent(params.parameter.consumer_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers/${encodeURIComponent(params.parameter.consumer_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55144,7 +55141,7 @@ export const queue$update$queue$consumer = (apiClient: ApiClient< * Deletes the consumer for a queue. */ export const queue$delete$queue$consumer = (apiClient: ApiClient) => (params: Params$queue$delete$queue$consumer, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers/\${encodeURIComponent(params.parameter.consumer_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers/${encodeURIComponent(params.parameter.consumer_name)}`; const headers = { Accept: "application/json" }; @@ -55159,7 +55156,7 @@ export const queue$delete$queue$consumer = (apiClient: ApiClient< * Fetch a list of uploaded workers. */ export const worker$script$list$workers = (apiClient: ApiClient) => (params: Params$worker$script$list$workers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts`; const headers = { Accept: "application/json" }; @@ -55174,7 +55171,7 @@ export const worker$script$list$workers = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$script$download$worker, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { Accept: "undefined" }; @@ -55189,7 +55186,7 @@ export const worker$script$download$worker = (apiClient: ApiClien * Upload a worker module. */ export const worker$script$upload$worker$module = (apiClient: ApiClient) => (params: Params$worker$script$upload$worker$module, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -55218,7 +55215,7 @@ export const worker$script$upload$worker$module = (apiClient: Api * Delete your worker. This call has no response body on a successful delete. */ export const worker$script$delete$worker = (apiClient: ApiClient) => (params: Params$worker$script$delete$worker, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = {}; const queryParameters: QueryParameters = { force: { value: params.parameter.force, explode: false } @@ -55235,7 +55232,7 @@ export const worker$script$delete$worker = (apiClient: ApiClient< * Put script content without touching config or metadata */ export const worker$script$put$content = (apiClient: ApiClient) => (params: Params$worker$script$put$content, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -55262,7 +55259,7 @@ export const worker$script$put$content = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$script$get$content, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/content/v2\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/content/v2`; const headers = { Accept: "string" }; @@ -55277,7 +55274,7 @@ export const worker$script$get$content = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$cron$trigger$get$cron$triggers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/schedules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/schedules`; const headers = { Accept: "application/json" }; @@ -55292,7 +55289,7 @@ export const worker$cron$trigger$get$cron$triggers = (apiClient: * Updates Cron Triggers for a Worker. */ export const worker$cron$trigger$update$cron$triggers = (apiClient: ApiClient) => (params: Params$worker$cron$trigger$update$cron$triggers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/schedules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/schedules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55309,7 +55306,7 @@ export const worker$cron$trigger$update$cron$triggers = (apiClien * Get script metadata and config, such as bindings or usage model */ export const worker$script$get$settings = (apiClient: ApiClient) => (params: Params$worker$script$get$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { Accept: "application/json" }; @@ -55324,7 +55321,7 @@ export const worker$script$get$settings = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$script$patch$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -55341,7 +55338,7 @@ export const worker$script$patch$settings = (apiClient: ApiClient * Get list of tails currently deployed on a Worker. */ export const worker$tail$logs$list$tails = (apiClient: ApiClient) => (params: Params$worker$tail$logs$list$tails, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails`; const headers = { Accept: "application/json" }; @@ -55356,7 +55353,7 @@ export const worker$tail$logs$list$tails = (apiClient: ApiClient< * Starts a tail that receives logs and exception from a Worker. */ export const worker$tail$logs$start$tail = (apiClient: ApiClient) => (params: Params$worker$tail$logs$start$tail, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails`; const headers = { Accept: "application/json" }; @@ -55371,7 +55368,7 @@ export const worker$tail$logs$start$tail = (apiClient: ApiClient< * Deletes a tail from a Worker. */ export const worker$tail$logs$delete$tail = (apiClient: ApiClient) => (params: Params$worker$tail$logs$delete$tail, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -55386,7 +55383,7 @@ export const worker$tail$logs$delete$tail = (apiClient: ApiClient * Fetches the Usage Model for a given Worker. */ export const worker$script$fetch$usage$model = (apiClient: ApiClient) => (params: Params$worker$script$fetch$usage$model, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/usage-model\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/usage-model`; const headers = { Accept: "application/json" }; @@ -55401,7 +55398,7 @@ export const worker$script$fetch$usage$model = (apiClient: ApiCli * Updates the Usage Model for a given Worker. Requires a Workers Paid subscription. */ export const worker$script$update$usage$model = (apiClient: ApiClient) => (params: Params$worker$script$update$usage$model, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/usage-model\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/usage-model`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55418,7 +55415,7 @@ export const worker$script$update$usage$model = (apiClient: ApiCl * Get script content from a worker with an environment */ export const worker$environment$get$script$content = (apiClient: ApiClient) => (params: Params$worker$environment$get$script$content, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/content\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/content`; const headers = { Accept: "string" }; @@ -55433,7 +55430,7 @@ export const worker$environment$get$script$content = (apiClient: * Put script content from a worker with an environment */ export const worker$environment$put$script$content = (apiClient: ApiClient) => (params: Params$worker$environment$put$script$content, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/content\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -55460,7 +55457,7 @@ export const worker$environment$put$script$content = (apiClient: * Get script settings from a worker with an environment */ export const worker$script$environment$get$settings = (apiClient: ApiClient) => (params: Params$worker$script$environment$get$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/settings`; const headers = { Accept: "application/json" }; @@ -55475,7 +55472,7 @@ export const worker$script$environment$get$settings = (apiClient: * Patch script metadata, such as bindings */ export const worker$script$environment$patch$settings = (apiClient: ApiClient) => (params: Params$worker$script$environment$patch$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55492,7 +55489,7 @@ export const worker$script$environment$patch$settings = (apiClien * Returns a Workers subdomain for an account. */ export const worker$subdomain$get$subdomain = (apiClient: ApiClient) => (params: Params$worker$subdomain$get$subdomain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/subdomain\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/subdomain`; const headers = { Accept: "application/json" }; @@ -55507,7 +55504,7 @@ export const worker$subdomain$get$subdomain = (apiClient: ApiClie * Creates a Workers subdomain for an account. */ export const worker$subdomain$create$subdomain = (apiClient: ApiClient) => (params: Params$worker$subdomain$create$subdomain, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/subdomain\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/subdomain`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55524,7 +55521,7 @@ export const worker$subdomain$create$subdomain = (apiClient: ApiC * Gets the Zero Trust Connectivity Settings for the given account. */ export const zero$trust$accounts$get$connectivity$settings = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$get$connectivity$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings`; const headers = { Accept: "application/json" }; @@ -55539,7 +55536,7 @@ export const zero$trust$accounts$get$connectivity$settings = (api * Updates the Zero Trust Connectivity Settings for the given account. */ export const zero$trust$accounts$patch$connectivity$settings = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$patch$connectivity$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55556,7 +55553,7 @@ export const zero$trust$accounts$patch$connectivity$settings = (a * List all address maps owned by the account. */ export const ip$address$management$address$maps$list$address$maps = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$list$address$maps, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps`; const headers = { Accept: "application/json" }; @@ -55571,7 +55568,7 @@ export const ip$address$management$address$maps$list$address$maps = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$create$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55588,7 +55585,7 @@ export const ip$address$management$address$maps$create$address$map = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$address$map$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { Accept: "application/json" }; @@ -55603,7 +55600,7 @@ export const ip$address$management$address$maps$address$map$details = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$delete$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { Accept: "application/json" }; @@ -55618,7 +55615,7 @@ export const ip$address$management$address$maps$delete$address$map = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$update$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55635,7 +55632,7 @@ export const ip$address$management$address$maps$update$address$map = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$add$an$ip$to$an$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/ips/\${encodeURIComponent(params.parameter.ip_address)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/ips/${encodeURIComponent(params.parameter.ip_address)}`; const headers = { Accept: "application/json" }; @@ -55650,7 +55647,7 @@ export const ip$address$management$address$maps$add$an$ip$to$an$address$map = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$remove$an$ip$from$an$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/ips/\${encodeURIComponent(params.parameter.ip_address)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/ips/${encodeURIComponent(params.parameter.ip_address)}`; const headers = { Accept: "application/json" }; @@ -55665,7 +55662,7 @@ export const ip$address$management$address$maps$remove$an$ip$from$an$address$map * Add a zone as a member of a particular address map. */ export const ip$address$management$address$maps$add$a$zone$membership$to$an$address$map = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$add$a$zone$membership$to$an$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/zones/\${encodeURIComponent(params.parameter.zone_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/zones/${encodeURIComponent(params.parameter.zone_identifier)}`; const headers = { Accept: "application/json" }; @@ -55680,7 +55677,7 @@ export const ip$address$management$address$maps$add$a$zone$membership$to$an$addr * Remove a zone as a member of a particular address map. */ export const ip$address$management$address$maps$remove$a$zone$membership$from$an$address$map = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$remove$a$zone$membership$from$an$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/zones/\${encodeURIComponent(params.parameter.zone_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/zones/${encodeURIComponent(params.parameter.zone_identifier)}`; const headers = { Accept: "application/json" }; @@ -55695,7 +55692,7 @@ export const ip$address$management$address$maps$remove$a$zone$membership$from$an * Submit LOA document (pdf format) under the account. */ export const ip$address$management$prefixes$upload$loa$document = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$upload$loa$document, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -55712,7 +55709,7 @@ export const ip$address$management$prefixes$upload$loa$document = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$download$loa$document, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents/\${encodeURIComponent(params.parameter.loa_document_identifier)}/download\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents/${encodeURIComponent(params.parameter.loa_document_identifier)}/download`; const headers = { Accept: "application/json" }; @@ -55727,7 +55724,7 @@ export const ip$address$management$prefixes$download$loa$document = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$list$prefixes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes`; const headers = { Accept: "application/json" }; @@ -55742,7 +55739,7 @@ export const ip$address$management$prefixes$list$prefixes = (apiC * Add a new prefix under the account. */ export const ip$address$management$prefixes$add$prefix = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$add$prefix, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55759,7 +55756,7 @@ export const ip$address$management$prefixes$add$prefix = (apiClie * List a particular prefix owned by the account. */ export const ip$address$management$prefixes$prefix$details = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$prefix$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55774,7 +55771,7 @@ export const ip$address$management$prefixes$prefix$details = (api * Delete an unapproved prefix owned by the account. */ export const ip$address$management$prefixes$delete$prefix = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$delete$prefix, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55789,7 +55786,7 @@ export const ip$address$management$prefixes$delete$prefix = (apiC * Modify the description for a prefix owned by the account. */ export const ip$address$management$prefixes$update$prefix$description = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$update$prefix$description, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55806,7 +55803,7 @@ export const ip$address$management$prefixes$update$prefix$description = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$list$bgp$prefixes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes`; const headers = { Accept: "application/json" }; @@ -55821,7 +55818,7 @@ export const ip$address$management$prefixes$list$bgp$prefixes = ( * Retrieve a single BGP Prefix according to its identifier */ export const ip$address$management$prefixes$fetch$bgp$prefix = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$fetch$bgp$prefix, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/\${encodeURIComponent(params.parameter.bgp_prefix_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/${encodeURIComponent(params.parameter.bgp_prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55836,7 +55833,7 @@ export const ip$address$management$prefixes$fetch$bgp$prefix = (a * Update the properties of a BGP Prefix, such as the on demand advertisement status (advertised or withdrawn). */ export const ip$address$management$prefixes$update$bgp$prefix = (apiClient: ApiClient) => (params: Params$ip$address$management$prefixes$update$bgp$prefix, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/\${encodeURIComponent(params.parameter.bgp_prefix_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/${encodeURIComponent(params.parameter.bgp_prefix_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55853,7 +55850,7 @@ export const ip$address$management$prefixes$update$bgp$prefix = ( * List the current advertisement state for a prefix. */ export const ip$address$management$dynamic$advertisement$get$advertisement$status = (apiClient: ApiClient) => (params: Params$ip$address$management$dynamic$advertisement$get$advertisement$status, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status`; const headers = { Accept: "application/json" }; @@ -55868,7 +55865,7 @@ export const ip$address$management$dynamic$advertisement$get$advertisement$statu * Advertise or withdraw BGP route for a prefix. */ export const ip$address$management$dynamic$advertisement$update$prefix$dynamic$advertisement$status = (apiClient: ApiClient) => (params: Params$ip$address$management$dynamic$advertisement$update$prefix$dynamic$advertisement$status, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55883,10 +55880,10 @@ export const ip$address$management$dynamic$advertisement$update$prefix$dynamic$a /** * List Service Bindings * List the Cloudflare services this prefix is currently bound to. Traffic sent to an address within an IP prefix will be routed to the Cloudflare service of the most-specific Service Binding matching the address. - * **Example:** binding \`192.0.2.0/24\` to Cloudflare Magic Transit and \`192.0.2.1/32\` to the Cloudflare CDN would route traffic for \`192.0.2.1\` to the CDN, and traffic for all other IPs in the prefix to Cloudflare Magic Transit. + * **Example:** binding `192.0.2.0/24` to Cloudflare Magic Transit and `192.0.2.1/32` to the Cloudflare CDN would route traffic for `192.0.2.1` to the CDN, and traffic for all other IPs in the prefix to Cloudflare Magic Transit. */ export const ip$address$management$service$bindings$list$service$bindings = (apiClient: ApiClient) => (params: Params$ip$address$management$service$bindings$list$service$bindings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings`; const headers = { Accept: "application/json" }; @@ -55902,7 +55899,7 @@ export const ip$address$management$service$bindings$list$service$bindings = (apiClient: ApiClient) => (params: Params$ip$address$management$service$bindings$create$service$binding, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55919,7 +55916,7 @@ export const ip$address$management$service$bindings$create$service$binding = (apiClient: ApiClient) => (params: Params$ip$address$management$service$bindings$get$service$binding, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/\${encodeURIComponent(params.parameter.binding_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/${encodeURIComponent(params.parameter.binding_identifier)}`; const headers = { Accept: "application/json" }; @@ -55934,7 +55931,7 @@ export const ip$address$management$service$bindings$get$service$binding = (apiClient: ApiClient) => (params: Params$ip$address$management$service$bindings$delete$service$binding, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/\${encodeURIComponent(params.parameter.binding_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/${encodeURIComponent(params.parameter.binding_identifier)}`; const headers = { Accept: "application/json" }; @@ -55949,7 +55946,7 @@ export const ip$address$management$service$bindings$delete$service$binding = (apiClient: ApiClient) => (params: Params$ip$address$management$prefix$delegation$list$prefix$delegations, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations`; const headers = { Accept: "application/json" }; @@ -55964,7 +55961,7 @@ export const ip$address$management$prefix$delegation$list$prefix$delegations = < * Create a new account delegation for a given IP prefix. */ export const ip$address$management$prefix$delegation$create$prefix$delegation = (apiClient: ApiClient) => (params: Params$ip$address$management$prefix$delegation$create$prefix$delegation, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55981,7 +55978,7 @@ export const ip$address$management$prefix$delegation$create$prefix$delegation = * Delete an account delegation for a given IP prefix. */ export const ip$address$management$prefix$delegation$delete$prefix$delegation = (apiClient: ApiClient) => (params: Params$ip$address$management$prefix$delegation$delete$prefix$delegation, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations/\${encodeURIComponent(params.parameter.delegation_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations/${encodeURIComponent(params.parameter.delegation_identifier)}`; const headers = { Accept: "application/json" }; @@ -55996,7 +55993,7 @@ export const ip$address$management$prefix$delegation$delete$prefix$delegation = * Bring-Your-Own IP (BYOIP) prefixes onboarded to Cloudflare must be bound to a service running on the Cloudflare network to enable a Cloudflare product on the IP addresses. This endpoint can be used as a reference of available services on the Cloudflare network, and their service IDs. */ export const ip$address$management$service$bindings$list$services = (apiClient: ApiClient) => (params: Params$ip$address$management$service$bindings$list$services, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/services\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/services`; const headers = { Accept: "application/json" }; @@ -56014,7 +56011,7 @@ export const ip$address$management$service$bindings$list$services = (apiClient: ApiClient) => (params: Params$workers$ai$post$run$model, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/ai/run/\${encodeURIComponent(params.parameter.model_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/ai/run/${encodeURIComponent(params.parameter.model_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -56031,7 +56028,7 @@ export const workers$ai$post$run$model = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$audit$logs$get$account$audit$logs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/audit_logs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/audit_logs`; const headers = { Accept: "application/json" }; @@ -56061,7 +56058,7 @@ export const audit$logs$get$account$audit$logs = (apiClient: ApiC * Gets the current billing profile for the account. */ export const account$billing$profile$$$deprecated$$billing$profile$details = (apiClient: ApiClient) => (params: Params$account$billing$profile$$$deprecated$$billing$profile$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/billing/profile\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/billing/profile`; const headers = { Accept: "application/json" }; @@ -56076,7 +56073,7 @@ export const account$billing$profile$$$deprecated$$billing$profile$details = (apiClient: ApiClient) => (params: Params$accounts$turnstile$widgets$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets`; const headers = { Accept: "application/json" }; @@ -56098,7 +56095,7 @@ export const accounts$turnstile$widgets$list = (apiClient: ApiCli * Lists challenge widgets. */ export const accounts$turnstile$widget$create = (apiClient: ApiClient) => (params: Params$accounts$turnstile$widget$create, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56122,7 +56119,7 @@ export const accounts$turnstile$widget$create = (apiClient: ApiCl * Show a single challenge widget configuration. */ export const accounts$turnstile$widget$get = (apiClient: ApiClient) => (params: Params$accounts$turnstile$widget$get, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { Accept: "application/json" }; @@ -56137,7 +56134,7 @@ export const accounts$turnstile$widget$get = (apiClient: ApiClien * Update the configuration of a widget. */ export const accounts$turnstile$widget$update = (apiClient: ApiClient) => (params: Params$accounts$turnstile$widget$update, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56154,7 +56151,7 @@ export const accounts$turnstile$widget$update = (apiClient: ApiCl * Destroy a Turnstile Widget. */ export const accounts$turnstile$widget$delete = (apiClient: ApiClient) => (params: Params$accounts$turnstile$widget$delete, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { Accept: "application/json" }; @@ -56166,13 +56163,13 @@ export const accounts$turnstile$widget$delete = (apiClient: ApiCl }; /** * Rotate Secret for a Turnstile Widget - * Generate a new secret key for this widget. If \`invalidate_immediately\` - * is set to \`false\`, the previous secret remains valid for 2 hours. + * Generate a new secret key for this widget. If `invalidate_immediately` + * is set to `false`, the previous secret remains valid for 2 hours. * * Note that secrets cannot be rotated again during the grace period. */ export const accounts$turnstile$widget$rotate$secret = (apiClient: ApiClient) => (params: Params$accounts$turnstile$widget$rotate$secret, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}/rotate_secret\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}/rotate_secret`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56189,7 +56186,7 @@ export const accounts$turnstile$widget$rotate$secret = (apiClient * Fetches all the custom pages at the account level. */ export const custom$pages$for$an$account$list$custom$pages = (apiClient: ApiClient) => (params: Params$custom$pages$for$an$account$list$custom$pages, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages`; const headers = { Accept: "application/json" }; @@ -56204,7 +56201,7 @@ export const custom$pages$for$an$account$list$custom$pages = (api * Fetches the details of a custom page. */ export const custom$pages$for$an$account$get$a$custom$page = (apiClient: ApiClient) => (params: Params$custom$pages$for$an$account$get$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56219,7 +56216,7 @@ export const custom$pages$for$an$account$get$a$custom$page = (api * Updates the configuration of an existing custom page. */ export const custom$pages$for$an$account$update$a$custom$page = (apiClient: ApiClient) => (params: Params$custom$pages$for$an$account$update$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56236,7 +56233,7 @@ export const custom$pages$for$an$account$update$a$custom$page = ( * Returns the specified D1 database. */ export const cloudflare$d1$get$database = (apiClient: ApiClient) => (params: Params$cloudflare$d1$get$database, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}`; const headers = { Accept: "application/json" }; @@ -56251,7 +56248,7 @@ export const cloudflare$d1$get$database = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$cloudflare$d1$delete$database, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}`; const headers = { Accept: "application/json" }; @@ -56266,7 +56263,7 @@ export const cloudflare$d1$delete$database = (apiClient: ApiClien * Returns the query result. */ export const cloudflare$d1$query$database = (apiClient: ApiClient) => (params: Params$cloudflare$d1$query$database, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}/query\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}/query`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56283,7 +56280,7 @@ export const cloudflare$d1$query$database = (apiClient: ApiClient * Run traceroutes from Cloudflare colos. */ export const diagnostics$traceroute = (apiClient: ApiClient) => (params: Params$diagnostics$traceroute, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/diagnostics/traceroute\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/diagnostics/traceroute`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56302,7 +56299,7 @@ export const diagnostics$traceroute = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dns$firewall$analytics$table, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report`; const headers = { Accept: "application/json" }; @@ -56329,7 +56326,7 @@ export const dns$firewall$analytics$table = (apiClient: ApiClient * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ export const dns$firewall$analytics$by$time = (apiClient: ApiClient) => (params: Params$dns$firewall$analytics$by$time, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime`; const headers = { Accept: "application/json" }; @@ -56355,7 +56352,7 @@ export const dns$firewall$analytics$by$time = (apiClient: ApiClie * Lists existing destination addresses. */ export const email$routing$destination$addresses$list$destination$addresses = (apiClient: ApiClient) => (params: Params$email$routing$destination$addresses$list$destination$addresses, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses`; const headers = { Accept: "application/json" }; @@ -56377,7 +56374,7 @@ export const email$routing$destination$addresses$list$destination$addresses = (apiClient: ApiClient) => (params: Params$email$routing$destination$addresses$create$a$destination$address, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56394,7 +56391,7 @@ export const email$routing$destination$addresses$create$a$destination$address = * Gets information for a specific destination email already created. */ export const email$routing$destination$addresses$get$a$destination$address = (apiClient: ApiClient) => (params: Params$email$routing$destination$addresses$get$a$destination$address, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/\${encodeURIComponent(params.parameter.destination_address_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/${encodeURIComponent(params.parameter.destination_address_identifier)}`; const headers = { Accept: "application/json" }; @@ -56409,7 +56406,7 @@ export const email$routing$destination$addresses$get$a$destination$address = (apiClient: ApiClient) => (params: Params$email$routing$destination$addresses$delete$destination$address, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/\${encodeURIComponent(params.parameter.destination_address_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/${encodeURIComponent(params.parameter.destination_address_identifier)}`; const headers = { Accept: "application/json" }; @@ -56424,7 +56421,7 @@ export const email$routing$destination$addresses$delete$destination$address = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$an$account$list$ip$access$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -56450,7 +56447,7 @@ export const ip$access$rules$for$an$account$list$ip$access$rules = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$an$account$create$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56467,7 +56464,7 @@ export const ip$access$rules$for$an$account$create$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$an$account$get$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56484,7 +56481,7 @@ export const ip$access$rules$for$an$account$get$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$an$account$delete$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56501,7 +56498,7 @@ export const ip$access$rules$for$an$account$delete$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$an$account$update$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56515,7 +56512,7 @@ export const ip$access$rules$for$an$account$update$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$get$indicator$feeds, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds`; const headers = { Accept: "application/json" }; @@ -56527,7 +56524,7 @@ export const custom$indicator$feeds$get$indicator$feeds = (apiCli }; /** Create new indicator feed */ export const custom$indicator$feeds$create$indicator$feeds = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$create$indicator$feeds, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56541,7 +56538,7 @@ export const custom$indicator$feeds$create$indicator$feeds = (api }; /** Get indicator feed metadata */ export const custom$indicator$feeds$get$indicator$feed$metadata = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$get$indicator$feed$metadata, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}`; const headers = { Accept: "application/json" }; @@ -56553,7 +56550,7 @@ export const custom$indicator$feeds$get$indicator$feed$metadata = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$get$indicator$feed$data, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}/data\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}/data`; const headers = { Accept: "text/csv" }; @@ -56565,7 +56562,7 @@ export const custom$indicator$feeds$get$indicator$feed$data = (ap }; /** Update indicator feed data */ export const custom$indicator$feeds$update$indicator$feed$data = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$update$indicator$feed$data, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}/snapshot\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}/snapshot`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -56579,7 +56576,7 @@ export const custom$indicator$feeds$update$indicator$feed$data = }; /** Grant permission to indicator feed */ export const custom$indicator$feeds$add$permission = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$add$permission, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/add\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/add`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56593,7 +56590,7 @@ export const custom$indicator$feeds$add$permission = (apiClient: }; /** Revoke permission to indicator feed */ export const custom$indicator$feeds$remove$permission = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$remove$permission, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/remove\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/remove`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56607,7 +56604,7 @@ export const custom$indicator$feeds$remove$permission = (apiClien }; /** List indicator feed permissions */ export const custom$indicator$feeds$view$permissions = (apiClient: ApiClient) => (params: Params$custom$indicator$feeds$view$permissions, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/view\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/view`; const headers = { Accept: "application/json" }; @@ -56619,7 +56616,7 @@ export const custom$indicator$feeds$view$permissions = (apiClient }; /** List sinkholes owned by this account */ export const sinkhole$config$get$sinkholes = (apiClient: ApiClient) => (params: Params$sinkhole$config$get$sinkholes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/sinkholes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/sinkholes`; const headers = { Accept: "application/json" }; @@ -56634,7 +56631,7 @@ export const sinkhole$config$get$sinkholes = (apiClient: ApiClien * List configured monitors for an account. */ export const account$load$balancer$monitors$list$monitors = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$list$monitors, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors`; const headers = { Accept: "application/json" }; @@ -56649,7 +56646,7 @@ export const account$load$balancer$monitors$list$monitors = (apiC * Create a configured monitor. */ export const account$load$balancer$monitors$create$monitor = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$create$monitor, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56666,7 +56663,7 @@ export const account$load$balancer$monitors$create$monitor = (api * List a single configured monitor for an account. */ export const account$load$balancer$monitors$monitor$details = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$monitor$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56681,7 +56678,7 @@ export const account$load$balancer$monitors$monitor$details = (ap * Modify a configured monitor. */ export const account$load$balancer$monitors$update$monitor = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$update$monitor, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56698,7 +56695,7 @@ export const account$load$balancer$monitors$update$monitor = (api * Delete a configured monitor. */ export const account$load$balancer$monitors$delete$monitor = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$delete$monitor, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56713,7 +56710,7 @@ export const account$load$balancer$monitors$delete$monitor = (api * Apply changes to an existing monitor, overwriting the supplied properties. */ export const account$load$balancer$monitors$patch$monitor = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$patch$monitor, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56730,7 +56727,7 @@ export const account$load$balancer$monitors$patch$monitor = (apiC * Preview pools using the specified monitor with provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ export const account$load$balancer$monitors$preview$monitor = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$preview$monitor, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56747,7 +56744,7 @@ export const account$load$balancer$monitors$preview$monitor = (ap * Get the list of resources that reference the provided monitor. */ export const account$load$balancer$monitors$list$monitor$references = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$list$monitor$references, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -56762,7 +56759,7 @@ export const account$load$balancer$monitors$list$monitor$references = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$list$pools, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { Accept: "application/json" }; @@ -56781,7 +56778,7 @@ export const account$load$balancer$pools$list$pools = (apiClient: * Create a new pool. */ export const account$load$balancer$pools$create$pool = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$create$pool, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56795,10 +56792,10 @@ export const account$load$balancer$pools$create$pool = (apiClient }; /** * Patch Pools - * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending \`name\`. Returns the list of affected pools. Supports the standard pagination query parameters, either \`limit\`/\`offset\` or \`per_page\`/\`page\`. + * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending `name`. Returns the list of affected pools. Supports the standard pagination query parameters, either `limit`/`offset` or `per_page`/`page`. */ export const account$load$balancer$pools$patch$pools = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$patch$pools, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56815,7 +56812,7 @@ export const account$load$balancer$pools$patch$pools = (apiClient * Fetch a single configured pool. */ export const account$load$balancer$pools$pool$details = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$pool$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56830,7 +56827,7 @@ export const account$load$balancer$pools$pool$details = (apiClien * Modify a configured pool. */ export const account$load$balancer$pools$update$pool = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$update$pool, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56847,7 +56844,7 @@ export const account$load$balancer$pools$update$pool = (apiClient * Delete a configured pool. */ export const account$load$balancer$pools$delete$pool = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$delete$pool, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56862,7 +56859,7 @@ export const account$load$balancer$pools$delete$pool = (apiClient * Apply changes to an existing pool, overwriting the supplied properties. */ export const account$load$balancer$pools$patch$pool = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$patch$pool, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56879,7 +56876,7 @@ export const account$load$balancer$pools$patch$pool = (apiClient: * Fetch the latest pool health status for a single pool. */ export const account$load$balancer$pools$pool$health$details = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$pool$health$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/health\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/health`; const headers = { Accept: "application/json" }; @@ -56894,7 +56891,7 @@ export const account$load$balancer$pools$pool$health$details = (a * Preview pool health using provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ export const account$load$balancer$pools$preview$pool = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$preview$pool, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56911,7 +56908,7 @@ export const account$load$balancer$pools$preview$pool = (apiClien * Get the list of resources that reference the provided pool. */ export const account$load$balancer$pools$list$pool$references = (apiClient: ApiClient) => (params: Params$account$load$balancer$pools$list$pool$references, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -56926,7 +56923,7 @@ export const account$load$balancer$pools$list$pool$references = ( * Get the result of a previous preview operation using the provided preview_id. */ export const account$load$balancer$monitors$preview$result = (apiClient: ApiClient) => (params: Params$account$load$balancer$monitors$preview$result, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/preview/\${encodeURIComponent(params.parameter.preview_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/preview/${encodeURIComponent(params.parameter.preview_id)}`; const headers = { Accept: "application/json" }; @@ -56941,7 +56938,7 @@ export const account$load$balancer$monitors$preview$result = (api * List all region mappings. */ export const load$balancer$regions$list$regions = (apiClient: ApiClient) => (params: Params$load$balancer$regions$list$regions, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions`; const headers = { Accept: "application/json" }; @@ -56962,7 +56959,7 @@ export const load$balancer$regions$list$regions = (apiClient: Api * Get a single region mapping. */ export const load$balancer$regions$get$region = (apiClient: ApiClient) => (params: Params$load$balancer$regions$get$region, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions/\${encodeURIComponent(params.parameter.region_code)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions/${encodeURIComponent(params.parameter.region_code)}`; const headers = { Accept: "application/json" }; @@ -56977,7 +56974,7 @@ export const load$balancer$regions$get$region = (apiClient: ApiCl * Search for Load Balancing resources. */ export const account$load$balancer$search$search$resources = (apiClient: ApiClient) => (params: Params$account$load$balancer$search$search$resources, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/search\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/search`; const headers = { Accept: "application/json" }; @@ -56998,7 +56995,7 @@ export const account$load$balancer$search$search$resources = (api * Lists interconnects associated with an account. */ export const magic$interconnects$list$interconnects = (apiClient: ApiClient) => (params: Params$magic$interconnects$list$interconnects, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects`; const headers = { Accept: "application/json" }; @@ -57010,10 +57007,10 @@ export const magic$interconnects$list$interconnects = (apiClient: }; /** * Update multiple interconnects - * Updates multiple interconnects associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates multiple interconnects associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$interconnects$update$multiple$interconnects = (apiClient: ApiClient) => (params: Params$magic$interconnects$update$multiple$interconnects, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57030,7 +57027,7 @@ export const magic$interconnects$update$multiple$interconnects = * Lists details for a specific interconnect. */ export const magic$interconnects$list$interconnect$details = (apiClient: ApiClient) => (params: Params$magic$interconnects$list$interconnect$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57042,10 +57039,10 @@ export const magic$interconnects$list$interconnect$details = (api }; /** * Update interconnect - * Updates a specific interconnect associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific interconnect associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$interconnects$update$interconnect = (apiClient: ApiClient) => (params: Params$magic$interconnects$update$interconnect, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57062,7 +57059,7 @@ export const magic$interconnects$update$interconnect = (apiClient * Lists GRE tunnels associated with an account. */ export const magic$gre$tunnels$list$gre$tunnels = (apiClient: ApiClient) => (params: Params$magic$gre$tunnels$list$gre$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { Accept: "application/json" }; @@ -57074,10 +57071,10 @@ export const magic$gre$tunnels$list$gre$tunnels = (apiClient: Api }; /** * Update multiple GRE tunnels - * Updates multiple GRE tunnels. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates multiple GRE tunnels. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$gre$tunnels$update$multiple$gre$tunnels = (apiClient: ApiClient) => (params: Params$magic$gre$tunnels$update$multiple$gre$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57091,10 +57088,10 @@ export const magic$gre$tunnels$update$multiple$gre$tunnels = (api }; /** * Create GRE tunnels - * Creates new GRE tunnels. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Creates new GRE tunnels. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$gre$tunnels$create$gre$tunnels = (apiClient: ApiClient) => (params: Params$magic$gre$tunnels$create$gre$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57111,7 +57108,7 @@ export const magic$gre$tunnels$create$gre$tunnels = (apiClient: A * Lists informtion for a specific GRE tunnel. */ export const magic$gre$tunnels$list$gre$tunnel$details = (apiClient: ApiClient) => (params: Params$magic$gre$tunnels$list$gre$tunnel$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57123,10 +57120,10 @@ export const magic$gre$tunnels$list$gre$tunnel$details = (apiClie }; /** * Update GRE Tunnel - * Updates a specific GRE tunnel. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific GRE tunnel. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$gre$tunnels$update$gre$tunnel = (apiClient: ApiClient) => (params: Params$magic$gre$tunnels$update$gre$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57140,10 +57137,10 @@ export const magic$gre$tunnels$update$gre$tunnel = (apiClient: Ap }; /** * Delete GRE Tunnel - * Disables and removes a specific static GRE tunnel. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Disables and removes a specific static GRE tunnel. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$gre$tunnels$delete$gre$tunnel = (apiClient: ApiClient) => (params: Params$magic$gre$tunnels$delete$gre$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57158,7 +57155,7 @@ export const magic$gre$tunnels$delete$gre$tunnel = (apiClient: Ap * Lists IPsec tunnels associated with an account. */ export const magic$ipsec$tunnels$list$ipsec$tunnels = (apiClient: ApiClient) => (params: Params$magic$ipsec$tunnels$list$ipsec$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { Accept: "application/json" }; @@ -57170,10 +57167,10 @@ export const magic$ipsec$tunnels$list$ipsec$tunnels = (apiClient: }; /** * Update multiple IPsec tunnels - * Update multiple IPsec tunnels associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Update multiple IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$ipsec$tunnels$update$multiple$ipsec$tunnels = (apiClient: ApiClient) => (params: Params$magic$ipsec$tunnels$update$multiple$ipsec$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57187,10 +57184,10 @@ export const magic$ipsec$tunnels$update$multiple$ipsec$tunnels = }; /** * Create IPsec tunnels - * Creates new IPsec tunnels associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Creates new IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$ipsec$tunnels$create$ipsec$tunnels = (apiClient: ApiClient) => (params: Params$magic$ipsec$tunnels$create$ipsec$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57207,7 +57204,7 @@ export const magic$ipsec$tunnels$create$ipsec$tunnels = (apiClien * Lists details for a specific IPsec tunnel. */ export const magic$ipsec$tunnels$list$ipsec$tunnel$details = (apiClient: ApiClient) => (params: Params$magic$ipsec$tunnels$list$ipsec$tunnel$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57219,10 +57216,10 @@ export const magic$ipsec$tunnels$list$ipsec$tunnel$details = (api }; /** * Update IPsec Tunnel - * Updates a specific IPsec tunnel associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific IPsec tunnel associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$ipsec$tunnels$update$ipsec$tunnel = (apiClient: ApiClient) => (params: Params$magic$ipsec$tunnels$update$ipsec$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57236,10 +57233,10 @@ export const magic$ipsec$tunnels$update$ipsec$tunnel = (apiClient }; /** * Delete IPsec Tunnel - * Disables and removes a specific static IPsec Tunnel associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Disables and removes a specific static IPsec Tunnel associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ export const magic$ipsec$tunnels$delete$ipsec$tunnel = (apiClient: ApiClient) => (params: Params$magic$ipsec$tunnels$delete$ipsec$tunnel, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57251,10 +57248,10 @@ export const magic$ipsec$tunnels$delete$ipsec$tunnel = (apiClient }; /** * Generate Pre Shared Key (PSK) for IPsec tunnels - * Generates a Pre Shared Key for a specific IPsec tunnel used in the IKE session. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. After a PSK is generated, the PSK is immediately persisted to Cloudflare's edge and cannot be retrieved later. Note the PSK in a safe place. + * Generates a Pre Shared Key for a specific IPsec tunnel used in the IKE session. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. After a PSK is generated, the PSK is immediately persisted to Cloudflare's edge and cannot be retrieved later. Note the PSK in a safe place. */ export const magic$ipsec$tunnels$generate$pre$shared$key$$$psk$$for$ipsec$tunnels = (apiClient: ApiClient) => (params: Params$magic$ipsec$tunnels$generate$pre$shared$key$$$psk$$for$ipsec$tunnels, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}/psk_generate\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}/psk_generate`; const headers = { Accept: "application/json" }; @@ -57269,7 +57266,7 @@ export const magic$ipsec$tunnels$generate$pre$shared$key$$$psk$$for$ipsec$tunnel * List all Magic static routes. */ export const magic$static$routes$list$routes = (apiClient: ApiClient) => (params: Params$magic$static$routes$list$routes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { Accept: "application/json" }; @@ -57281,10 +57278,10 @@ export const magic$static$routes$list$routes = (apiClient: ApiCli }; /** * Update Many Routes - * Update multiple Magic static routes. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. Only fields for a route that need to be changed need be provided. + * Update multiple Magic static routes. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. Only fields for a route that need to be changed need be provided. */ export const magic$static$routes$update$many$routes = (apiClient: ApiClient) => (params: Params$magic$static$routes$update$many$routes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57298,10 +57295,10 @@ export const magic$static$routes$update$many$routes = (apiClient: }; /** * Create Routes - * Creates a new Magic static route. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. + * Creates a new Magic static route. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. */ export const magic$static$routes$create$routes = (apiClient: ApiClient) => (params: Params$magic$static$routes$create$routes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57318,7 +57315,7 @@ export const magic$static$routes$create$routes = (apiClient: ApiC * Delete multiple Magic static routes. */ export const magic$static$routes$delete$many$routes = (apiClient: ApiClient) => (params: Params$magic$static$routes$delete$many$routes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57335,7 +57332,7 @@ export const magic$static$routes$delete$many$routes = (apiClient: * Get a specific Magic static route. */ export const magic$static$routes$route$details = (apiClient: ApiClient) => (params: Params$magic$static$routes$route$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { Accept: "application/json" }; @@ -57347,10 +57344,10 @@ export const magic$static$routes$route$details = (apiClient: ApiC }; /** * Update Route - * Update a specific Magic static route. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. + * Update a specific Magic static route. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. */ export const magic$static$routes$update$route = (apiClient: ApiClient) => (params: Params$magic$static$routes$update$route, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57367,7 +57364,7 @@ export const magic$static$routes$update$route = (apiClient: ApiCl * Disable and remove a specific Magic static route. */ export const magic$static$routes$delete$route = (apiClient: ApiClient) => (params: Params$magic$static$routes$delete$route, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { Accept: "application/json" }; @@ -57382,7 +57379,7 @@ export const magic$static$routes$delete$route = (apiClient: ApiCl * List all members of an account. */ export const account$members$list$members = (apiClient: ApiClient) => (params: Params$account$members$list$members, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members`; const headers = { Accept: "application/json" }; @@ -57405,7 +57402,7 @@ export const account$members$list$members = (apiClient: ApiClient * Add a user to the list of members for this account. */ export const account$members$add$member = (apiClient: ApiClient) => (params: Params$account$members$add$member, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57422,7 +57419,7 @@ export const account$members$add$member = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$account$members$member$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57437,7 +57434,7 @@ export const account$members$member$details = (apiClient: ApiClie * Modify an account member. */ export const account$members$update$member = (apiClient: ApiClient) => (params: Params$account$members$update$member, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57454,7 +57451,7 @@ export const account$members$update$member = (apiClient: ApiClien * Remove a member from an account. */ export const account$members$remove$member = (apiClient: ApiClient) => (params: Params$account$members$remove$member, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57469,7 +57466,7 @@ export const account$members$remove$member = (apiClient: ApiClien * Lists default sampling and router IPs for account. */ export const magic$network$monitoring$configuration$list$account$configuration = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$configuration$list$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57484,7 +57481,7 @@ export const magic$network$monitoring$configuration$list$account$configuration = * Update an existing network monitoring configuration, requires the entire configuration to be updated at once. */ export const magic$network$monitoring$configuration$update$an$entire$account$configuration = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$configuration$update$an$entire$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57499,7 +57496,7 @@ export const magic$network$monitoring$configuration$update$an$entire$account$con * Create a new network monitoring configuration. */ export const magic$network$monitoring$configuration$create$account$configuration = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$configuration$create$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57514,7 +57511,7 @@ export const magic$network$monitoring$configuration$create$account$configuration * Delete an existing network monitoring configuration. */ export const magic$network$monitoring$configuration$delete$account$configuration = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$configuration$delete$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57529,7 +57526,7 @@ export const magic$network$monitoring$configuration$delete$account$configuration * Update fields in an existing network monitoring configuration. */ export const magic$network$monitoring$configuration$update$account$configuration$fields = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$configuration$update$account$configuration$fields, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57544,7 +57541,7 @@ export const magic$network$monitoring$configuration$update$account$configuration * Lists default sampling, router IPs, and rules for account. */ export const magic$network$monitoring$configuration$list$rules$and$account$configuration = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$configuration$list$rules$and$account$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config/full\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config/full`; const headers = { Accept: "application/json" }; @@ -57559,7 +57556,7 @@ export const magic$network$monitoring$configuration$list$rules$and$account$confi * Lists network monitoring rules for account. */ export const magic$network$monitoring$rules$list$rules = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$rules$list$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57574,7 +57571,7 @@ export const magic$network$monitoring$rules$list$rules = (apiClie * Update network monitoring rules for account. */ export const magic$network$monitoring$rules$update$rules = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$rules$update$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57589,7 +57586,7 @@ export const magic$network$monitoring$rules$update$rules = (apiCl * Create network monitoring rules for account. Currently only supports creating a single rule per API request. */ export const magic$network$monitoring$rules$create$rules = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$rules$create$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57604,7 +57601,7 @@ export const magic$network$monitoring$rules$create$rules = (apiCl * List a single network monitoring rule for account. */ export const magic$network$monitoring$rules$get$rule = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$rules$get$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57619,7 +57616,7 @@ export const magic$network$monitoring$rules$get$rule = (apiClient * Delete a network monitoring rule for account. */ export const magic$network$monitoring$rules$delete$rule = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$rules$delete$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57634,7 +57631,7 @@ export const magic$network$monitoring$rules$delete$rule = (apiCli * Update a network monitoring rule for account. */ export const magic$network$monitoring$rules$update$rule = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$rules$update$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57649,7 +57646,7 @@ export const magic$network$monitoring$rules$update$rule = (apiCli * Update advertisement for rule. */ export const magic$network$monitoring$rules$update$advertisement$for$rule = (apiClient: ApiClient) => (params: Params$magic$network$monitoring$rules$update$advertisement$for$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}/advertisement\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}/advertisement`; const headers = { Accept: "application/json" }; @@ -57664,7 +57661,7 @@ export const magic$network$monitoring$rules$update$advertisement$for$rule = (apiClient: ApiClient) => (params: Params$m$tls$certificate$management$list$m$tls$certificates, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates`; const headers = { Accept: "application/json" }; @@ -57679,7 +57676,7 @@ export const m$tls$certificate$management$list$m$tls$certificates = (apiClient: ApiClient) => (params: Params$m$tls$certificate$management$upload$m$tls$certificate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57696,7 +57693,7 @@ export const m$tls$certificate$management$upload$m$tls$certificate = (apiClient: ApiClient) => (params: Params$m$tls$certificate$management$get$m$tls$certificate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57711,7 +57708,7 @@ export const m$tls$certificate$management$get$m$tls$certificate = (apiClient: ApiClient) => (params: Params$m$tls$certificate$management$delete$m$tls$certificate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57726,7 +57723,7 @@ export const m$tls$certificate$management$delete$m$tls$certificate = (apiClient: ApiClient) => (params: Params$m$tls$certificate$management$list$m$tls$certificate$associations, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}/associations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}/associations`; const headers = { Accept: "application/json" }; @@ -57741,7 +57738,7 @@ export const m$tls$certificate$management$list$m$tls$certificate$associations = * Lists all packet capture requests for an account. */ export const magic$pcap$collection$list$packet$capture$requests = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$list$packet$capture$requests, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps`; const headers = { Accept: "application/json" }; @@ -57756,7 +57753,7 @@ export const magic$pcap$collection$list$packet$capture$requests = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$create$pcap$request, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57773,7 +57770,7 @@ export const magic$pcap$collection$create$pcap$request = (apiClie * Get information for a PCAP request by id. */ export const magic$pcap$collection$get$pcap$request = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$get$pcap$request, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57788,7 +57785,7 @@ export const magic$pcap$collection$get$pcap$request = (apiClient: * Download PCAP information into a file. Response is a binary PCAP file. */ export const magic$pcap$collection$download$simple$pcap = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$download$simple$pcap, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/\${encodeURIComponent(params.parameter.identifier)}/download\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/${encodeURIComponent(params.parameter.identifier)}/download`; const headers = {}; return apiClient.request({ httpMethod: "GET", @@ -57801,7 +57798,7 @@ export const magic$pcap$collection$download$simple$pcap = (apiCli * List all buckets configured for use with PCAPs API. */ export const magic$pcap$collection$list$pca$ps$bucket$ownership = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$list$pca$ps$bucket$ownership, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership`; const headers = { Accept: "application/json" }; @@ -57816,7 +57813,7 @@ export const magic$pcap$collection$list$pca$ps$bucket$ownership = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$add$buckets$for$full$packet$captures, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57833,7 +57830,7 @@ export const magic$pcap$collection$add$buckets$for$full$packet$captures = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$delete$buckets$for$full$packet$captures, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/${encodeURIComponent(params.parameter.identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -57846,7 +57843,7 @@ export const magic$pcap$collection$delete$buckets$for$full$packet$captures = (apiClient: ApiClient) => (params: Params$magic$pcap$collection$validate$buckets$for$full$packet$captures, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/validate\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57860,7 +57857,7 @@ export const magic$pcap$collection$validate$buckets$for$full$packet$captures = < }; /** Request Trace */ export const account$request$tracer$request$trace = (apiClient: ApiClient) => (params: Params$account$request$tracer$request$trace, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/request-tracer/trace\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/request-tracer/trace`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57877,7 +57874,7 @@ export const account$request$tracer$request$trace = (apiClient: A * Get all available roles for an account. */ export const account$roles$list$roles = (apiClient: ApiClient) => (params: Params$account$roles$list$roles, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/roles\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/roles`; const headers = { Accept: "application/json" }; @@ -57892,7 +57889,7 @@ export const account$roles$list$roles = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$account$roles$role$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/roles/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/roles/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57907,7 +57904,7 @@ export const account$roles$role$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$get$a$list$item, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items/\${encodeURIComponent(params.parameter.item_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items/${encodeURIComponent(params.parameter.item_id)}`; const headers = { Accept: "application/json" }; @@ -57921,10 +57918,10 @@ export const lists$get$a$list$item = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$lists$get$bulk$operation$status, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/bulk_operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/bulk_operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -57939,7 +57936,7 @@ export const lists$get$bulk$operation$status = (apiClient: ApiCli * Creates a new Web Analytics site. */ export const web$analytics$create$site = (apiClient: ApiClient) => (params: Params$web$analytics$create$site, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57956,7 +57953,7 @@ export const web$analytics$create$site = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$get$site, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { Accept: "application/json" }; @@ -57971,7 +57968,7 @@ export const web$analytics$get$site = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$update$site, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57988,7 +57985,7 @@ export const web$analytics$update$site = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$delete$site, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { Accept: "application/json" }; @@ -58003,7 +58000,7 @@ export const web$analytics$delete$site = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$list$sites, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/list\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/list`; const headers = { Accept: "application/json" }; @@ -58024,7 +58021,7 @@ export const web$analytics$list$sites = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$create$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58041,7 +58038,7 @@ export const web$analytics$create$rule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$update$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58058,7 +58055,7 @@ export const web$analytics$update$rule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$delete$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -58073,7 +58070,7 @@ export const web$analytics$delete$rule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$list$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rules`; const headers = { Accept: "application/json" }; @@ -58088,7 +58085,7 @@ export const web$analytics$list$rules = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$web$analytics$modify$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rules\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58105,7 +58102,7 @@ export const web$analytics$modify$rules = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$secondary$dns$$$acl$$list$ac$ls, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls`; const headers = { Accept: "application/json" }; @@ -58120,7 +58117,7 @@ export const secondary$dns$$$acl$$list$ac$ls = (apiClient: ApiCli * Create ACL. */ export const secondary$dns$$$acl$$create$acl = (apiClient: ApiClient) => (params: Params$secondary$dns$$$acl$$create$acl, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58137,7 +58134,7 @@ export const secondary$dns$$$acl$$create$acl = (apiClient: ApiCli * Get ACL. */ export const secondary$dns$$$acl$$acl$details = (apiClient: ApiClient) => (params: Params$secondary$dns$$$acl$$acl$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58152,7 +58149,7 @@ export const secondary$dns$$$acl$$acl$details = (apiClient: ApiCl * Modify ACL. */ export const secondary$dns$$$acl$$update$acl = (apiClient: ApiClient) => (params: Params$secondary$dns$$$acl$$update$acl, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58169,7 +58166,7 @@ export const secondary$dns$$$acl$$update$acl = (apiClient: ApiCli * Delete ACL. */ export const secondary$dns$$$acl$$delete$acl = (apiClient: ApiClient) => (params: Params$secondary$dns$$$acl$$delete$acl, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58184,7 +58181,7 @@ export const secondary$dns$$$acl$$delete$acl = (apiClient: ApiCli * List Peers. */ export const secondary$dns$$$peer$$list$peers = (apiClient: ApiClient) => (params: Params$secondary$dns$$$peer$$list$peers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers`; const headers = { Accept: "application/json" }; @@ -58199,7 +58196,7 @@ export const secondary$dns$$$peer$$list$peers = (apiClient: ApiCl * Create Peer. */ export const secondary$dns$$$peer$$create$peer = (apiClient: ApiClient) => (params: Params$secondary$dns$$$peer$$create$peer, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58216,7 +58213,7 @@ export const secondary$dns$$$peer$$create$peer = (apiClient: ApiC * Get Peer. */ export const secondary$dns$$$peer$$peer$details = (apiClient: ApiClient) => (params: Params$secondary$dns$$$peer$$peer$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58231,7 +58228,7 @@ export const secondary$dns$$$peer$$peer$details = (apiClient: Api * Modify Peer. */ export const secondary$dns$$$peer$$update$peer = (apiClient: ApiClient) => (params: Params$secondary$dns$$$peer$$update$peer, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58248,7 +58245,7 @@ export const secondary$dns$$$peer$$update$peer = (apiClient: ApiC * Delete Peer. */ export const secondary$dns$$$peer$$delete$peer = (apiClient: ApiClient) => (params: Params$secondary$dns$$$peer$$delete$peer, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58263,7 +58260,7 @@ export const secondary$dns$$$peer$$delete$peer = (apiClient: ApiC * List TSIGs. */ export const secondary$dns$$$tsig$$list$tsi$gs = (apiClient: ApiClient) => (params: Params$secondary$dns$$$tsig$$list$tsi$gs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs`; const headers = { Accept: "application/json" }; @@ -58278,7 +58275,7 @@ export const secondary$dns$$$tsig$$list$tsi$gs = (apiClient: ApiC * Create TSIG. */ export const secondary$dns$$$tsig$$create$tsig = (apiClient: ApiClient) => (params: Params$secondary$dns$$$tsig$$create$tsig, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58295,7 +58292,7 @@ export const secondary$dns$$$tsig$$create$tsig = (apiClient: ApiC * Get TSIG. */ export const secondary$dns$$$tsig$$tsig$details = (apiClient: ApiClient) => (params: Params$secondary$dns$$$tsig$$tsig$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58310,7 +58307,7 @@ export const secondary$dns$$$tsig$$tsig$details = (apiClient: Api * Modify TSIG. */ export const secondary$dns$$$tsig$$update$tsig = (apiClient: ApiClient) => (params: Params$secondary$dns$$$tsig$$update$tsig, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58327,7 +58324,7 @@ export const secondary$dns$$$tsig$$update$tsig = (apiClient: ApiC * Delete TSIG. */ export const secondary$dns$$$tsig$$delete$tsig = (apiClient: ApiClient) => (params: Params$secondary$dns$$$tsig$$delete$tsig, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58342,7 +58339,7 @@ export const secondary$dns$$$tsig$$delete$tsig = (apiClient: ApiC * Retrieves Workers KV request metrics for the given account. */ export const workers$kv$request$analytics$query$request$analytics = (apiClient: ApiClient) => (params: Params$workers$kv$request$analytics$query$request$analytics, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics`; const headers = { Accept: "application/json" }; @@ -58361,7 +58358,7 @@ export const workers$kv$request$analytics$query$request$analytics = (apiClient: ApiClient) => (params: Params$workers$kv$stored$data$analytics$query$stored$data$analytics, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics/stored\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics/stored`; const headers = { Accept: "application/json" }; @@ -58380,7 +58377,7 @@ export const workers$kv$stored$data$analytics$query$stored$data$analytics = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$list$namespaces, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces`; const headers = { Accept: "application/json" }; @@ -58399,10 +58396,10 @@ export const workers$kv$namespace$list$namespaces = (apiClient: A }; /** * Create a Namespace - * Creates a namespace under the given title. A \`400\` is returned if the account already owns a namespace with this title. A namespace must be explicitly deleted to be replaced. + * Creates a namespace under the given title. A `400` is returned if the account already owns a namespace with this title. A namespace must be explicitly deleted to be replaced. */ export const workers$kv$namespace$create$a$namespace = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$create$a$namespace, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58419,7 +58416,7 @@ export const workers$kv$namespace$create$a$namespace = (apiClient * Modifies a namespace's title. */ export const workers$kv$namespace$rename$a$namespace = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$rename$a$namespace, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58436,7 +58433,7 @@ export const workers$kv$namespace$rename$a$namespace = (apiClient * Deletes the namespace corresponding to the given ID. */ export const workers$kv$namespace$remove$a$namespace = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$remove$a$namespace, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}`; const headers = { Accept: "application/json" }; @@ -58448,10 +58445,10 @@ export const workers$kv$namespace$remove$a$namespace = (apiClient }; /** * Write multiple key-value pairs - * Write multiple keys and values at once. Body should be an array of up to 10,000 key-value pairs to be stored, along with optional expiration information. Existing values and expirations will be overwritten. If neither \`expiration\` nor \`expiration_ttl\` is specified, the key-value pair will never expire. If both are set, \`expiration_ttl\` is used and \`expiration\` is ignored. The entire request size must be 100 megabytes or less. + * Write multiple keys and values at once. Body should be an array of up to 10,000 key-value pairs to be stored, along with optional expiration information. Existing values and expirations will be overwritten. If neither `expiration` nor `expiration_ttl` is specified, the key-value pair will never expire. If both are set, `expiration_ttl` is used and `expiration` is ignored. The entire request size must be 100 megabytes or less. */ export const workers$kv$namespace$write$multiple$key$value$pairs = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$write$multiple$key$value$pairs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/bulk\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/bulk`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58468,7 +58465,7 @@ export const workers$kv$namespace$write$multiple$key$value$pairs = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$delete$multiple$key$value$pairs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/bulk\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/bulk`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58485,7 +58482,7 @@ export const workers$kv$namespace$delete$multiple$key$value$pairs = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$list$a$namespace$$s$keys, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/keys\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/keys`; const headers = { Accept: "application/json" }; @@ -58503,10 +58500,10 @@ export const workers$kv$namespace$list$a$namespace$$s$keys = (api }; /** * Read the metadata for a key - * Returns the metadata associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. + * Returns the metadata associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. */ export const workers$kv$namespace$read$the$metadata$for$a$key = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$read$the$metadata$for$a$key, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/metadata/\${encodeURIComponent(params.parameter.key_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/metadata/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58518,10 +58515,10 @@ export const workers$kv$namespace$read$the$metadata$for$a$key = ( }; /** * Read key-value pair - * Returns the value associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. If the KV-pair is set to expire at some point, the expiration time as measured in seconds since the UNIX epoch will be returned in the \`expiration\` response header. + * Returns the value associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. If the KV-pair is set to expire at some point, the expiration time as measured in seconds since the UNIX epoch will be returned in the `expiration` response header. */ export const workers$kv$namespace$read$key$value$pair = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$read$key$value$pair, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58533,10 +58530,10 @@ export const workers$kv$namespace$read$key$value$pair = (apiClien }; /** * Write key-value pair with metadata - * Write a value identified by a key. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. Body should be the value to be stored along with JSON metadata to be associated with the key/value pair. Existing values, expirations, and metadata will be overwritten. If neither \`expiration\` nor \`expiration_ttl\` is specified, the key-value pair will never expire. If both are set, \`expiration_ttl\` is used and \`expiration\` is ignored. + * Write a value identified by a key. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. Body should be the value to be stored along with JSON metadata to be associated with the key/value pair. Existing values, expirations, and metadata will be overwritten. If neither `expiration` nor `expiration_ttl` is specified, the key-value pair will never expire. If both are set, `expiration_ttl` is used and `expiration` is ignored. */ export const workers$kv$namespace$write$key$value$pair$with$metadata = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$write$key$value$pair$with$metadata, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -58550,10 +58547,10 @@ export const workers$kv$namespace$write$key$value$pair$with$metadata = (apiClient: ApiClient) => (params: Params$workers$kv$namespace$delete$key$value$pair, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58568,7 +58565,7 @@ export const workers$kv$namespace$delete$key$value$pair = (apiCli * Lists all of an account's subscriptions. */ export const account$subscriptions$list$subscriptions = (apiClient: ApiClient) => (params: Params$account$subscriptions$list$subscriptions, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions`; const headers = { Accept: "application/json" }; @@ -58583,7 +58580,7 @@ export const account$subscriptions$list$subscriptions = (apiClien * Creates an account subscription. */ export const account$subscriptions$create$subscription = (apiClient: ApiClient) => (params: Params$account$subscriptions$create$subscription, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58600,7 +58597,7 @@ export const account$subscriptions$create$subscription = (apiClie * Updates an account subscription. */ export const account$subscriptions$update$subscription = (apiClient: ApiClient) => (params: Params$account$subscriptions$update$subscription, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/\${encodeURIComponent(params.parameter.subscription_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/${encodeURIComponent(params.parameter.subscription_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58617,7 +58614,7 @@ export const account$subscriptions$update$subscription = (apiClie * Deletes an account's subscription. */ export const account$subscriptions$delete$subscription = (apiClient: ApiClient) => (params: Params$account$subscriptions$delete$subscription, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/\${encodeURIComponent(params.parameter.subscription_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/${encodeURIComponent(params.parameter.subscription_identifier)}`; const headers = { Accept: "application/json" }; @@ -58632,7 +58629,7 @@ export const account$subscriptions$delete$subscription = (apiClie * Returns a list of Vectorize Indexes */ export const vectorize$list$vectorize$indexes = (apiClient: ApiClient) => (params: Params$vectorize$list$vectorize$indexes, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes`; const headers = { Accept: "application/json" }; @@ -58647,7 +58644,7 @@ export const vectorize$list$vectorize$indexes = (apiClient: ApiCl * Creates and returns a new Vectorize Index. */ export const vectorize$create$vectorize$index = (apiClient: ApiClient) => (params: Params$vectorize$create$vectorize$index, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58664,7 +58661,7 @@ export const vectorize$create$vectorize$index = (apiClient: ApiCl * Returns the specified Vectorize Index. */ export const vectorize$get$vectorize$index = (apiClient: ApiClient) => (params: Params$vectorize$get$vectorize$index, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { Accept: "application/json" }; @@ -58679,7 +58676,7 @@ export const vectorize$get$vectorize$index = (apiClient: ApiClien * Updates and returns the specified Vectorize Index. */ export const vectorize$update$vectorize$index = (apiClient: ApiClient) => (params: Params$vectorize$update$vectorize$index, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58696,7 +58693,7 @@ export const vectorize$update$vectorize$index = (apiClient: ApiCl * Deletes the specified Vectorize Index. */ export const vectorize$delete$vectorize$index = (apiClient: ApiClient) => (params: Params$vectorize$delete$vectorize$index, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { Accept: "application/json" }; @@ -58711,7 +58708,7 @@ export const vectorize$delete$vectorize$index = (apiClient: ApiCl * Delete a set of vectors from an index by their vector identifiers. */ export const vectorize$delete$vectors$by$id = (apiClient: ApiClient) => (params: Params$vectorize$delete$vectors$by$id, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/delete-by-ids\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/delete-by-ids`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58728,7 +58725,7 @@ export const vectorize$delete$vectors$by$id = (apiClient: ApiClie * Get a set of vectors from an index by their vector identifiers. */ export const vectorize$get$vectors$by$id = (apiClient: ApiClient) => (params: Params$vectorize$get$vectors$by$id, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/get-by-ids\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/get-by-ids`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58745,7 +58742,7 @@ export const vectorize$get$vectors$by$id = (apiClient: ApiClient< * Inserts vectors into the specified index and returns the count of the vectors successfully inserted. */ export const vectorize$insert$vector = (apiClient: ApiClient) => (params: Params$vectorize$insert$vector, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/insert\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/insert`; const headers = { "Content-Type": "application/x-ndjson", Accept: "application/json" @@ -58762,7 +58759,7 @@ export const vectorize$insert$vector = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$vectorize$query$vector, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/query\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/query`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58779,7 +58776,7 @@ export const vectorize$query$vector = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$vectorize$upsert$vector, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/upsert\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/upsert`; const headers = { "Content-Type": "application/x-ndjson", Accept: "application/json" @@ -58796,7 +58793,7 @@ export const vectorize$upsert$vector = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$add$an$account$membership$to$an$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/\${encodeURIComponent(params.parameter.account_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/${encodeURIComponent(params.parameter.account_identifier)}`; const headers = { Accept: "application/json" }; @@ -58811,7 +58808,7 @@ export const ip$address$management$address$maps$add$an$account$membership$to$an$ * Remove an account as a member of a particular address map. */ export const ip$address$management$address$maps$remove$an$account$membership$from$an$address$map = (apiClient: ApiClient) => (params: Params$ip$address$management$address$maps$remove$an$account$membership$from$an$address$map, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/\${encodeURIComponent(params.parameter.account_identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/${encodeURIComponent(params.parameter.account_identifier)}`; const headers = { Accept: "application/json" }; @@ -58823,10 +58820,10 @@ export const ip$address$management$address$maps$remove$an$account$membership$fro }; /** * Search URL scans - * Search scans by date and webpages' requests, including full URL (after redirects), hostname, and path.
A successful scan will appear in search results a few minutes after finishing but may take much longer if the system in under load. By default, only successfully completed scans will appear in search results, unless searching by \`scanId\`. Please take into account that older scans may be removed from the search index at an unspecified time. + * Search scans by date and webpages' requests, including full URL (after redirects), hostname, and path.
A successful scan will appear in search results a few minutes after finishing but may take much longer if the system in under load. By default, only successfully completed scans will appear in search results, unless searching by `scanId`. Please take into account that older scans may be removed from the search index at an unspecified time. */ export const urlscanner$search$scans = (apiClient: ApiClient) => (params: Params$urlscanner$search$scans, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan`; const headers = { Accept: "application/json" }; @@ -58856,7 +58853,7 @@ export const urlscanner$search$scans = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$urlscanner$create$scan, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58873,7 +58870,7 @@ export const urlscanner$create$scan = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$urlscanner$get$scan, option?: RequestOption): Promise<(Response$urlscanner$get$scan$Status$200 | Response$urlscanner$get$scan$Status$202)["application/json"]> => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}`; const headers = { Accept: "application/json" }; @@ -58888,7 +58885,7 @@ export const urlscanner$get$scan = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$urlscanner$get$scan$har, option?: RequestOption): Promise<(Response$urlscanner$get$scan$har$Status$200 | Response$urlscanner$get$scan$har$Status$202)["application/json"]> => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}/har\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}/har`; const headers = { Accept: "application/json" }; @@ -58903,7 +58900,7 @@ export const urlscanner$get$scan$har = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$urlscanner$get$scan$screenshot, option?: RequestOption): Promise<(Response$urlscanner$get$scan$screenshot$Status$200 | Response$urlscanner$get$scan$screenshot$Status$202)[ResponseContentType]> => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}/screenshot\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}/screenshot`; const headers = { Accept: params.headers.Accept }; @@ -58922,7 +58919,7 @@ export const urlscanner$get$scan$screenshot = (apiClient: ApiClie * Get information about a specific account that you are a member of. */ export const accounts$account$details = (apiClient: ApiClient) => (params: Params$accounts$account$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58937,7 +58934,7 @@ export const accounts$account$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$accounts$update$account, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58954,7 +58951,7 @@ export const accounts$update$account = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$access$applications$list$access$applications, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { Accept: "application/json" }; @@ -58969,7 +58966,7 @@ export const access$applications$list$access$applications = (apiC * Adds a new application to Access. */ export const access$applications$add$an$application = (apiClient: ApiClient) => (params: Params$access$applications$add$an$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58986,7 +58983,7 @@ export const access$applications$add$an$application = (apiClient: * Fetches information about an Access application. */ export const access$applications$get$an$access$application = (apiClient: ApiClient) => (params: Params$access$applications$get$an$access$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -59001,7 +58998,7 @@ export const access$applications$get$an$access$application = (api * Updates an Access application. */ export const access$applications$update$a$bookmark$application = (apiClient: ApiClient) => (params: Params$access$applications$update$a$bookmark$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59018,7 +59015,7 @@ export const access$applications$update$a$bookmark$application = * Deletes an application from Access. */ export const access$applications$delete$an$access$application = (apiClient: ApiClient) => (params: Params$access$applications$delete$an$access$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -59033,7 +59030,7 @@ export const access$applications$delete$an$access$application = ( * Revokes all tokens issued for an application. */ export const access$applications$revoke$service$tokens = (apiClient: ApiClient) => (params: Params$access$applications$revoke$service$tokens, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/revoke_tokens\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/revoke_tokens`; const headers = { Accept: "application/json" }; @@ -59048,7 +59045,7 @@ export const access$applications$revoke$service$tokens = (apiClie * Tests if a specific user has permission to access an application. */ export const access$applications$test$access$policies = (apiClient: ApiClient) => (params: Params$access$applications$test$access$policies, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/user_policy_checks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/user_policy_checks`; const headers = { Accept: "application/json" }; @@ -59063,7 +59060,7 @@ export const access$applications$test$access$policies = (apiClien * Fetches a short-lived certificate CA and its public key. */ export const access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca = (apiClient: ApiClient) => (params: Params$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59078,7 +59075,7 @@ export const access$short$lived$certificate$c$as$get$a$short$lived$certificate$c * Generates a new short-lived certificate CA and public key. */ export const access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca = (apiClient: ApiClient) => (params: Params$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59093,7 +59090,7 @@ export const access$short$lived$certificate$c$as$create$a$short$lived$certificat * Deletes a short-lived certificate CA. */ export const access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca = (apiClient: ApiClient) => (params: Params$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59108,7 +59105,7 @@ export const access$short$lived$certificate$c$as$delete$a$short$lived$certificat * Lists Access policies configured for an application. */ export const access$policies$list$access$policies = (apiClient: ApiClient) => (params: Params$access$policies$list$access$policies, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { Accept: "application/json" }; @@ -59123,7 +59120,7 @@ export const access$policies$list$access$policies = (apiClient: A * Create a new Access policy for an application. */ export const access$policies$create$an$access$policy = (apiClient: ApiClient) => (params: Params$access$policies$create$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59140,7 +59137,7 @@ export const access$policies$create$an$access$policy = (apiClient * Fetches a single Access policy. */ export const access$policies$get$an$access$policy = (apiClient: ApiClient) => (params: Params$access$policies$get$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59155,7 +59152,7 @@ export const access$policies$get$an$access$policy = (apiClient: A * Update a configured Access policy. */ export const access$policies$update$an$access$policy = (apiClient: ApiClient) => (params: Params$access$policies$update$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59172,7 +59169,7 @@ export const access$policies$update$an$access$policy = (apiClient * Delete an Access policy. */ export const access$policies$delete$an$access$policy = (apiClient: ApiClient) => (params: Params$access$policies$delete$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59187,7 +59184,7 @@ export const access$policies$delete$an$access$policy = (apiClient * Lists short-lived certificate CAs and their public keys. */ export const access$short$lived$certificate$c$as$list$short$lived$certificate$c$as = (apiClient: ApiClient) => (params: Params$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/ca\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/ca`; const headers = { Accept: "application/json" }; @@ -59202,7 +59199,7 @@ export const access$short$lived$certificate$c$as$list$short$lived$certificate$c$ * Lists Bookmark applications. */ export const access$bookmark$applications$$$deprecated$$list$bookmark$applications = (apiClient: ApiClient) => (params: Params$access$bookmark$applications$$$deprecated$$list$bookmark$applications, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks`; const headers = { Accept: "application/json" }; @@ -59217,7 +59214,7 @@ export const access$bookmark$applications$$$deprecated$$list$bookmark$applicatio * Fetches a single Bookmark application. */ export const access$bookmark$applications$$$deprecated$$get$a$bookmark$application = (apiClient: ApiClient) => (params: Params$access$bookmark$applications$$$deprecated$$get$a$bookmark$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59232,7 +59229,7 @@ export const access$bookmark$applications$$$deprecated$$get$a$bookmark$applicati * Updates a configured Bookmark application. */ export const access$bookmark$applications$$$deprecated$$update$a$bookmark$application = (apiClient: ApiClient) => (params: Params$access$bookmark$applications$$$deprecated$$update$a$bookmark$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59247,7 +59244,7 @@ export const access$bookmark$applications$$$deprecated$$update$a$bookmark$applic * Create a new Bookmark application. */ export const access$bookmark$applications$$$deprecated$$create$a$bookmark$application = (apiClient: ApiClient) => (params: Params$access$bookmark$applications$$$deprecated$$create$a$bookmark$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59262,7 +59259,7 @@ export const access$bookmark$applications$$$deprecated$$create$a$bookmark$applic * Deletes a Bookmark application. */ export const access$bookmark$applications$$$deprecated$$delete$a$bookmark$application = (apiClient: ApiClient) => (params: Params$access$bookmark$applications$$$deprecated$$delete$a$bookmark$application, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59277,7 +59274,7 @@ export const access$bookmark$applications$$$deprecated$$delete$a$bookmark$applic * Lists all mTLS root certificates. */ export const access$mtls$authentication$list$mtls$certificates = (apiClient: ApiClient) => (params: Params$access$mtls$authentication$list$mtls$certificates, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { Accept: "application/json" }; @@ -59292,7 +59289,7 @@ export const access$mtls$authentication$list$mtls$certificates = * Adds a new mTLS root certificate to Access. */ export const access$mtls$authentication$add$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$access$mtls$authentication$add$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59309,7 +59306,7 @@ export const access$mtls$authentication$add$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$access$mtls$authentication$get$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59324,7 +59321,7 @@ export const access$mtls$authentication$get$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$access$mtls$authentication$update$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59341,7 +59338,7 @@ export const access$mtls$authentication$update$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$access$mtls$authentication$delete$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59356,7 +59353,7 @@ export const access$mtls$authentication$delete$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$access$mtls$authentication$list$mtls$certificates$hostname$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { Accept: "application/json" }; @@ -59371,7 +59368,7 @@ export const access$mtls$authentication$list$mtls$certificates$hostname$settings * Updates an mTLS certificate's hostname settings. */ export const access$mtls$authentication$update$an$mtls$certificate$settings = (apiClient: ApiClient) => (params: Params$access$mtls$authentication$update$an$mtls$certificate$settings, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59388,7 +59385,7 @@ export const access$mtls$authentication$update$an$mtls$certificate$settings = (apiClient: ApiClient) => (params: Params$access$custom$pages$list$custom$pages, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages`; const headers = { Accept: "application/json" }; @@ -59403,7 +59400,7 @@ export const access$custom$pages$list$custom$pages = (apiClient: * Create a custom page */ export const access$custom$pages$create$a$custom$page = (apiClient: ApiClient) => (params: Params$access$custom$pages$create$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59420,7 +59417,7 @@ export const access$custom$pages$create$a$custom$page = (apiClien * Fetches a custom page and also returns its HTML. */ export const access$custom$pages$get$a$custom$page = (apiClient: ApiClient) => (params: Params$access$custom$pages$get$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59435,7 +59432,7 @@ export const access$custom$pages$get$a$custom$page = (apiClient: * Update a custom page */ export const access$custom$pages$update$a$custom$page = (apiClient: ApiClient) => (params: Params$access$custom$pages$update$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59452,7 +59449,7 @@ export const access$custom$pages$update$a$custom$page = (apiClien * Delete a custom page */ export const access$custom$pages$delete$a$custom$page = (apiClient: ApiClient) => (params: Params$access$custom$pages$delete$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59467,7 +59464,7 @@ export const access$custom$pages$delete$a$custom$page = (apiClien * Lists all Access groups. */ export const access$groups$list$access$groups = (apiClient: ApiClient) => (params: Params$access$groups$list$access$groups, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { Accept: "application/json" }; @@ -59482,7 +59479,7 @@ export const access$groups$list$access$groups = (apiClient: ApiCl * Creates a new Access group. */ export const access$groups$create$an$access$group = (apiClient: ApiClient) => (params: Params$access$groups$create$an$access$group, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59499,7 +59496,7 @@ export const access$groups$create$an$access$group = (apiClient: A * Fetches a single Access group. */ export const access$groups$get$an$access$group = (apiClient: ApiClient) => (params: Params$access$groups$get$an$access$group, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59514,7 +59511,7 @@ export const access$groups$get$an$access$group = (apiClient: ApiC * Updates a configured Access group. */ export const access$groups$update$an$access$group = (apiClient: ApiClient) => (params: Params$access$groups$update$an$access$group, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59531,7 +59528,7 @@ export const access$groups$update$an$access$group = (apiClient: A * Deletes an Access group. */ export const access$groups$delete$an$access$group = (apiClient: ApiClient) => (params: Params$access$groups$delete$an$access$group, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59546,7 +59543,7 @@ export const access$groups$delete$an$access$group = (apiClient: A * Lists all configured identity providers. */ export const access$identity$providers$list$access$identity$providers = (apiClient: ApiClient) => (params: Params$access$identity$providers$list$access$identity$providers, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { Accept: "application/json" }; @@ -59561,7 +59558,7 @@ export const access$identity$providers$list$access$identity$providers = (apiClient: ApiClient) => (params: Params$access$identity$providers$add$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59578,7 +59575,7 @@ export const access$identity$providers$add$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$access$identity$providers$get$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59593,7 +59590,7 @@ export const access$identity$providers$get$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$access$identity$providers$update$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59610,7 +59607,7 @@ export const access$identity$providers$update$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$access$identity$providers$delete$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59625,7 +59622,7 @@ export const access$identity$providers$delete$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$access$key$configuration$get$the$access$key$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys`; const headers = { Accept: "application/json" }; @@ -59640,7 +59637,7 @@ export const access$key$configuration$get$the$access$key$configuration = (apiClient: ApiClient) => (params: Params$access$key$configuration$update$the$access$key$configuration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59657,7 +59654,7 @@ export const access$key$configuration$update$the$access$key$configuration = (apiClient: ApiClient) => (params: Params$access$key$configuration$rotate$access$keys, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys/rotate\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys/rotate`; const headers = { Accept: "application/json" }; @@ -59672,7 +59669,7 @@ export const access$key$configuration$rotate$access$keys = (apiCl * Gets a list of Access authentication audit logs for an account. */ export const access$authentication$logs$get$access$authentication$logs = (apiClient: ApiClient) => (params: Params$access$authentication$logs$get$access$authentication$logs, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/logs/access_requests\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/logs/access_requests`; const headers = { Accept: "application/json" }; @@ -59687,7 +59684,7 @@ export const access$authentication$logs$get$access$authentication$logs = (apiClient: ApiClient) => (params: Params$zero$trust$organization$get$your$zero$trust$organization, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { Accept: "application/json" }; @@ -59702,7 +59699,7 @@ export const zero$trust$organization$get$your$zero$trust$organization = (apiClient: ApiClient) => (params: Params$zero$trust$organization$update$your$zero$trust$organization, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59719,7 +59716,7 @@ export const zero$trust$organization$update$your$zero$trust$organization = (apiClient: ApiClient) => (params: Params$zero$trust$organization$create$your$zero$trust$organization, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59736,7 +59733,7 @@ export const zero$trust$organization$create$your$zero$trust$organization = (apiClient: ApiClient) => (params: Params$zero$trust$organization$revoke$all$access$tokens$for$a$user, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59750,10 +59747,10 @@ export const zero$trust$organization$revoke$all$access$tokens$for$a$user = (apiClient: ApiClient) => (params: Params$zero$trust$seats$update$a$user$seat, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/seats\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/seats`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59770,7 +59767,7 @@ export const zero$trust$seats$update$a$user$seat = (apiClient: Ap * Lists all service tokens. */ export const access$service$tokens$list$service$tokens = (apiClient: ApiClient) => (params: Params$access$service$tokens$list$service$tokens, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { Accept: "application/json" }; @@ -59785,7 +59782,7 @@ export const access$service$tokens$list$service$tokens = (apiClie * Generates a new service token. **Note:** This is the only time you can get the Client Secret. If you lose the Client Secret, you will have to rotate the Client Secret or create a new service token. */ export const access$service$tokens$create$a$service$token = (apiClient: ApiClient) => (params: Params$access$service$tokens$create$a$service$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59802,7 +59799,7 @@ export const access$service$tokens$create$a$service$token = (apiC * Updates a configured service token. */ export const access$service$tokens$update$a$service$token = (apiClient: ApiClient) => (params: Params$access$service$tokens$update$a$service$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59819,7 +59816,7 @@ export const access$service$tokens$update$a$service$token = (apiC * Deletes a service token. */ export const access$service$tokens$delete$a$service$token = (apiClient: ApiClient) => (params: Params$access$service$tokens$delete$a$service$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59834,7 +59831,7 @@ export const access$service$tokens$delete$a$service$token = (apiC * Refreshes the expiration of a service token. */ export const access$service$tokens$refresh$a$service$token = (apiClient: ApiClient) => (params: Params$access$service$tokens$refresh$a$service$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}/refresh\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}/refresh`; const headers = { Accept: "application/json" }; @@ -59849,7 +59846,7 @@ export const access$service$tokens$refresh$a$service$token = (api * Generates a new Client Secret for a service token and revokes the old one. */ export const access$service$tokens$rotate$a$service$token = (apiClient: ApiClient) => (params: Params$access$service$tokens$rotate$a$service$token, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}/rotate\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}/rotate`; const headers = { Accept: "application/json" }; @@ -59864,7 +59861,7 @@ export const access$service$tokens$rotate$a$service$token = (apiC * List tags */ export const access$tags$list$tags = (apiClient: ApiClient) => (params: Params$access$tags$list$tags, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags`; const headers = { Accept: "application/json" }; @@ -59879,7 +59876,7 @@ export const access$tags$list$tags = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$access$tags$create$tag, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59896,7 +59893,7 @@ export const access$tags$create$tag = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$access$tags$get$a$tag, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -59911,7 +59908,7 @@ export const access$tags$get$a$tag = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$access$tags$update$a$tag, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59928,7 +59925,7 @@ export const access$tags$update$a$tag = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$access$tags$delete$a$tag, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -59943,7 +59940,7 @@ export const access$tags$delete$a$tag = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zero$trust$users$get$users, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users`; const headers = { Accept: "application/json" }; @@ -59958,7 +59955,7 @@ export const zero$trust$users$get$users = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zero$trust$users$get$active$sessions, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/active_sessions\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/active_sessions`; const headers = { Accept: "application/json" }; @@ -59973,7 +59970,7 @@ export const zero$trust$users$get$active$sessions = (apiClient: A * Get an active session for a single user. */ export const zero$trust$users$get$active$session = (apiClient: ApiClient) => (params: Params$zero$trust$users$get$active$session, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/active_sessions/\${encodeURIComponent(params.parameter.nonce)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/active_sessions/${encodeURIComponent(params.parameter.nonce)}`; const headers = { Accept: "application/json" }; @@ -59988,7 +59985,7 @@ export const zero$trust$users$get$active$session = (apiClient: Ap * Get all failed login attempts for a single user. */ export const zero$trust$users$get$failed$logins = (apiClient: ApiClient) => (params: Params$zero$trust$users$get$failed$logins, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/failed_logins\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/failed_logins`; const headers = { Accept: "application/json" }; @@ -60003,7 +60000,7 @@ export const zero$trust$users$get$failed$logins = (apiClient: Api * Get last seen identity for a single user. */ export const zero$trust$users$get$last$seen$identity = (apiClient: ApiClient) => (params: Params$zero$trust$users$get$last$seen$identity, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/last_seen_identity\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/last_seen_identity`; const headers = { Accept: "application/json" }; @@ -60018,7 +60015,7 @@ export const zero$trust$users$get$last$seen$identity = (apiClient * Fetches a list of enrolled devices. */ export const devices$list$devices = (apiClient: ApiClient) => (params: Params$devices$list$devices, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices`; const headers = { Accept: "application/json" }; @@ -60033,7 +60030,7 @@ export const devices$list$devices = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$devices$device$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60048,7 +60045,7 @@ export const devices$device$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$devices$list$admin$override$code$for$device, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/\${encodeURIComponent(params.parameter.uuid)}/override_codes\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/${encodeURIComponent(params.parameter.uuid)}/override_codes`; const headers = { Accept: "application/json" }; @@ -60063,7 +60060,7 @@ export const devices$list$admin$override$code$for$device = (apiCl * Fetch all DEX tests. */ export const device$dex$test$details = (apiClient: ApiClient) => (params: Params$device$dex$test$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests`; const headers = { Accept: "application/json" }; @@ -60078,7 +60075,7 @@ export const device$dex$test$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$device$dex$test$create$device$dex$test, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60095,7 +60092,7 @@ export const device$dex$test$create$device$dex$test = (apiClient: * Fetch a single DEX test. */ export const device$dex$test$get$device$dex$test = (apiClient: ApiClient) => (params: Params$device$dex$test$get$device$dex$test, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60110,7 +60107,7 @@ export const device$dex$test$get$device$dex$test = (apiClient: Ap * Update a DEX test. */ export const device$dex$test$update$device$dex$test = (apiClient: ApiClient) => (params: Params$device$dex$test$update$device$dex$test, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60127,7 +60124,7 @@ export const device$dex$test$update$device$dex$test = (apiClient: * Delete a Device DEX test. Returns the remaining device dex tests for the account. */ export const device$dex$test$delete$device$dex$test = (apiClient: ApiClient) => (params: Params$device$dex$test$delete$device$dex$test, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60142,7 +60139,7 @@ export const device$dex$test$delete$device$dex$test = (apiClient: * Fetches a list of managed networks for an account. */ export const device$managed$networks$list$device$managed$networks = (apiClient: ApiClient) => (params: Params$device$managed$networks$list$device$managed$networks, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks`; const headers = { Accept: "application/json" }; @@ -60157,7 +60154,7 @@ export const device$managed$networks$list$device$managed$networks = (apiClient: ApiClient) => (params: Params$device$managed$networks$create$device$managed$network, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60174,7 +60171,7 @@ export const device$managed$networks$create$device$managed$network = (apiClient: ApiClient) => (params: Params$device$managed$networks$device$managed$network$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60189,7 +60186,7 @@ export const device$managed$networks$device$managed$network$details = (apiClient: ApiClient) => (params: Params$device$managed$networks$update$device$managed$network, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60206,7 +60203,7 @@ export const device$managed$networks$update$device$managed$network = (apiClient: ApiClient) => (params: Params$device$managed$networks$delete$device$managed$network, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60221,7 +60218,7 @@ export const device$managed$networks$delete$device$managed$network = (apiClient: ApiClient) => (params: Params$devices$list$device$settings$policies, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policies\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policies`; const headers = { Accept: "application/json" }; @@ -60236,7 +60233,7 @@ export const devices$list$device$settings$policies = (apiClient: * Fetches the default device settings profile for an account. */ export const devices$get$default$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$get$default$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { Accept: "application/json" }; @@ -60251,7 +60248,7 @@ export const devices$get$default$device$settings$policy = (apiCli * Creates a device settings profile to be applied to certain devices matching the criteria. */ export const devices$create$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$create$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60268,7 +60265,7 @@ export const devices$create$device$settings$policy = (apiClient: * Updates the default device settings profile for an account. */ export const devices$update$default$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$update$default$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60285,7 +60282,7 @@ export const devices$update$default$device$settings$policy = (api * Fetches a device settings profile by ID. */ export const devices$get$device$settings$policy$by$id = (apiClient: ApiClient) => (params: Params$devices$get$device$settings$policy$by$id, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60300,7 +60297,7 @@ export const devices$get$device$settings$policy$by$id = (apiClien * Deletes a device settings profile and fetches a list of the remaining profiles for an account. */ export const devices$delete$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$delete$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60315,7 +60312,7 @@ export const devices$delete$device$settings$policy = (apiClient: * Updates a configured device settings profile. */ export const devices$update$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$update$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60332,7 +60329,7 @@ export const devices$update$device$settings$policy = (apiClient: * Fetches the list of routes excluded from the WARP client's tunnel for a specific device settings profile. */ export const devices$get$split$tunnel$exclude$list$for$a$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$get$split$tunnel$exclude$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/exclude\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/exclude`; const headers = { Accept: "application/json" }; @@ -60347,7 +60344,7 @@ export const devices$get$split$tunnel$exclude$list$for$a$device$settings$policy * Sets the list of routes excluded from the WARP client's tunnel for a specific device settings profile. */ export const devices$set$split$tunnel$exclude$list$for$a$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$set$split$tunnel$exclude$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/exclude\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60364,7 +60361,7 @@ export const devices$set$split$tunnel$exclude$list$for$a$device$settings$policy * Fetches the list of domains to bypass Gateway DNS resolution from a specified device settings profile. These domains will use the specified local DNS resolver instead. */ export const devices$get$local$domain$fallback$list$for$a$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$get$local$domain$fallback$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/fallback_domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/fallback_domains`; const headers = { Accept: "application/json" }; @@ -60379,7 +60376,7 @@ export const devices$get$local$domain$fallback$list$for$a$device$settings$policy * Sets the list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. This will only apply to the specified device settings profile. */ export const devices$set$local$domain$fallback$list$for$a$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$set$local$domain$fallback$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/fallback_domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/fallback_domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60396,7 +60393,7 @@ export const devices$set$local$domain$fallback$list$for$a$device$settings$policy * Fetches the list of routes included in the WARP client's tunnel for a specific device settings profile. */ export const devices$get$split$tunnel$include$list$for$a$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$get$split$tunnel$include$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/include\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/include`; const headers = { Accept: "application/json" }; @@ -60411,7 +60408,7 @@ export const devices$get$split$tunnel$include$list$for$a$device$settings$policy * Sets the list of routes included in the WARP client's tunnel for a specific device settings profile. */ export const devices$set$split$tunnel$include$list$for$a$device$settings$policy = (apiClient: ApiClient) => (params: Params$devices$set$split$tunnel$include$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/include\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/include`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60428,7 +60425,7 @@ export const devices$set$split$tunnel$include$list$for$a$device$settings$policy * Fetches the list of routes excluded from the WARP client's tunnel. */ export const devices$get$split$tunnel$exclude$list = (apiClient: ApiClient) => (params: Params$devices$get$split$tunnel$exclude$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude`; const headers = { Accept: "application/json" }; @@ -60443,7 +60440,7 @@ export const devices$get$split$tunnel$exclude$list = (apiClient: * Sets the list of routes excluded from the WARP client's tunnel. */ export const devices$set$split$tunnel$exclude$list = (apiClient: ApiClient) => (params: Params$devices$set$split$tunnel$exclude$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60460,7 +60457,7 @@ export const devices$set$split$tunnel$exclude$list = (apiClient: * Fetches a list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. */ export const devices$get$local$domain$fallback$list = (apiClient: ApiClient) => (params: Params$devices$get$local$domain$fallback$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains`; const headers = { Accept: "application/json" }; @@ -60475,7 +60472,7 @@ export const devices$get$local$domain$fallback$list = (apiClient: * Sets the list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. */ export const devices$set$local$domain$fallback$list = (apiClient: ApiClient) => (params: Params$devices$set$local$domain$fallback$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60492,7 +60489,7 @@ export const devices$set$local$domain$fallback$list = (apiClient: * Fetches the list of routes included in the WARP client's tunnel. */ export const devices$get$split$tunnel$include$list = (apiClient: ApiClient) => (params: Params$devices$get$split$tunnel$include$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/include\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/include`; const headers = { Accept: "application/json" }; @@ -60507,7 +60504,7 @@ export const devices$get$split$tunnel$include$list = (apiClient: * Sets the list of routes included in the WARP client's tunnel. */ export const devices$set$split$tunnel$include$list = (apiClient: ApiClient) => (params: Params$devices$set$split$tunnel$include$list, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/include\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/include`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60524,7 +60521,7 @@ export const devices$set$split$tunnel$include$list = (apiClient: * Fetches device posture rules for a Zero Trust account. */ export const device$posture$rules$list$device$posture$rules = (apiClient: ApiClient) => (params: Params$device$posture$rules$list$device$posture$rules, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture`; const headers = { Accept: "application/json" }; @@ -60539,7 +60536,7 @@ export const device$posture$rules$list$device$posture$rules = (ap * Creates a new device posture rule. */ export const device$posture$rules$create$device$posture$rule = (apiClient: ApiClient) => (params: Params$device$posture$rules$create$device$posture$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60556,7 +60553,7 @@ export const device$posture$rules$create$device$posture$rule = (a * Fetches a single device posture rule. */ export const device$posture$rules$device$posture$rules$details = (apiClient: ApiClient) => (params: Params$device$posture$rules$device$posture$rules$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60571,7 +60568,7 @@ export const device$posture$rules$device$posture$rules$details = * Updates a device posture rule. */ export const device$posture$rules$update$device$posture$rule = (apiClient: ApiClient) => (params: Params$device$posture$rules$update$device$posture$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60588,7 +60585,7 @@ export const device$posture$rules$update$device$posture$rule = (a * Deletes a device posture rule. */ export const device$posture$rules$delete$device$posture$rule = (apiClient: ApiClient) => (params: Params$device$posture$rules$delete$device$posture$rule, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60603,7 +60600,7 @@ export const device$posture$rules$delete$device$posture$rule = (a * Fetches the list of device posture integrations for an account. */ export const device$posture$integrations$list$device$posture$integrations = (apiClient: ApiClient) => (params: Params$device$posture$integrations$list$device$posture$integrations, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration`; const headers = { Accept: "application/json" }; @@ -60618,7 +60615,7 @@ export const device$posture$integrations$list$device$posture$integrations = (apiClient: ApiClient) => (params: Params$device$posture$integrations$create$device$posture$integration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60635,7 +60632,7 @@ export const device$posture$integrations$create$device$posture$integration = (apiClient: ApiClient) => (params: Params$device$posture$integrations$device$posture$integration$details, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60650,7 +60647,7 @@ export const device$posture$integrations$device$posture$integration$details = (apiClient: ApiClient) => (params: Params$device$posture$integrations$delete$device$posture$integration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60665,7 +60662,7 @@ export const device$posture$integrations$delete$device$posture$integration = (apiClient: ApiClient) => (params: Params$device$posture$integrations$update$device$posture$integration, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60682,7 +60679,7 @@ export const device$posture$integrations$update$device$posture$integration = (apiClient: ApiClient) => (params: Params$devices$revoke$devices, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/revoke\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/revoke`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60699,7 +60696,7 @@ export const devices$revoke$devices = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zero$trust$accounts$get$device$settings$for$zero$trust$account, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/settings`; const headers = { Accept: "application/json" }; @@ -60714,7 +60711,7 @@ export const zero$trust$accounts$get$device$settings$for$zero$trust$account = (apiClient: ApiClient) => (params: Params$zero$trust$accounts$update$device$settings$for$the$zero$trust$account, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/settings\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60731,7 +60728,7 @@ export const zero$trust$accounts$update$device$settings$for$the$zero$trust$accou * Unrevokes a list of devices. */ export const devices$unrevoke$devices = (apiClient: ApiClient) => (params: Params$devices$unrevoke$devices, option?: RequestOption): Promise => { - const uri = \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/unrevoke\`; + const uri = `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/unrevoke`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60748,7 +60745,7 @@ export const devices$unrevoke$devices = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$origin$ca$list$certificates, option?: RequestOption): Promise => { - const uri = \`/certificates\`; + const uri = `/certificates`; const headers = { Accept: "application/json" }; @@ -60767,7 +60764,7 @@ export const origin$ca$list$certificates = (apiClient: ApiClient< * Create an Origin CA certificate. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ export const origin$ca$create$certificate = (apiClient: ApiClient) => (params: Params$origin$ca$create$certificate, option?: RequestOption): Promise => { - const uri = \`/certificates\`; + const uri = `/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60784,7 +60781,7 @@ export const origin$ca$create$certificate = (apiClient: ApiClient * Get an existing Origin CA certificate by its serial number. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ export const origin$ca$get$certificate = (apiClient: ApiClient) => (params: Params$origin$ca$get$certificate, option?: RequestOption): Promise => { - const uri = \`/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60799,7 +60796,7 @@ export const origin$ca$get$certificate = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$origin$ca$revoke$certificate, option?: RequestOption): Promise => { - const uri = \`/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60814,7 +60811,7 @@ export const origin$ca$revoke$certificate = (apiClient: ApiClient * Get IPs used on the Cloudflare/JD Cloud network, see https://www.cloudflare.com/ips for Cloudflare IPs or https://developers.cloudflare.com/china-network/reference/infrastructure/ for JD Cloud IPs. */ export const cloudflare$i$ps$cloudflare$ip$details = (apiClient: ApiClient) => (params: Params$cloudflare$i$ps$cloudflare$ip$details, option?: RequestOption): Promise => { - const uri = \`/ips\`; + const uri = `/ips`; const headers = { Accept: "application/json" }; @@ -60833,7 +60830,7 @@ export const cloudflare$i$ps$cloudflare$ip$details = (apiClient: * List memberships of accounts the user can access. */ export const user$$s$account$memberships$list$memberships = (apiClient: ApiClient) => (params: Params$user$$s$account$memberships$list$memberships, option?: RequestOption): Promise => { - const uri = \`/memberships\`; + const uri = `/memberships`; const headers = { Accept: "application/json" }; @@ -60858,7 +60855,7 @@ export const user$$s$account$memberships$list$memberships = (apiC * Get a specific membership. */ export const user$$s$account$memberships$membership$details = (apiClient: ApiClient) => (params: Params$user$$s$account$memberships$membership$details, option?: RequestOption): Promise => { - const uri = \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60873,7 +60870,7 @@ export const user$$s$account$memberships$membership$details = (ap * Accept or reject this account invitation. */ export const user$$s$account$memberships$update$membership = (apiClient: ApiClient) => (params: Params$user$$s$account$memberships$update$membership, option?: RequestOption): Promise => { - const uri = \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60890,7 +60887,7 @@ export const user$$s$account$memberships$update$membership = (api * Remove the associated member from an account. */ export const user$$s$account$memberships$delete$membership = (apiClient: ApiClient) => (params: Params$user$$s$account$memberships$delete$membership, option?: RequestOption): Promise => { - const uri = \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60905,7 +60902,7 @@ export const user$$s$account$memberships$delete$membership = (api * Get information about a specific organization that you are a member of. */ export const organizations$$$deprecated$$organization$details = (apiClient: ApiClient) => (params: Params$organizations$$$deprecated$$organization$details, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60920,7 +60917,7 @@ export const organizations$$$deprecated$$organization$details = ( * Update an existing Organization. */ export const organizations$$$deprecated$$edit$organization = (apiClient: ApiClient) => (params: Params$organizations$$$deprecated$$edit$organization, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60937,7 +60934,7 @@ export const organizations$$$deprecated$$edit$organization = (api * Gets a list of audit logs for an organization. Can be filtered by who made the change, on which zone, and the timeframe of the change. */ export const audit$logs$get$organization$audit$logs = (apiClient: ApiClient) => (params: Params$audit$logs$get$organization$audit$logs, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/audit_logs\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/audit_logs`; const headers = { Accept: "application/json" }; @@ -60967,7 +60964,7 @@ export const audit$logs$get$organization$audit$logs = (apiClient: * List all invitations associated with an organization. */ export const organization$invites$list$invitations = (apiClient: ApiClient) => (params: Params$organization$invites$list$invitations, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites`; const headers = { Accept: "application/json" }; @@ -60982,7 +60979,7 @@ export const organization$invites$list$invitations = (apiClient: * Invite a User to become a Member of an Organization. */ export const organization$invites$create$invitation = (apiClient: ApiClient) => (params: Params$organization$invites$create$invitation, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60999,7 +60996,7 @@ export const organization$invites$create$invitation = (apiClient: * Get the details of an invitation. */ export const organization$invites$invitation$details = (apiClient: ApiClient) => (params: Params$organization$invites$invitation$details, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61014,7 +61011,7 @@ export const organization$invites$invitation$details = (apiClient * Cancel an existing invitation. */ export const organization$invites$cancel$invitation = (apiClient: ApiClient) => (params: Params$organization$invites$cancel$invitation, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61029,7 +61026,7 @@ export const organization$invites$cancel$invitation = (apiClient: * Change the Roles of a Pending Invite. */ export const organization$invites$edit$invitation$roles = (apiClient: ApiClient) => (params: Params$organization$invites$edit$invitation$roles, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61046,7 +61043,7 @@ export const organization$invites$edit$invitation$roles = (apiCli * List all members of a organization. */ export const organization$members$list$members = (apiClient: ApiClient) => (params: Params$organization$members$list$members, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members`; const headers = { Accept: "application/json" }; @@ -61061,7 +61058,7 @@ export const organization$members$list$members = (apiClient: ApiC * Get information about a specific member of an organization. */ export const organization$members$member$details = (apiClient: ApiClient) => (params: Params$organization$members$member$details, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61076,7 +61073,7 @@ export const organization$members$member$details = (apiClient: Ap * Remove a member from an organization. */ export const organization$members$remove$member = (apiClient: ApiClient) => (params: Params$organization$members$remove$member, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61091,7 +61088,7 @@ export const organization$members$remove$member = (apiClient: Api * Change the Roles of an Organization's Member. */ export const organization$members$edit$member$roles = (apiClient: ApiClient) => (params: Params$organization$members$edit$member$roles, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61108,7 +61105,7 @@ export const organization$members$edit$member$roles = (apiClient: * Get all available roles for an organization. */ export const organization$roles$list$roles = (apiClient: ApiClient) => (params: Params$organization$roles$list$roles, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/roles\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/roles`; const headers = { Accept: "application/json" }; @@ -61123,7 +61120,7 @@ export const organization$roles$list$roles = (apiClient: ApiClien * Get information about a specific role for an organization. */ export const organization$roles$role$details = (apiClient: ApiClient) => (params: Params$organization$roles$role$details, option?: RequestOption): Promise => { - const uri = \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/roles/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/roles/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61135,7 +61132,7 @@ export const organization$roles$role$details = (apiClient: ApiCli }; /** Get latest Internet outages and anomalies. */ export const radar$get$annotations$outages = (apiClient: ApiClient) => (params: Params$radar$get$annotations$outages, option?: RequestOption): Promise => { - const uri = \`/radar/annotations/outages\`; + const uri = `/radar/annotations/outages`; const headers = { Accept: "application/json" }; @@ -61158,7 +61155,7 @@ export const radar$get$annotations$outages = (apiClient: ApiClien }; /** Get the number of outages for locations. */ export const radar$get$annotations$outages$top = (apiClient: ApiClient) => (params: Params$radar$get$annotations$outages$top, option?: RequestOption): Promise => { - const uri = \`/radar/annotations/outages/locations\`; + const uri = `/radar/annotations/outages/locations`; const headers = { Accept: "application/json" }; @@ -61181,7 +61178,7 @@ export const radar$get$annotations$outages$top = (apiClient: ApiC * Percentage distribution of DNS queries to AS112 by DNSSEC support. */ export const radar$get$dns$as112$timeseries$by$dnssec = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$by$dnssec, option?: RequestOption): Promise => { - const uri = \`/radar/as112/summary/dnssec\`; + const uri = `/radar/as112/summary/dnssec`; const headers = { Accept: "application/json" }; @@ -61206,7 +61203,7 @@ export const radar$get$dns$as112$timeseries$by$dnssec = (apiClien * Percentage distribution of DNS queries, to AS112, by EDNS support. */ export const radar$get$dns$as112$timeseries$by$edns = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$by$edns, option?: RequestOption): Promise => { - const uri = \`/radar/as112/summary/edns\`; + const uri = `/radar/as112/summary/edns`; const headers = { Accept: "application/json" }; @@ -61231,7 +61228,7 @@ export const radar$get$dns$as112$timeseries$by$edns = (apiClient: * Percentage distribution of DNS queries to AS112 per IP Version. */ export const radar$get$dns$as112$timeseries$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/as112/summary/ip_version\`; + const uri = `/radar/as112/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -61256,7 +61253,7 @@ export const radar$get$dns$as112$timeseries$by$ip$version = (apiC * Percentage distribution of DNS queries to AS112 per protocol. */ export const radar$get$dns$as112$timeseries$by$protocol = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$by$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/as112/summary/protocol\`; + const uri = `/radar/as112/summary/protocol`; const headers = { Accept: "application/json" }; @@ -61281,7 +61278,7 @@ export const radar$get$dns$as112$timeseries$by$protocol = (apiCli * Percentage distribution of DNS queries to AS112 by Query Type. */ export const radar$get$dns$as112$timeseries$by$query$type = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$by$query$type, option?: RequestOption): Promise => { - const uri = \`/radar/as112/summary/query_type\`; + const uri = `/radar/as112/summary/query_type`; const headers = { Accept: "application/json" }; @@ -61306,7 +61303,7 @@ export const radar$get$dns$as112$timeseries$by$query$type = (apiC * Percentage distribution of AS112 dns requests classified per Response Codes. */ export const radar$get$dns$as112$timeseries$by$response$codes = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$by$response$codes, option?: RequestOption): Promise => { - const uri = \`/radar/as112/summary/response_codes\`; + const uri = `/radar/as112/summary/response_codes`; const headers = { Accept: "application/json" }; @@ -61331,7 +61328,7 @@ export const radar$get$dns$as112$timeseries$by$response$codes = ( * Get AS112 queries change over time. */ export const radar$get$dns$as112$timeseries = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries, option?: RequestOption): Promise => { - const uri = \`/radar/as112/timeseries\`; + const uri = `/radar/as112/timeseries`; const headers = { Accept: "application/json" }; @@ -61357,7 +61354,7 @@ export const radar$get$dns$as112$timeseries = (apiClient: ApiClie * Percentage distribution of DNS AS112 queries by DNSSEC support over time. */ export const radar$get$dns$as112$timeseries$group$by$dnssec = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$group$by$dnssec, option?: RequestOption): Promise => { - const uri = \`/radar/as112/timeseries_groups/dnssec\`; + const uri = `/radar/as112/timeseries_groups/dnssec`; const headers = { Accept: "application/json" }; @@ -61383,7 +61380,7 @@ export const radar$get$dns$as112$timeseries$group$by$dnssec = (ap * Percentage distribution of AS112 DNS queries by EDNS support over time. */ export const radar$get$dns$as112$timeseries$group$by$edns = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$group$by$edns, option?: RequestOption): Promise => { - const uri = \`/radar/as112/timeseries_groups/edns\`; + const uri = `/radar/as112/timeseries_groups/edns`; const headers = { Accept: "application/json" }; @@ -61409,7 +61406,7 @@ export const radar$get$dns$as112$timeseries$group$by$edns = (apiC * Percentage distribution of AS112 DNS queries by IP Version over time. */ export const radar$get$dns$as112$timeseries$group$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/as112/timeseries_groups/ip_version\`; + const uri = `/radar/as112/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -61435,7 +61432,7 @@ export const radar$get$dns$as112$timeseries$group$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$group$by$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/as112/timeseries_groups/protocol\`; + const uri = `/radar/as112/timeseries_groups/protocol`; const headers = { Accept: "application/json" }; @@ -61461,7 +61458,7 @@ export const radar$get$dns$as112$timeseries$group$by$protocol = ( * Percentage distribution of AS112 DNS queries by Query Type over time. */ export const radar$get$dns$as112$timeseries$group$by$query$type = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$group$by$query$type, option?: RequestOption): Promise => { - const uri = \`/radar/as112/timeseries_groups/query_type\`; + const uri = `/radar/as112/timeseries_groups/query_type`; const headers = { Accept: "application/json" }; @@ -61487,7 +61484,7 @@ export const radar$get$dns$as112$timeseries$group$by$query$type = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$timeseries$group$by$response$codes, option?: RequestOption): Promise => { - const uri = \`/radar/as112/timeseries_groups/response_codes\`; + const uri = `/radar/as112/timeseries_groups/response_codes`; const headers = { Accept: "application/json" }; @@ -61513,7 +61510,7 @@ export const radar$get$dns$as112$timeseries$group$by$response$codes = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$top$locations, option?: RequestOption): Promise => { - const uri = \`/radar/as112/top/locations\`; + const uri = `/radar/as112/top/locations`; const headers = { Accept: "application/json" }; @@ -61539,7 +61536,7 @@ export const radar$get$dns$as112$top$locations = (apiClient: ApiC * Get the top locations by DNS queries DNSSEC support to AS112. */ export const radar$get$dns$as112$top$locations$by$dnssec = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$top$locations$by$dnssec, option?: RequestOption): Promise => { - const uri = \`/radar/as112/top/locations/dnssec/\${encodeURIComponent(params.parameter.dnssec)}\`; + const uri = `/radar/as112/top/locations/dnssec/${encodeURIComponent(params.parameter.dnssec)}`; const headers = { Accept: "application/json" }; @@ -61565,7 +61562,7 @@ export const radar$get$dns$as112$top$locations$by$dnssec = (apiCl * Get the top locations, by DNS queries EDNS support to AS112. */ export const radar$get$dns$as112$top$locations$by$edns = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$top$locations$by$edns, option?: RequestOption): Promise => { - const uri = \`/radar/as112/top/locations/edns/\${encodeURIComponent(params.parameter.edns)}\`; + const uri = `/radar/as112/top/locations/edns/${encodeURIComponent(params.parameter.edns)}`; const headers = { Accept: "application/json" }; @@ -61591,7 +61588,7 @@ export const radar$get$dns$as112$top$locations$by$edns = (apiClie * Get the top locations by DNS queries IP version to AS112. */ export const radar$get$dns$as112$top$locations$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$dns$as112$top$locations$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/as112/top/locations/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const uri = `/radar/as112/top/locations/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -61617,7 +61614,7 @@ export const radar$get$dns$as112$top$locations$by$ip$version = (a * Percentage distribution of network protocols in layer 3/4 attacks over a given time period. */ export const radar$get$attacks$layer3$summary = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$summary, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/summary\`; + const uri = `/radar/attacks/layer3/summary`; const headers = { Accept: "application/json" }; @@ -61642,7 +61639,7 @@ export const radar$get$attacks$layer3$summary = (apiClient: ApiCl * Percentage distribution of attacks by bitrate. */ export const radar$get$attacks$layer3$summary$by$bitrate = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$summary$by$bitrate, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/summary/bitrate\`; + const uri = `/radar/attacks/layer3/summary/bitrate`; const headers = { Accept: "application/json" }; @@ -61669,7 +61666,7 @@ export const radar$get$attacks$layer3$summary$by$bitrate = (apiCl * Percentage distribution of attacks by duration. */ export const radar$get$attacks$layer3$summary$by$duration = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$summary$by$duration, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/summary/duration\`; + const uri = `/radar/attacks/layer3/summary/duration`; const headers = { Accept: "application/json" }; @@ -61696,7 +61693,7 @@ export const radar$get$attacks$layer3$summary$by$duration = (apiC * Percentage distribution of attacks by ip version used. */ export const radar$get$attacks$layer3$summary$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$summary$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/summary/ip_version\`; + const uri = `/radar/attacks/layer3/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -61722,7 +61719,7 @@ export const radar$get$attacks$layer3$summary$by$ip$version = (ap * Percentage distribution of attacks by protocol used. */ export const radar$get$attacks$layer3$summary$by$protocol = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$summary$by$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/summary/protocol\`; + const uri = `/radar/attacks/layer3/summary/protocol`; const headers = { Accept: "application/json" }; @@ -61748,7 +61745,7 @@ export const radar$get$attacks$layer3$summary$by$protocol = (apiC * Percentage distribution of attacks by vector. */ export const radar$get$attacks$layer3$summary$by$vector = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$summary$by$vector, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/summary/vector\`; + const uri = `/radar/attacks/layer3/summary/vector`; const headers = { Accept: "application/json" }; @@ -61775,7 +61772,7 @@ export const radar$get$attacks$layer3$summary$by$vector = (apiCli * Get attacks change over time by bytes. */ export const radar$get$attacks$layer3$timeseries$by$bytes = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$by$bytes, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries\`; + const uri = `/radar/attacks/layer3/timeseries`; const headers = { Accept: "application/json" }; @@ -61806,7 +61803,7 @@ export const radar$get$attacks$layer3$timeseries$by$bytes = (apiC * Get a timeseries of the percentage distribution of network protocols in Layer 3/4 attacks. */ export const radar$get$attacks$layer3$timeseries$groups = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$groups, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups\`; + const uri = `/radar/attacks/layer3/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -61832,7 +61829,7 @@ export const radar$get$attacks$layer3$timeseries$groups = (apiCli * Percentage distribution of attacks by bitrate over time. */ export const radar$get$attacks$layer3$timeseries$group$by$bitrate = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$group$by$bitrate, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups/bitrate\`; + const uri = `/radar/attacks/layer3/timeseries_groups/bitrate`; const headers = { Accept: "application/json" }; @@ -61861,7 +61858,7 @@ export const radar$get$attacks$layer3$timeseries$group$by$bitrate = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$group$by$duration, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups/duration\`; + const uri = `/radar/attacks/layer3/timeseries_groups/duration`; const headers = { Accept: "application/json" }; @@ -61890,7 +61887,7 @@ export const radar$get$attacks$layer3$timeseries$group$by$duration = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$group$by$industry, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups/industry\`; + const uri = `/radar/attacks/layer3/timeseries_groups/industry`; const headers = { Accept: "application/json" }; @@ -61919,7 +61916,7 @@ export const radar$get$attacks$layer3$timeseries$group$by$industry = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups/ip_version\`; + const uri = `/radar/attacks/layer3/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -61947,7 +61944,7 @@ export const radar$get$attacks$layer3$timeseries$group$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$group$by$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups/protocol\`; + const uri = `/radar/attacks/layer3/timeseries_groups/protocol`; const headers = { Accept: "application/json" }; @@ -61975,7 +61972,7 @@ export const radar$get$attacks$layer3$timeseries$group$by$protocol = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$group$by$vector, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups/vector\`; + const uri = `/radar/attacks/layer3/timeseries_groups/vector`; const headers = { Accept: "application/json" }; @@ -62005,7 +62002,7 @@ export const radar$get$attacks$layer3$timeseries$group$by$vector = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$timeseries$group$by$vertical, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/timeseries_groups/vertical\`; + const uri = `/radar/attacks/layer3/timeseries_groups/vertical`; const headers = { Accept: "application/json" }; @@ -62034,7 +62031,7 @@ export const radar$get$attacks$layer3$timeseries$group$by$vertical = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$top$attacks, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/top/attacks\`; + const uri = `/radar/attacks/layer3/top/attacks`; const headers = { Accept: "application/json" }; @@ -62063,7 +62060,7 @@ export const radar$get$attacks$layer3$top$attacks = (apiClient: A * Get the Industry of attacks. */ export const radar$get$attacks$layer3$top$industries = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$top$industries, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/top/industry\`; + const uri = `/radar/attacks/layer3/top/industry`; const headers = { Accept: "application/json" }; @@ -62090,7 +62087,7 @@ export const radar$get$attacks$layer3$top$industries = (apiClient * Get the origin locations of attacks. */ export const radar$get$attacks$layer3$top$origin$locations = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$top$origin$locations, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/top/locations/origin\`; + const uri = `/radar/attacks/layer3/top/locations/origin`; const headers = { Accept: "application/json" }; @@ -62117,7 +62114,7 @@ export const radar$get$attacks$layer3$top$origin$locations = (api * Get the target locations of attacks. */ export const radar$get$attacks$layer3$top$target$locations = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$top$target$locations, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/top/locations/target\`; + const uri = `/radar/attacks/layer3/top/locations/target`; const headers = { Accept: "application/json" }; @@ -62144,7 +62141,7 @@ export const radar$get$attacks$layer3$top$target$locations = (api * Get the Verticals of attacks. */ export const radar$get$attacks$layer3$top$verticals = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer3$top$verticals, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer3/top/vertical\`; + const uri = `/radar/attacks/layer3/top/vertical`; const headers = { Accept: "application/json" }; @@ -62171,7 +62168,7 @@ export const radar$get$attacks$layer3$top$verticals = (apiClient: * Percentage distribution of mitigation techniques in Layer 7 attacks. */ export const radar$get$attacks$layer7$summary = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$summary, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/summary\`; + const uri = `/radar/attacks/layer7/summary`; const headers = { Accept: "application/json" }; @@ -62196,7 +62193,7 @@ export const radar$get$attacks$layer7$summary = (apiClient: ApiCl * Percentage distribution of attacks by http method used. */ export const radar$get$attacks$layer7$summary$by$http$method = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$summary$by$http$method, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/summary/http_method\`; + const uri = `/radar/attacks/layer7/summary/http_method`; const headers = { Accept: "application/json" }; @@ -62224,7 +62221,7 @@ export const radar$get$attacks$layer7$summary$by$http$method = (a * Percentage distribution of attacks by http version used. */ export const radar$get$attacks$layer7$summary$by$http$version = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$summary$by$http$version, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/summary/http_version\`; + const uri = `/radar/attacks/layer7/summary/http_version`; const headers = { Accept: "application/json" }; @@ -62252,7 +62249,7 @@ export const radar$get$attacks$layer7$summary$by$http$version = ( * Percentage distribution of attacks by ip version used. */ export const radar$get$attacks$layer7$summary$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$summary$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/summary/ip_version\`; + const uri = `/radar/attacks/layer7/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -62280,7 +62277,7 @@ export const radar$get$attacks$layer7$summary$by$ip$version = (ap * Percentage distribution of attacks by managed rules used. */ export const radar$get$attacks$layer7$summary$by$managed$rules = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$summary$by$managed$rules, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/summary/managed_rules\`; + const uri = `/radar/attacks/layer7/summary/managed_rules`; const headers = { Accept: "application/json" }; @@ -62309,7 +62306,7 @@ export const radar$get$attacks$layer7$summary$by$managed$rules = * Percentage distribution of attacks by mitigation product used. */ export const radar$get$attacks$layer7$summary$by$mitigation$product = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$summary$by$mitigation$product, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/summary/mitigation_product\`; + const uri = `/radar/attacks/layer7/summary/mitigation_product`; const headers = { Accept: "application/json" }; @@ -62337,7 +62334,7 @@ export const radar$get$attacks$layer7$summary$by$mitigation$product = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries\`; + const uri = `/radar/attacks/layer7/timeseries`; const headers = { Accept: "application/json" }; @@ -62365,7 +62362,7 @@ export const radar$get$attacks$layer7$timeseries = (apiClient: Ap * Get a time series of the percentual distribution of mitigation techniques, over time. */ export const radar$get$attacks$layer7$timeseries$group = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups\`; + const uri = `/radar/attacks/layer7/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -62391,7 +62388,7 @@ export const radar$get$attacks$layer7$timeseries$group = (apiClie * Percentage distribution of attacks by http method used over time. */ export const radar$get$attacks$layer7$timeseries$group$by$http$method = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group$by$http$method, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups/http_method\`; + const uri = `/radar/attacks/layer7/timeseries_groups/http_method`; const headers = { Accept: "application/json" }; @@ -62421,7 +62418,7 @@ export const radar$get$attacks$layer7$timeseries$group$by$http$method = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group$by$http$version, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups/http_version\`; + const uri = `/radar/attacks/layer7/timeseries_groups/http_version`; const headers = { Accept: "application/json" }; @@ -62451,7 +62448,7 @@ export const radar$get$attacks$layer7$timeseries$group$by$http$version = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group$by$industry, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups/industry\`; + const uri = `/radar/attacks/layer7/timeseries_groups/industry`; const headers = { Accept: "application/json" }; @@ -62483,7 +62480,7 @@ export const radar$get$attacks$layer7$timeseries$group$by$industry = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups/ip_version\`; + const uri = `/radar/attacks/layer7/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -62513,7 +62510,7 @@ export const radar$get$attacks$layer7$timeseries$group$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group$by$managed$rules, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups/managed_rules\`; + const uri = `/radar/attacks/layer7/timeseries_groups/managed_rules`; const headers = { Accept: "application/json" }; @@ -62544,7 +62541,7 @@ export const radar$get$attacks$layer7$timeseries$group$by$managed$rules = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group$by$mitigation$product, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups/mitigation_product\`; + const uri = `/radar/attacks/layer7/timeseries_groups/mitigation_product`; const headers = { Accept: "application/json" }; @@ -62574,7 +62571,7 @@ export const radar$get$attacks$layer7$timeseries$group$by$mitigation$product = < * Percentage distribution of attacks by vertical used over time. */ export const radar$get$attacks$layer7$timeseries$group$by$vertical = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$timeseries$group$by$vertical, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/timeseries_groups/vertical\`; + const uri = `/radar/attacks/layer7/timeseries_groups/vertical`; const headers = { Accept: "application/json" }; @@ -62606,7 +62603,7 @@ export const radar$get$attacks$layer7$timeseries$group$by$vertical = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$top$origin$as, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/top/ases/origin\`; + const uri = `/radar/attacks/layer7/top/ases/origin`; const headers = { Accept: "application/json" }; @@ -62631,7 +62628,7 @@ export const radar$get$attacks$layer7$top$origin$as = (apiClient: * Get the top attacks from origin to target location. Values are a percentage out of the total layer 7 attacks (with billing country). The attack magnitude can be defined by the number of mitigated requests or by the number of zones affected. You can optionally limit the number of attacks per origin/target location (useful if all the top attacks are from or to the same location). */ export const radar$get$attacks$layer7$top$attacks = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$top$attacks, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/top/attacks\`; + const uri = `/radar/attacks/layer7/top/attacks`; const headers = { Accept: "application/json" }; @@ -62660,7 +62657,7 @@ export const radar$get$attacks$layer7$top$attacks = (apiClient: A * Get the Industry of attacks. */ export const radar$get$attacks$layer7$top$industries = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$top$industries, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/top/industry\`; + const uri = `/radar/attacks/layer7/top/industry`; const headers = { Accept: "application/json" }; @@ -62686,7 +62683,7 @@ export const radar$get$attacks$layer7$top$industries = (apiClient * Get the top origin locations of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The origin location is determined by the client IP. */ export const radar$get$attacks$layer7$top$origin$location = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$top$origin$location, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/top/locations/origin\`; + const uri = `/radar/attacks/layer7/top/locations/origin`; const headers = { Accept: "application/json" }; @@ -62711,7 +62708,7 @@ export const radar$get$attacks$layer7$top$origin$location = (apiC * Get the top target locations of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The target location is determined by the attacked zone's billing country, when available. */ export const radar$get$attacks$layer7$top$target$location = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$top$target$location, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/top/locations/target\`; + const uri = `/radar/attacks/layer7/top/locations/target`; const headers = { Accept: "application/json" }; @@ -62735,7 +62732,7 @@ export const radar$get$attacks$layer7$top$target$location = (apiC * Get the Verticals of attacks. */ export const radar$get$attacks$layer7$top$verticals = (apiClient: ApiClient) => (params: Params$radar$get$attacks$layer7$top$verticals, option?: RequestOption): Promise => { - const uri = \`/radar/attacks/layer7/top/vertical\`; + const uri = `/radar/attacks/layer7/top/vertical`; const headers = { Accept: "application/json" }; @@ -62761,7 +62758,7 @@ export const radar$get$attacks$layer7$top$verticals = (apiClient: * Get the BGP hijack events. (Beta) */ export const radar$get$bgp$hijacks$events = (apiClient: ApiClient) => (params: Params$radar$get$bgp$hijacks$events, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/hijacks/events\`; + const uri = `/radar/bgp/hijacks/events`; const headers = { Accept: "application/json" }; @@ -62795,7 +62792,7 @@ export const radar$get$bgp$hijacks$events = (apiClient: ApiClient * Get the BGP route leak events (Beta). */ export const radar$get$bgp$route$leak$events = (apiClient: ApiClient) => (params: Params$radar$get$bgp$route$leak$events, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/leaks/events\`; + const uri = `/radar/bgp/leaks/events`; const headers = { Accept: "application/json" }; @@ -62825,7 +62822,7 @@ export const radar$get$bgp$route$leak$events = (apiClient: ApiCli * List all Multi-origin AS (MOAS) prefixes on the global routing tables. */ export const radar$get$bgp$pfx2as$moas = (apiClient: ApiClient) => (params: Params$radar$get$bgp$pfx2as$moas, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/routes/moas\`; + const uri = `/radar/bgp/routes/moas`; const headers = { Accept: "application/json" }; @@ -62847,7 +62844,7 @@ export const radar$get$bgp$pfx2as$moas = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$bgp$pfx2as, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/routes/pfx2as\`; + const uri = `/radar/bgp/routes/pfx2as`; const headers = { Accept: "application/json" }; @@ -62869,7 +62866,7 @@ export const radar$get$bgp$pfx2as = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$bgp$routes$stats, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/routes/stats\`; + const uri = `/radar/bgp/routes/stats`; const headers = { Accept: "application/json" }; @@ -62890,7 +62887,7 @@ export const radar$get$bgp$routes$stats = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$bgp$timeseries, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/timeseries\`; + const uri = `/radar/bgp/timeseries`; const headers = { Accept: "application/json" }; @@ -62917,7 +62914,7 @@ export const radar$get$bgp$timeseries = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$bgp$top$ases, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/top/ases\`; + const uri = `/radar/bgp/top/ases`; const headers = { Accept: "application/json" }; @@ -62944,7 +62941,7 @@ export const radar$get$bgp$top$ases = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$bgp$top$asns$by$prefixes, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/top/ases/prefixes\`; + const uri = `/radar/bgp/top/ases/prefixes`; const headers = { Accept: "application/json" }; @@ -62965,7 +62962,7 @@ export const radar$get$bgp$top$asns$by$prefixes = (apiClient: Api * Get the top network prefixes by BGP updates. Values are a percentage out of the total BGP updates. */ export const radar$get$bgp$top$prefixes = (apiClient: ApiClient) => (params: Params$radar$get$bgp$top$prefixes, option?: RequestOption): Promise => { - const uri = \`/radar/bgp/top/prefixes\`; + const uri = `/radar/bgp/top/prefixes`; const headers = { Accept: "application/json" }; @@ -62991,7 +62988,7 @@ export const radar$get$bgp$top$prefixes = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$connection$tampering$summary, option?: RequestOption): Promise => { - const uri = \`/radar/connection_tampering/summary\`; + const uri = `/radar/connection_tampering/summary`; const headers = { Accept: "application/json" }; @@ -63016,7 +63013,7 @@ export const radar$get$connection$tampering$summary = (apiClient: * Distribution of connection tampering types over time. */ export const radar$get$connection$tampering$timeseries$group = (apiClient: ApiClient) => (params: Params$radar$get$connection$tampering$timeseries$group, option?: RequestOption): Promise => { - const uri = \`/radar/connection_tampering/timeseries_groups\`; + const uri = `/radar/connection_tampering/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -63042,7 +63039,7 @@ export const radar$get$connection$tampering$timeseries$group = (a * Get a list of datasets. */ export const radar$get$reports$datasets = (apiClient: ApiClient) => (params: Params$radar$get$reports$datasets, option?: RequestOption): Promise => { - const uri = \`/radar/datasets\`; + const uri = `/radar/datasets`; const headers = { Accept: "application/json" }; @@ -63064,7 +63061,7 @@ export const radar$get$reports$datasets = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$reports$dataset$download, option?: RequestOption): Promise => { - const uri = \`/radar/datasets/\${encodeURIComponent(params.parameter.alias)}\`; + const uri = `/radar/datasets/${encodeURIComponent(params.parameter.alias)}`; const headers = { Accept: "text/csv" }; @@ -63083,7 +63080,7 @@ export const radar$get$reports$dataset$download = (apiClient: Api * Get a url to download a single dataset. */ export const radar$post$reports$dataset$download$url = (apiClient: ApiClient) => (params: Params$radar$post$reports$dataset$download$url, option?: RequestOption): Promise => { - const uri = \`/radar/datasets/download\`; + const uri = `/radar/datasets/download`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -63104,7 +63101,7 @@ export const radar$post$reports$dataset$download$url = (apiClient * Get top autonomous systems by DNS queries made to Cloudflare's public DNS resolver. */ export const radar$get$dns$top$ases = (apiClient: ApiClient) => (params: Params$radar$get$dns$top$ases, option?: RequestOption): Promise => { - const uri = \`/radar/dns/top/ases\`; + const uri = `/radar/dns/top/ases`; const headers = { Accept: "application/json" }; @@ -63131,7 +63128,7 @@ export const radar$get$dns$top$ases = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$dns$top$locations, option?: RequestOption): Promise => { - const uri = \`/radar/dns/top/locations\`; + const uri = `/radar/dns/top/locations`; const headers = { Accept: "application/json" }; @@ -63158,7 +63155,7 @@ export const radar$get$dns$top$locations = (apiClient: ApiClient< * Percentage distribution of emails classified per ARC validation. */ export const radar$get$email$security$summary$by$arc = (apiClient: ApiClient) => (params: Params$radar$get$email$security$summary$by$arc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/summary/arc\`; + const uri = `/radar/email/security/summary/arc`; const headers = { Accept: "application/json" }; @@ -63186,7 +63183,7 @@ export const radar$get$email$security$summary$by$arc = (apiClient * Percentage distribution of emails classified per DKIM validation. */ export const radar$get$email$security$summary$by$dkim = (apiClient: ApiClient) => (params: Params$radar$get$email$security$summary$by$dkim, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/summary/dkim\`; + const uri = `/radar/email/security/summary/dkim`; const headers = { Accept: "application/json" }; @@ -63214,7 +63211,7 @@ export const radar$get$email$security$summary$by$dkim = (apiClien * Percentage distribution of emails classified per DMARC validation. */ export const radar$get$email$security$summary$by$dmarc = (apiClient: ApiClient) => (params: Params$radar$get$email$security$summary$by$dmarc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/summary/dmarc\`; + const uri = `/radar/email/security/summary/dmarc`; const headers = { Accept: "application/json" }; @@ -63242,7 +63239,7 @@ export const radar$get$email$security$summary$by$dmarc = (apiClie * Percentage distribution of emails classified as MALICIOUS. */ export const radar$get$email$security$summary$by$malicious = (apiClient: ApiClient) => (params: Params$radar$get$email$security$summary$by$malicious, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/summary/malicious\`; + const uri = `/radar/email/security/summary/malicious`; const headers = { Accept: "application/json" }; @@ -63271,7 +63268,7 @@ export const radar$get$email$security$summary$by$malicious = (api * Proportion of emails categorized as either spam or legitimate (non-spam). */ export const radar$get$email$security$summary$by$spam = (apiClient: ApiClient) => (params: Params$radar$get$email$security$summary$by$spam, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/summary/spam\`; + const uri = `/radar/email/security/summary/spam`; const headers = { Accept: "application/json" }; @@ -63300,7 +63297,7 @@ export const radar$get$email$security$summary$by$spam = (apiClien * Percentage distribution of emails classified per SPF validation. */ export const radar$get$email$security$summary$by$spf = (apiClient: ApiClient) => (params: Params$radar$get$email$security$summary$by$spf, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/summary/spf\`; + const uri = `/radar/email/security/summary/spf`; const headers = { Accept: "application/json" }; @@ -63328,7 +63325,7 @@ export const radar$get$email$security$summary$by$spf = (apiClient * Percentage distribution of emails classified in Threat Categories. */ export const radar$get$email$security$summary$by$threat$category = (apiClient: ApiClient) => (params: Params$radar$get$email$security$summary$by$threat$category, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/summary/threat_category\`; + const uri = `/radar/email/security/summary/threat_category`; const headers = { Accept: "application/json" }; @@ -63357,7 +63354,7 @@ export const radar$get$email$security$summary$by$threat$category = (apiClient: ApiClient) => (params: Params$radar$get$email$security$timeseries$group$by$arc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/timeseries_groups/arc\`; + const uri = `/radar/email/security/timeseries_groups/arc`; const headers = { Accept: "application/json" }; @@ -63386,7 +63383,7 @@ export const radar$get$email$security$timeseries$group$by$arc = ( * Percentage distribution of emails classified per DKIM validation over time. */ export const radar$get$email$security$timeseries$group$by$dkim = (apiClient: ApiClient) => (params: Params$radar$get$email$security$timeseries$group$by$dkim, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/timeseries_groups/dkim\`; + const uri = `/radar/email/security/timeseries_groups/dkim`; const headers = { Accept: "application/json" }; @@ -63415,7 +63412,7 @@ export const radar$get$email$security$timeseries$group$by$dkim = * Percentage distribution of emails classified per DMARC validation over time. */ export const radar$get$email$security$timeseries$group$by$dmarc = (apiClient: ApiClient) => (params: Params$radar$get$email$security$timeseries$group$by$dmarc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/timeseries_groups/dmarc\`; + const uri = `/radar/email/security/timeseries_groups/dmarc`; const headers = { Accept: "application/json" }; @@ -63444,7 +63441,7 @@ export const radar$get$email$security$timeseries$group$by$dmarc = (apiClient: ApiClient) => (params: Params$radar$get$email$security$timeseries$group$by$malicious, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/timeseries_groups/malicious\`; + const uri = `/radar/email/security/timeseries_groups/malicious`; const headers = { Accept: "application/json" }; @@ -63474,7 +63471,7 @@ export const radar$get$email$security$timeseries$group$by$malicious = (apiClient: ApiClient) => (params: Params$radar$get$email$security$timeseries$group$by$spam, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/timeseries_groups/spam\`; + const uri = `/radar/email/security/timeseries_groups/spam`; const headers = { Accept: "application/json" }; @@ -63504,7 +63501,7 @@ export const radar$get$email$security$timeseries$group$by$spam = * Percentage distribution of emails classified per SPF validation over time. */ export const radar$get$email$security$timeseries$group$by$spf = (apiClient: ApiClient) => (params: Params$radar$get$email$security$timeseries$group$by$spf, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/timeseries_groups/spf\`; + const uri = `/radar/email/security/timeseries_groups/spf`; const headers = { Accept: "application/json" }; @@ -63533,7 +63530,7 @@ export const radar$get$email$security$timeseries$group$by$spf = ( * Percentage distribution of emails classified in Threat Categories over time. */ export const radar$get$email$security$timeseries$group$by$threat$category = (apiClient: ApiClient) => (params: Params$radar$get$email$security$timeseries$group$by$threat$category, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/timeseries_groups/threat_category\`; + const uri = `/radar/email/security/timeseries_groups/threat_category`; const headers = { Accept: "application/json" }; @@ -63563,7 +63560,7 @@ export const radar$get$email$security$timeseries$group$by$threat$category = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$ases$by$messages, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/ases\`; + const uri = `/radar/email/security/top/ases`; const headers = { Accept: "application/json" }; @@ -63593,7 +63590,7 @@ export const radar$get$email$security$top$ases$by$messages = (api * Get the top autonomous systems (AS) by emails ARC validation. */ export const radar$get$email$security$top$ases$by$arc = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$ases$by$arc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/ases/arc/\${encodeURIComponent(params.parameter.arc)}\`; + const uri = `/radar/email/security/top/ases/arc/${encodeURIComponent(params.parameter.arc)}`; const headers = { Accept: "application/json" }; @@ -63622,7 +63619,7 @@ export const radar$get$email$security$top$ases$by$arc = (apiClien * Get the top autonomous systems (AS), by email DKIM validation. */ export const radar$get$email$security$top$ases$by$dkim = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$ases$by$dkim, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/ases/dkim/\${encodeURIComponent(params.parameter.dkim)}\`; + const uri = `/radar/email/security/top/ases/dkim/${encodeURIComponent(params.parameter.dkim)}`; const headers = { Accept: "application/json" }; @@ -63651,7 +63648,7 @@ export const radar$get$email$security$top$ases$by$dkim = (apiClie * Get the top autonomous systems (AS) by emails DMARC validation. */ export const radar$get$email$security$top$ases$by$dmarc = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$ases$by$dmarc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/ases/dmarc/\${encodeURIComponent(params.parameter.dmarc)}\`; + const uri = `/radar/email/security/top/ases/dmarc/${encodeURIComponent(params.parameter.dmarc)}`; const headers = { Accept: "application/json" }; @@ -63680,7 +63677,7 @@ export const radar$get$email$security$top$ases$by$dmarc = (apiCli * Get the top autonomous systems (AS), by emails classified as Malicious or not. */ export const radar$get$email$security$top$ases$by$malicious = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$ases$by$malicious, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/ases/malicious/\${encodeURIComponent(params.parameter.malicious)}\`; + const uri = `/radar/email/security/top/ases/malicious/${encodeURIComponent(params.parameter.malicious)}`; const headers = { Accept: "application/json" }; @@ -63710,7 +63707,7 @@ export const radar$get$email$security$top$ases$by$malicious = (ap * Get the top autonomous systems (AS), by emails classified, of Spam validations. */ export const radar$get$email$security$top$ases$by$spam = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$ases$by$spam, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/ases/spam/\${encodeURIComponent(params.parameter.spam)}\`; + const uri = `/radar/email/security/top/ases/spam/${encodeURIComponent(params.parameter.spam)}`; const headers = { Accept: "application/json" }; @@ -63740,7 +63737,7 @@ export const radar$get$email$security$top$ases$by$spam = (apiClie * Get the top autonomous systems (AS) by email SPF validation. */ export const radar$get$email$security$top$ases$by$spf = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$ases$by$spf, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/ases/spf/\${encodeURIComponent(params.parameter.spf)}\`; + const uri = `/radar/email/security/top/ases/spf/${encodeURIComponent(params.parameter.spf)}`; const headers = { Accept: "application/json" }; @@ -63769,7 +63766,7 @@ export const radar$get$email$security$top$ases$by$spf = (apiClien * Get the top locations by email messages. Values are a percentage out of the total emails. */ export const radar$get$email$security$top$locations$by$messages = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$locations$by$messages, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/locations\`; + const uri = `/radar/email/security/top/locations`; const headers = { Accept: "application/json" }; @@ -63799,7 +63796,7 @@ export const radar$get$email$security$top$locations$by$messages = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$locations$by$arc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/locations/arc/\${encodeURIComponent(params.parameter.arc)}\`; + const uri = `/radar/email/security/top/locations/arc/${encodeURIComponent(params.parameter.arc)}`; const headers = { Accept: "application/json" }; @@ -63828,7 +63825,7 @@ export const radar$get$email$security$top$locations$by$arc = (api * Get the locations, by email DKIM validation. */ export const radar$get$email$security$top$locations$by$dkim = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$locations$by$dkim, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/locations/dkim/\${encodeURIComponent(params.parameter.dkim)}\`; + const uri = `/radar/email/security/top/locations/dkim/${encodeURIComponent(params.parameter.dkim)}`; const headers = { Accept: "application/json" }; @@ -63857,7 +63854,7 @@ export const radar$get$email$security$top$locations$by$dkim = (ap * Get the locations by email DMARC validation. */ export const radar$get$email$security$top$locations$by$dmarc = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$locations$by$dmarc, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/locations/dmarc/\${encodeURIComponent(params.parameter.dmarc)}\`; + const uri = `/radar/email/security/top/locations/dmarc/${encodeURIComponent(params.parameter.dmarc)}`; const headers = { Accept: "application/json" }; @@ -63886,7 +63883,7 @@ export const radar$get$email$security$top$locations$by$dmarc = (a * Get the locations by emails classified as malicious or not. */ export const radar$get$email$security$top$locations$by$malicious = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$locations$by$malicious, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/locations/malicious/\${encodeURIComponent(params.parameter.malicious)}\`; + const uri = `/radar/email/security/top/locations/malicious/${encodeURIComponent(params.parameter.malicious)}`; const headers = { Accept: "application/json" }; @@ -63916,7 +63913,7 @@ export const radar$get$email$security$top$locations$by$malicious = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$locations$by$spam, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/locations/spam/\${encodeURIComponent(params.parameter.spam)}\`; + const uri = `/radar/email/security/top/locations/spam/${encodeURIComponent(params.parameter.spam)}`; const headers = { Accept: "application/json" }; @@ -63946,7 +63943,7 @@ export const radar$get$email$security$top$locations$by$spam = (ap * Get the top locations by email SPF validation. */ export const radar$get$email$security$top$locations$by$spf = (apiClient: ApiClient) => (params: Params$radar$get$email$security$top$locations$by$spf, option?: RequestOption): Promise => { - const uri = \`/radar/email/security/top/locations/spf/\${encodeURIComponent(params.parameter.spf)}\`; + const uri = `/radar/email/security/top/locations/spf/${encodeURIComponent(params.parameter.spf)}`; const headers = { Accept: "application/json" }; @@ -63975,7 +63972,7 @@ export const radar$get$email$security$top$locations$by$spf = (api * Gets a list of autonomous systems (AS). */ export const radar$get$entities$asn$list = (apiClient: ApiClient) => (params: Params$radar$get$entities$asn$list, option?: RequestOption): Promise => { - const uri = \`/radar/entities/asns\`; + const uri = `/radar/entities/asns`; const headers = { Accept: "application/json" }; @@ -63996,10 +63993,10 @@ export const radar$get$entities$asn$list = (apiClient: ApiClient< }; /** * Get autonomous system information by AS number - * Get the requested autonomous system information. A confidence level below \`5\` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). + * Get the requested autonomous system information. A confidence level below `5` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). */ export const radar$get$entities$asn$by$id = (apiClient: ApiClient) => (params: Params$radar$get$entities$asn$by$id, option?: RequestOption): Promise => { - const uri = \`/radar/entities/asns/\${encodeURIComponent(params.parameter.asn)}\`; + const uri = `/radar/entities/asns/${encodeURIComponent(params.parameter.asn)}`; const headers = { Accept: "application/json" }; @@ -64018,7 +64015,7 @@ export const radar$get$entities$asn$by$id = (apiClient: ApiClient * Get AS-level relationship for given networks. */ export const radar$get$asns$rel = (apiClient: ApiClient) => (params: Params$radar$get$asns$rel, option?: RequestOption): Promise => { - const uri = \`/radar/entities/asns/\${encodeURIComponent(params.parameter.asn)}/rel\`; + const uri = `/radar/entities/asns/${encodeURIComponent(params.parameter.asn)}/rel`; const headers = { Accept: "application/json" }; @@ -64038,7 +64035,7 @@ export const radar$get$asns$rel = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$entities$asn$by$ip, option?: RequestOption): Promise => { - const uri = \`/radar/entities/asns/ip\`; + const uri = `/radar/entities/asns/ip`; const headers = { Accept: "application/json" }; @@ -64058,7 +64055,7 @@ export const radar$get$entities$asn$by$ip = (apiClient: ApiClient * Get IP address information. */ export const radar$get$entities$ip = (apiClient: ApiClient) => (params: Params$radar$get$entities$ip, option?: RequestOption): Promise => { - const uri = \`/radar/entities/ip\`; + const uri = `/radar/entities/ip`; const headers = { Accept: "application/json" }; @@ -64078,7 +64075,7 @@ export const radar$get$entities$ip = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$entities$locations, option?: RequestOption): Promise => { - const uri = \`/radar/entities/locations\`; + const uri = `/radar/entities/locations`; const headers = { Accept: "application/json" }; @@ -64097,10 +64094,10 @@ export const radar$get$entities$locations = (apiClient: ApiClient }; /** * Get location - * Get the requested location information. A confidence level below \`5\` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this location). + * Get the requested location information. A confidence level below `5` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this location). */ export const radar$get$entities$location$by$alpha2 = (apiClient: ApiClient) => (params: Params$radar$get$entities$location$by$alpha2, option?: RequestOption): Promise => { - const uri = \`/radar/entities/locations/\${encodeURIComponent(params.parameter.location)}\`; + const uri = `/radar/entities/locations/${encodeURIComponent(params.parameter.location)}`; const headers = { Accept: "application/json" }; @@ -64119,7 +64116,7 @@ export const radar$get$entities$location$by$alpha2 = (apiClient: * Percentage distribution of bot-generated traffic to genuine human traffic, as classified by Cloudflare. Visit https://developers.cloudflare.com/radar/concepts/bot-classes/ for more information. */ export const radar$get$http$summary$by$bot$class = (apiClient: ApiClient) => (params: Params$radar$get$http$summary$by$bot$class, option?: RequestOption): Promise => { - const uri = \`/radar/http/summary/bot_class\`; + const uri = `/radar/http/summary/bot_class`; const headers = { Accept: "application/json" }; @@ -64150,7 +64147,7 @@ export const radar$get$http$summary$by$bot$class = (apiClient: Ap * Percentage of Internet traffic generated by mobile, desktop, and other types of devices, over a given time period. */ export const radar$get$http$summary$by$device$type = (apiClient: ApiClient) => (params: Params$radar$get$http$summary$by$device$type, option?: RequestOption): Promise => { - const uri = \`/radar/http/summary/device_type\`; + const uri = `/radar/http/summary/device_type`; const headers = { Accept: "application/json" }; @@ -64181,7 +64178,7 @@ export const radar$get$http$summary$by$device$type = (apiClient: * Percentage distribution of traffic per HTTP protocol over a given time period. */ export const radar$get$http$summary$by$http$protocol = (apiClient: ApiClient) => (params: Params$radar$get$http$summary$by$http$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/http/summary/http_protocol\`; + const uri = `/radar/http/summary/http_protocol`; const headers = { Accept: "application/json" }; @@ -64212,7 +64209,7 @@ export const radar$get$http$summary$by$http$protocol = (apiClient * Percentage distribution of traffic per HTTP protocol version over a given time period. */ export const radar$get$http$summary$by$http$version = (apiClient: ApiClient) => (params: Params$radar$get$http$summary$by$http$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/summary/http_version\`; + const uri = `/radar/http/summary/http_version`; const headers = { Accept: "application/json" }; @@ -64243,7 +64240,7 @@ export const radar$get$http$summary$by$http$version = (apiClient: * Percentage distribution of Internet traffic based on IP protocol versions, such as IPv4 and IPv6, over a given time period. */ export const radar$get$http$summary$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$http$summary$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/summary/ip_version\`; + const uri = `/radar/http/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -64274,7 +64271,7 @@ export const radar$get$http$summary$by$ip$version = (apiClient: A * Percentage distribution of Internet traffic generated by different operating systems like Windows, macOS, Android, iOS, and others, over a given time period. */ export const radar$get$http$summary$by$operating$system = (apiClient: ApiClient) => (params: Params$radar$get$http$summary$by$operating$system, option?: RequestOption): Promise => { - const uri = \`/radar/http/summary/os\`; + const uri = `/radar/http/summary/os`; const headers = { Accept: "application/json" }; @@ -64305,7 +64302,7 @@ export const radar$get$http$summary$by$operating$system = (apiCli * Percentage distribution of traffic per TLS protocol version, over a given time period. */ export const radar$get$http$summary$by$tls$version = (apiClient: ApiClient) => (params: Params$radar$get$http$summary$by$tls$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/summary/tls_version\`; + const uri = `/radar/http/summary/tls_version`; const headers = { Accept: "application/json" }; @@ -64336,7 +64333,7 @@ export const radar$get$http$summary$by$tls$version = (apiClient: * Get a time series of the percentage distribution of traffic classified as automated or human. Visit https://developers.cloudflare.com/radar/concepts/bot-classes/ for more information. */ export const radar$get$http$timeseries$group$by$bot$class = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$bot$class, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/bot_class\`; + const uri = `/radar/http/timeseries_groups/bot_class`; const headers = { Accept: "application/json" }; @@ -64368,7 +64365,7 @@ export const radar$get$http$timeseries$group$by$bot$class = (apiC * Get a time series of the percentage distribution of traffic of the top user agents. */ export const radar$get$http$timeseries$group$by$browsers = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$browsers, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/browser\`; + const uri = `/radar/http/timeseries_groups/browser`; const headers = { Accept: "application/json" }; @@ -64402,7 +64399,7 @@ export const radar$get$http$timeseries$group$by$browsers = (apiCl * Get a time series of the percentage distribution of traffic of the top user agents aggregated in families. */ export const radar$get$http$timeseries$group$by$browser$families = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$browser$families, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/browser_family\`; + const uri = `/radar/http/timeseries_groups/browser_family`; const headers = { Accept: "application/json" }; @@ -64435,7 +64432,7 @@ export const radar$get$http$timeseries$group$by$browser$families = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$device$type, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/device_type\`; + const uri = `/radar/http/timeseries_groups/device_type`; const headers = { Accept: "application/json" }; @@ -64467,7 +64464,7 @@ export const radar$get$http$timeseries$group$by$device$type = (ap * Get a time series of the percentage distribution of traffic per HTTP protocol. */ export const radar$get$http$timeseries$group$by$http$protocol = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$http$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/http_protocol\`; + const uri = `/radar/http/timeseries_groups/http_protocol`; const headers = { Accept: "application/json" }; @@ -64499,7 +64496,7 @@ export const radar$get$http$timeseries$group$by$http$protocol = ( * Get a time series of the percentage distribution of traffic per HTTP protocol version. */ export const radar$get$http$timeseries$group$by$http$version = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$http$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/http_version\`; + const uri = `/radar/http/timeseries_groups/http_version`; const headers = { Accept: "application/json" }; @@ -64531,7 +64528,7 @@ export const radar$get$http$timeseries$group$by$http$version = (a * Get a time series of the percentage distribution of traffic per IP protocol version. */ export const radar$get$http$timeseries$group$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/ip_version\`; + const uri = `/radar/http/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -64563,7 +64560,7 @@ export const radar$get$http$timeseries$group$by$ip$version = (api * Get a time series of the percentage distribution of traffic of the top operating systems. */ export const radar$get$http$timeseries$group$by$operating$system = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$operating$system, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/os\`; + const uri = `/radar/http/timeseries_groups/os`; const headers = { Accept: "application/json" }; @@ -64595,7 +64592,7 @@ export const radar$get$http$timeseries$group$by$operating$system = (apiClient: ApiClient) => (params: Params$radar$get$http$timeseries$group$by$tls$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/timeseries_groups/tls_version\`; + const uri = `/radar/http/timeseries_groups/tls_version`; const headers = { Accept: "application/json" }; @@ -64627,7 +64624,7 @@ export const radar$get$http$timeseries$group$by$tls$version = (ap * Get the top autonomous systems by HTTP traffic. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$http$requests = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$http$requests, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases\`; + const uri = `/radar/http/top/ases`; const headers = { Accept: "application/json" }; @@ -64660,7 +64657,7 @@ export const radar$get$http$top$ases$by$http$requests = (apiClien * Get the top autonomous systems (AS), by HTTP traffic, of the requested bot class. These two categories use Cloudflare's bot score - refer to [Bot Scores](https://developers.cloudflare.com/bots/concepts/bot-score) for more information. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$bot$class = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$bot$class, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases/bot_class/\${encodeURIComponent(params.parameter.bot_class)}\`; + const uri = `/radar/http/top/ases/bot_class/${encodeURIComponent(params.parameter.bot_class)}`; const headers = { Accept: "application/json" }; @@ -64692,7 +64689,7 @@ export const radar$get$http$top$ases$by$bot$class = (apiClient: A * Get the top autonomous systems (AS), by HTTP traffic, of the requested device type. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$device$type = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$device$type, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases/device_type/\${encodeURIComponent(params.parameter.device_type)}\`; + const uri = `/radar/http/top/ases/device_type/${encodeURIComponent(params.parameter.device_type)}`; const headers = { Accept: "application/json" }; @@ -64724,7 +64721,7 @@ export const radar$get$http$top$ases$by$device$type = (apiClient: * Get the top autonomous systems (AS), by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$http$protocol = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$http$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases/http_protocol/\${encodeURIComponent(params.parameter.http_protocol)}\`; + const uri = `/radar/http/top/ases/http_protocol/${encodeURIComponent(params.parameter.http_protocol)}`; const headers = { Accept: "application/json" }; @@ -64756,7 +64753,7 @@ export const radar$get$http$top$ases$by$http$protocol = (apiClien * Get the top autonomous systems (AS), by HTTP traffic, of the requested HTTP protocol version. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$http$version = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$http$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases/http_version/\${encodeURIComponent(params.parameter.http_version)}\`; + const uri = `/radar/http/top/ases/http_version/${encodeURIComponent(params.parameter.http_version)}`; const headers = { Accept: "application/json" }; @@ -64788,7 +64785,7 @@ export const radar$get$http$top$ases$by$http$version = (apiClient * Get the top autonomous systems, by HTTP traffic, of the requested IP protocol version. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const uri = `/radar/http/top/ases/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -64820,7 +64817,7 @@ export const radar$get$http$top$ases$by$ip$version = (apiClient: * Get the top autonomous systems, by HTTP traffic, of the requested operating systems. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$operating$system = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$operating$system, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases/os/\${encodeURIComponent(params.parameter.os)}\`; + const uri = `/radar/http/top/ases/os/${encodeURIComponent(params.parameter.os)}`; const headers = { Accept: "application/json" }; @@ -64852,7 +64849,7 @@ export const radar$get$http$top$ases$by$operating$system = (apiCl * Get the top autonomous systems (AS), by HTTP traffic, of the requested TLS protocol version. Values are a percentage out of the total traffic. */ export const radar$get$http$top$ases$by$tls$version = (apiClient: ApiClient) => (params: Params$radar$get$http$top$ases$by$tls$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/ases/tls_version/\${encodeURIComponent(params.parameter.tls_version)}\`; + const uri = `/radar/http/top/ases/tls_version/${encodeURIComponent(params.parameter.tls_version)}`; const headers = { Accept: "application/json" }; @@ -64884,7 +64881,7 @@ export const radar$get$http$top$ases$by$tls$version = (apiClient: * Get the top user agents aggregated in families by HTTP traffic. Values are a percentage out of the total traffic. */ export const radar$get$http$top$browser$families = (apiClient: ApiClient) => (params: Params$radar$get$http$top$browser$families, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/browser_families\`; + const uri = `/radar/http/top/browser_families`; const headers = { Accept: "application/json" }; @@ -64917,7 +64914,7 @@ export const radar$get$http$top$browser$families = (apiClient: Ap * Get the top user agents by HTTP traffic. Values are a percentage out of the total traffic. */ export const radar$get$http$top$browsers = (apiClient: ApiClient) => (params: Params$radar$get$http$top$browsers, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/browsers\`; + const uri = `/radar/http/top/browsers`; const headers = { Accept: "application/json" }; @@ -64950,7 +64947,7 @@ export const radar$get$http$top$browsers = (apiClient: ApiClient< * Get the top locations by HTTP traffic. Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$http$requests = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$http$requests, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations\`; + const uri = `/radar/http/top/locations`; const headers = { Accept: "application/json" }; @@ -64983,7 +64980,7 @@ export const radar$get$http$top$locations$by$http$requests = (api * Get the top locations, by HTTP traffic, of the requested bot class. These two categories use Cloudflare's bot score - refer to [Bot scores])https://developers.cloudflare.com/bots/concepts/bot-score). Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$bot$class = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$bot$class, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations/bot_class/\${encodeURIComponent(params.parameter.bot_class)}\`; + const uri = `/radar/http/top/locations/bot_class/${encodeURIComponent(params.parameter.bot_class)}`; const headers = { Accept: "application/json" }; @@ -65015,7 +65012,7 @@ export const radar$get$http$top$locations$by$bot$class = (apiClie * Get the top locations, by HTTP traffic, of the requested device type. Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$device$type = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$device$type, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations/device_type/\${encodeURIComponent(params.parameter.device_type)}\`; + const uri = `/radar/http/top/locations/device_type/${encodeURIComponent(params.parameter.device_type)}`; const headers = { Accept: "application/json" }; @@ -65047,7 +65044,7 @@ export const radar$get$http$top$locations$by$device$type = (apiCl * Get the top locations, by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$http$protocol = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$http$protocol, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations/http_protocol/\${encodeURIComponent(params.parameter.http_protocol)}\`; + const uri = `/radar/http/top/locations/http_protocol/${encodeURIComponent(params.parameter.http_protocol)}`; const headers = { Accept: "application/json" }; @@ -65079,7 +65076,7 @@ export const radar$get$http$top$locations$by$http$protocol = (api * Get the top locations, by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$http$version = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$http$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations/http_version/\${encodeURIComponent(params.parameter.http_version)}\`; + const uri = `/radar/http/top/locations/http_version/${encodeURIComponent(params.parameter.http_version)}`; const headers = { Accept: "application/json" }; @@ -65111,7 +65108,7 @@ export const radar$get$http$top$locations$by$http$version = (apiC * Get the top locations, by HTTP traffic, of the requested IP protocol version. Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$ip$version = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$ip$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const uri = `/radar/http/top/locations/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -65143,7 +65140,7 @@ export const radar$get$http$top$locations$by$ip$version = (apiCli * Get the top locations, by HTTP traffic, of the requested operating systems. Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$operating$system = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$operating$system, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations/os/\${encodeURIComponent(params.parameter.os)}\`; + const uri = `/radar/http/top/locations/os/${encodeURIComponent(params.parameter.os)}`; const headers = { Accept: "application/json" }; @@ -65175,7 +65172,7 @@ export const radar$get$http$top$locations$by$operating$system = ( * Get the top locations, by HTTP traffic, of the requested TLS protocol version. Values are a percentage out of the total traffic. */ export const radar$get$http$top$locations$by$tls$version = (apiClient: ApiClient) => (params: Params$radar$get$http$top$locations$by$tls$version, option?: RequestOption): Promise => { - const uri = \`/radar/http/top/locations/tls_version/\${encodeURIComponent(params.parameter.tls_version)}\`; + const uri = `/radar/http/top/locations/tls_version/${encodeURIComponent(params.parameter.tls_version)}`; const headers = { Accept: "application/json" }; @@ -65207,7 +65204,7 @@ export const radar$get$http$top$locations$by$tls$version = (apiCl * Get network traffic change over time. Visit https://en.wikipedia.org/wiki/NetFlow for more information on NetFlows. */ export const radar$get$netflows$timeseries = (apiClient: ApiClient) => (params: Params$radar$get$netflows$timeseries, option?: RequestOption): Promise => { - const uri = \`/radar/netflows/timeseries\`; + const uri = `/radar/netflows/timeseries`; const headers = { Accept: "application/json" }; @@ -65235,7 +65232,7 @@ export const radar$get$netflows$timeseries = (apiClient: ApiClien * Get the top autonomous systems (AS) by network traffic (NetFlows) over a given time period. Visit https://en.wikipedia.org/wiki/NetFlow for more information. */ export const radar$get$netflows$top$ases = (apiClient: ApiClient) => (params: Params$radar$get$netflows$top$ases, option?: RequestOption): Promise => { - const uri = \`/radar/netflows/top/ases\`; + const uri = `/radar/netflows/top/ases`; const headers = { Accept: "application/json" }; @@ -65261,7 +65258,7 @@ export const radar$get$netflows$top$ases = (apiClient: ApiClient< * Get the top locations by network traffic (NetFlows) over a given time period. Visit https://en.wikipedia.org/wiki/NetFlow for more information. */ export const radar$get$netflows$top$locations = (apiClient: ApiClient) => (params: Params$radar$get$netflows$top$locations, option?: RequestOption): Promise => { - const uri = \`/radar/netflows/top/locations\`; + const uri = `/radar/netflows/top/locations`; const headers = { Accept: "application/json" }; @@ -65287,7 +65284,7 @@ export const radar$get$netflows$top$locations = (apiClient: ApiCl * Get a summary (percentiles) of bandwidth, latency or DNS response time from the Radar Internet Quality Index (IQI). */ export const radar$get$quality$index$summary = (apiClient: ApiClient) => (params: Params$radar$get$quality$index$summary, option?: RequestOption): Promise => { - const uri = \`/radar/quality/iqi/summary\`; + const uri = `/radar/quality/iqi/summary`; const headers = { Accept: "application/json" }; @@ -65314,7 +65311,7 @@ export const radar$get$quality$index$summary = (apiClient: ApiCli * Get a time series (percentiles) of bandwidth, latency or DNS response time from the Radar Internet Quality Index (IQI). */ export const radar$get$quality$index$timeseries$group = (apiClient: ApiClient) => (params: Params$radar$get$quality$index$timeseries$group, option?: RequestOption): Promise => { - const uri = \`/radar/quality/iqi/timeseries_groups\`; + const uri = `/radar/quality/iqi/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -65343,7 +65340,7 @@ export const radar$get$quality$index$timeseries$group = (apiClien * Get an histogram from the previous 90 days of Cloudflare Speed Test data, split into fixed bandwidth (Mbps), latency (ms) or jitter (ms) buckets. */ export const radar$get$quality$speed$histogram = (apiClient: ApiClient) => (params: Params$radar$get$quality$speed$histogram, option?: RequestOption): Promise => { - const uri = \`/radar/quality/speed/histogram\`; + const uri = `/radar/quality/speed/histogram`; const headers = { Accept: "application/json" }; @@ -65368,7 +65365,7 @@ export const radar$get$quality$speed$histogram = (apiClient: ApiC * Get a summary of bandwidth, latency, jitter and packet loss, from the previous 90 days of Cloudflare Speed Test data. */ export const radar$get$quality$speed$summary = (apiClient: ApiClient) => (params: Params$radar$get$quality$speed$summary, option?: RequestOption): Promise => { - const uri = \`/radar/quality/speed/summary\`; + const uri = `/radar/quality/speed/summary`; const headers = { Accept: "application/json" }; @@ -65391,7 +65388,7 @@ export const radar$get$quality$speed$summary = (apiClient: ApiCli * Get the top autonomous systems by bandwidth, latency, jitter or packet loss, from the previous 90 days of Cloudflare Speed Test data. */ export const radar$get$quality$speed$top$ases = (apiClient: ApiClient) => (params: Params$radar$get$quality$speed$top$ases, option?: RequestOption): Promise => { - const uri = \`/radar/quality/speed/top/ases\`; + const uri = `/radar/quality/speed/top/ases`; const headers = { Accept: "application/json" }; @@ -65417,7 +65414,7 @@ export const radar$get$quality$speed$top$ases = (apiClient: ApiCl * Get the top locations by bandwidth, latency, jitter or packet loss, from the previous 90 days of Cloudflare Speed Test data. */ export const radar$get$quality$speed$top$locations = (apiClient: ApiClient) => (params: Params$radar$get$quality$speed$top$locations, option?: RequestOption): Promise => { - const uri = \`/radar/quality/speed/top/locations\`; + const uri = `/radar/quality/speed/top/locations`; const headers = { Accept: "application/json" }; @@ -65445,7 +65442,7 @@ export const radar$get$quality$speed$top$locations = (apiClient: * like top 200 thousand, top one million, etc.. These are available through Radar datasets endpoints. */ export const radar$get$ranking$domain$details = (apiClient: ApiClient) => (params: Params$radar$get$ranking$domain$details, option?: RequestOption): Promise => { - const uri = \`/radar/ranking/domain/\${encodeURIComponent(params.parameter.domain)}\`; + const uri = `/radar/ranking/domain/${encodeURIComponent(params.parameter.domain)}`; const headers = { Accept: "application/json" }; @@ -65468,7 +65465,7 @@ export const radar$get$ranking$domain$details = (apiClient: ApiCl * Gets Domains Rank updates change over time. Raw values are returned. */ export const radar$get$ranking$domain$timeseries = (apiClient: ApiClient) => (params: Params$radar$get$ranking$domain$timeseries, option?: RequestOption): Promise => { - const uri = \`/radar/ranking/timeseries_groups\`; + const uri = `/radar/ranking/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -65495,7 +65492,7 @@ export const radar$get$ranking$domain$timeseries = (apiClient: Ap * Get top or trending domains based on their rank. Popular domains are domains of broad appeal based on how people use the Internet. Trending domains are domains that are generating a surge in interest. For more information on top domains, see https://blog.cloudflare.com/radar-domain-rankings/. */ export const radar$get$ranking$top$domains = (apiClient: ApiClient) => (params: Params$radar$get$ranking$top$domains, option?: RequestOption): Promise => { - const uri = \`/radar/ranking/top\`; + const uri = `/radar/ranking/top`; const headers = { Accept: "application/json" }; @@ -65519,7 +65516,7 @@ export const radar$get$ranking$top$domains = (apiClient: ApiClien * Lets you search for locations, autonomous systems (AS) and reports. */ export const radar$get$search$global = (apiClient: ApiClient) => (params: Params$radar$get$search$global, option?: RequestOption): Promise => { - const uri = \`/radar/search/global\`; + const uri = `/radar/search/global`; const headers = { Accept: "application/json" }; @@ -65546,7 +65543,7 @@ export const radar$get$search$global = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$radar$get$traffic$anomalies, option?: RequestOption): Promise => { - const uri = \`/radar/traffic_anomalies\`; + const uri = `/radar/traffic_anomalies`; const headers = { Accept: "application/json" }; @@ -65576,7 +65573,7 @@ export const radar$get$traffic$anomalies = (apiClient: ApiClient< * */ export const radar$get$traffic$anomalies$top = (apiClient: ApiClient) => (params: Params$radar$get$traffic$anomalies$top, option?: RequestOption): Promise => { - const uri = \`/radar/traffic_anomalies/locations\`; + const uri = `/radar/traffic_anomalies/locations`; const headers = { Accept: "application/json" }; @@ -65600,7 +65597,7 @@ export const radar$get$traffic$anomalies$top = (apiClient: ApiCli * Get top verified bots by HTTP requests, with owner and category. */ export const radar$get$verified$bots$top$by$http$requests = (apiClient: ApiClient) => (params: Params$radar$get$verified$bots$top$by$http$requests, option?: RequestOption): Promise => { - const uri = \`/radar/verified_bots/top/bots\`; + const uri = `/radar/verified_bots/top/bots`; const headers = { Accept: "application/json" }; @@ -65626,7 +65623,7 @@ export const radar$get$verified$bots$top$by$http$requests = (apiC * Get top verified bot categories by HTTP requests, along with their corresponding percentage, over the total verified bot HTTP requests. */ export const radar$get$verified$bots$top$categories$by$http$requests = (apiClient: ApiClient) => (params: Params$radar$get$verified$bots$top$categories$by$http$requests, option?: RequestOption): Promise => { - const uri = \`/radar/verified_bots/top/categories\`; + const uri = `/radar/verified_bots/top/categories`; const headers = { Accept: "application/json" }; @@ -65649,7 +65646,7 @@ export const radar$get$verified$bots$top$categories$by$http$requests = (apiClient: ApiClient) => (option?: RequestOption): Promise => { - const uri = \`/user\`; + const uri = `/user`; const headers = { Accept: "application/json" }; @@ -65664,7 +65661,7 @@ export const user$user$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$user$edit$user, option?: RequestOption): Promise => { - const uri = \`/user\`; + const uri = `/user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65681,7 +65678,7 @@ export const user$edit$user = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$audit$logs$get$user$audit$logs, option?: RequestOption): Promise => { - const uri = \`/user/audit_logs\`; + const uri = `/user/audit_logs`; const headers = { Accept: "application/json" }; @@ -65711,7 +65708,7 @@ export const audit$logs$get$user$audit$logs = (apiClient: ApiClie * Accesses your billing history object. */ export const user$billing$history$$$deprecated$$billing$history$details = (apiClient: ApiClient) => (params: Params$user$billing$history$$$deprecated$$billing$history$details, option?: RequestOption): Promise => { - const uri = \`/user/billing/history\`; + const uri = `/user/billing/history`; const headers = { Accept: "application/json" }; @@ -65736,7 +65733,7 @@ export const user$billing$history$$$deprecated$$billing$history$details = (apiClient: ApiClient) => (option?: RequestOption): Promise => { - const uri = \`/user/billing/profile\`; + const uri = `/user/billing/profile`; const headers = { Accept: "application/json" }; @@ -65751,7 +65748,7 @@ export const user$billing$profile$$$deprecated$$billing$profile$details = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$user$list$ip$access$rules, option?: RequestOption): Promise => { - const uri = \`/user/firewall/access_rules/rules\`; + const uri = `/user/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -65777,7 +65774,7 @@ export const ip$access$rules$for$a$user$list$ip$access$rules = (a * Note: To create an IP Access rule that applies to a specific zone, refer to the [IP Access rules for a zone](#ip-access-rules-for-a-zone) endpoints. */ export const ip$access$rules$for$a$user$create$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$user$create$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/user/firewall/access_rules/rules\`; + const uri = `/user/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65796,7 +65793,7 @@ export const ip$access$rules$for$a$user$create$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$user$delete$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/user/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65808,10 +65805,10 @@ export const ip$access$rules$for$a$user$delete$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$user$update$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/user/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65828,7 +65825,7 @@ export const ip$access$rules$for$a$user$update$an$ip$access$rule = (apiClient: ApiClient) => (option?: RequestOption): Promise => { - const uri = \`/user/invites\`; + const uri = `/user/invites`; const headers = { Accept: "application/json" }; @@ -65843,7 +65840,7 @@ export const user$$s$invites$list$invitations = (apiClient: ApiCl * Gets the details of an invitation. */ export const user$$s$invites$invitation$details = (apiClient: ApiClient) => (params: Params$user$$s$invites$invitation$details, option?: RequestOption): Promise => { - const uri = \`/user/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65858,7 +65855,7 @@ export const user$$s$invites$invitation$details = (apiClient: Api * Responds to an invitation. */ export const user$$s$invites$respond$to$invitation = (apiClient: ApiClient) => (params: Params$user$$s$invites$respond$to$invitation, option?: RequestOption): Promise => { - const uri = \`/user/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65875,7 +65872,7 @@ export const user$$s$invites$respond$to$invitation = (apiClient: * List configured monitors for a user. */ export const load$balancer$monitors$list$monitors = (apiClient: ApiClient) => (option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors\`; + const uri = `/user/load_balancers/monitors`; const headers = { Accept: "application/json" }; @@ -65890,7 +65887,7 @@ export const load$balancer$monitors$list$monitors = (apiClient: A * Create a configured monitor. */ export const load$balancer$monitors$create$monitor = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$create$monitor, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors\`; + const uri = `/user/load_balancers/monitors`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65907,7 +65904,7 @@ export const load$balancer$monitors$create$monitor = (apiClient: * List a single configured monitor for a user. */ export const load$balancer$monitors$monitor$details = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$monitor$details, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65922,7 +65919,7 @@ export const load$balancer$monitors$monitor$details = (apiClient: * Modify a configured monitor. */ export const load$balancer$monitors$update$monitor = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$update$monitor, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65939,7 +65936,7 @@ export const load$balancer$monitors$update$monitor = (apiClient: * Delete a configured monitor. */ export const load$balancer$monitors$delete$monitor = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$delete$monitor, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65954,7 +65951,7 @@ export const load$balancer$monitors$delete$monitor = (apiClient: * Apply changes to an existing monitor, overwriting the supplied properties. */ export const load$balancer$monitors$patch$monitor = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$patch$monitor, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65971,7 +65968,7 @@ export const load$balancer$monitors$patch$monitor = (apiClient: A * Preview pools using the specified monitor with provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ export const load$balancer$monitors$preview$monitor = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$preview$monitor, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const uri = `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65988,7 +65985,7 @@ export const load$balancer$monitors$preview$monitor = (apiClient: * Get the list of resources that reference the provided monitor. */ export const load$balancer$monitors$list$monitor$references = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$list$monitor$references, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const uri = `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -66003,7 +66000,7 @@ export const load$balancer$monitors$list$monitor$references = (ap * List configured pools. */ export const load$balancer$pools$list$pools = (apiClient: ApiClient) => (params: Params$load$balancer$pools$list$pools, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools\`; + const uri = `/user/load_balancers/pools`; const headers = { Accept: "application/json" }; @@ -66022,7 +66019,7 @@ export const load$balancer$pools$list$pools = (apiClient: ApiClie * Create a new pool. */ export const load$balancer$pools$create$pool = (apiClient: ApiClient) => (params: Params$load$balancer$pools$create$pool, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools\`; + const uri = `/user/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66036,10 +66033,10 @@ export const load$balancer$pools$create$pool = (apiClient: ApiCli }; /** * Patch Pools - * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending \`name\`. Returns the list of affected pools. Supports the standard pagination query parameters, either \`limit\`/\`offset\` or \`per_page\`/\`page\`. + * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending `name`. Returns the list of affected pools. Supports the standard pagination query parameters, either `limit`/`offset` or `per_page`/`page`. */ export const load$balancer$pools$patch$pools = (apiClient: ApiClient) => (params: Params$load$balancer$pools$patch$pools, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools\`; + const uri = `/user/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66056,7 +66053,7 @@ export const load$balancer$pools$patch$pools = (apiClient: ApiCli * Fetch a single configured pool. */ export const load$balancer$pools$pool$details = (apiClient: ApiClient) => (params: Params$load$balancer$pools$pool$details, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66071,7 +66068,7 @@ export const load$balancer$pools$pool$details = (apiClient: ApiCl * Modify a configured pool. */ export const load$balancer$pools$update$pool = (apiClient: ApiClient) => (params: Params$load$balancer$pools$update$pool, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66088,7 +66085,7 @@ export const load$balancer$pools$update$pool = (apiClient: ApiCli * Delete a configured pool. */ export const load$balancer$pools$delete$pool = (apiClient: ApiClient) => (params: Params$load$balancer$pools$delete$pool, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66103,7 +66100,7 @@ export const load$balancer$pools$delete$pool = (apiClient: ApiCli * Apply changes to an existing pool, overwriting the supplied properties. */ export const load$balancer$pools$patch$pool = (apiClient: ApiClient) => (params: Params$load$balancer$pools$patch$pool, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66120,7 +66117,7 @@ export const load$balancer$pools$patch$pool = (apiClient: ApiClie * Fetch the latest pool health status for a single pool. */ export const load$balancer$pools$pool$health$details = (apiClient: ApiClient) => (params: Params$load$balancer$pools$pool$health$details, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/health\`; + const uri = `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/health`; const headers = { Accept: "application/json" }; @@ -66135,7 +66132,7 @@ export const load$balancer$pools$pool$health$details = (apiClient * Preview pool health using provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ export const load$balancer$pools$preview$pool = (apiClient: ApiClient) => (params: Params$load$balancer$pools$preview$pool, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const uri = `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66152,7 +66149,7 @@ export const load$balancer$pools$preview$pool = (apiClient: ApiCl * Get the list of resources that reference the provided pool. */ export const load$balancer$pools$list$pool$references = (apiClient: ApiClient) => (params: Params$load$balancer$pools$list$pool$references, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const uri = `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -66167,7 +66164,7 @@ export const load$balancer$pools$list$pool$references = (apiClien * Get the result of a previous preview operation using the provided preview_id. */ export const load$balancer$monitors$preview$result = (apiClient: ApiClient) => (params: Params$load$balancer$monitors$preview$result, option?: RequestOption): Promise => { - const uri = \`/user/load_balancers/preview/\${encodeURIComponent(params.parameter.preview_id)}\`; + const uri = `/user/load_balancers/preview/${encodeURIComponent(params.parameter.preview_id)}`; const headers = { Accept: "application/json" }; @@ -66182,7 +66179,7 @@ export const load$balancer$monitors$preview$result = (apiClient: * List origin health changes. */ export const load$balancer$healthcheck$events$list$healthcheck$events = (apiClient: ApiClient) => (params: Params$load$balancer$healthcheck$events$list$healthcheck$events, option?: RequestOption): Promise => { - const uri = \`/user/load_balancing_analytics/events\`; + const uri = `/user/load_balancing_analytics/events`; const headers = { Accept: "application/json" }; @@ -66207,7 +66204,7 @@ export const load$balancer$healthcheck$events$list$healthcheck$events = (apiClient: ApiClient) => (params: Params$user$$s$organizations$list$organizations, option?: RequestOption): Promise => { - const uri = \`/user/organizations\`; + const uri = `/user/organizations`; const headers = { Accept: "application/json" }; @@ -66232,7 +66229,7 @@ export const user$$s$organizations$list$organizations = (apiClien * Gets a specific organization the user is associated with. */ export const user$$s$organizations$organization$details = (apiClient: ApiClient) => (params: Params$user$$s$organizations$organization$details, option?: RequestOption): Promise => { - const uri = \`/user/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66247,7 +66244,7 @@ export const user$$s$organizations$organization$details = (apiCli * Removes association to an organization. */ export const user$$s$organizations$leave$organization = (apiClient: ApiClient) => (params: Params$user$$s$organizations$leave$organization, option?: RequestOption): Promise => { - const uri = \`/user/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66262,7 +66259,7 @@ export const user$$s$organizations$leave$organization = (apiClien * Lists all of a user's subscriptions. */ export const user$subscription$get$user$subscriptions = (apiClient: ApiClient) => (option?: RequestOption): Promise => { - const uri = \`/user/subscriptions\`; + const uri = `/user/subscriptions`; const headers = { Accept: "application/json" }; @@ -66277,7 +66274,7 @@ export const user$subscription$get$user$subscriptions = (apiClien * Updates a user's subscriptions. */ export const user$subscription$update$user$subscription = (apiClient: ApiClient) => (params: Params$user$subscription$update$user$subscription, option?: RequestOption): Promise => { - const uri = \`/user/subscriptions/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/subscriptions/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66294,7 +66291,7 @@ export const user$subscription$update$user$subscription = (apiCli * Deletes a user's subscription. */ export const user$subscription$delete$user$subscription = (apiClient: ApiClient) => (params: Params$user$subscription$delete$user$subscription, option?: RequestOption): Promise => { - const uri = \`/user/subscriptions/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/subscriptions/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66309,7 +66306,7 @@ export const user$subscription$delete$user$subscription = (apiCli * List all access tokens you created. */ export const user$api$tokens$list$tokens = (apiClient: ApiClient) => (params: Params$user$api$tokens$list$tokens, option?: RequestOption): Promise => { - const uri = \`/user/tokens\`; + const uri = `/user/tokens`; const headers = { Accept: "application/json" }; @@ -66330,7 +66327,7 @@ export const user$api$tokens$list$tokens = (apiClient: ApiClient< * Create a new access token. */ export const user$api$tokens$create$token = (apiClient: ApiClient) => (params: Params$user$api$tokens$create$token, option?: RequestOption): Promise => { - const uri = \`/user/tokens\`; + const uri = `/user/tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66347,7 +66344,7 @@ export const user$api$tokens$create$token = (apiClient: ApiClient * Get information about a specific token. */ export const user$api$tokens$token$details = (apiClient: ApiClient) => (params: Params$user$api$tokens$token$details, option?: RequestOption): Promise => { - const uri = \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66362,7 +66359,7 @@ export const user$api$tokens$token$details = (apiClient: ApiClien * Update an existing token. */ export const user$api$tokens$update$token = (apiClient: ApiClient) => (params: Params$user$api$tokens$update$token, option?: RequestOption): Promise => { - const uri = \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66379,7 +66376,7 @@ export const user$api$tokens$update$token = (apiClient: ApiClient * Destroy a token. */ export const user$api$tokens$delete$token = (apiClient: ApiClient) => (params: Params$user$api$tokens$delete$token, option?: RequestOption): Promise => { - const uri = \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66394,7 +66391,7 @@ export const user$api$tokens$delete$token = (apiClient: ApiClient * Roll the token secret. */ export const user$api$tokens$roll$token = (apiClient: ApiClient) => (params: Params$user$api$tokens$roll$token, option?: RequestOption): Promise => { - const uri = \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}/value\`; + const uri = `/user/tokens/${encodeURIComponent(params.parameter.identifier)}/value`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66411,7 +66408,7 @@ export const user$api$tokens$roll$token = (apiClient: ApiClient(apiClient: ApiClient) => (option?: RequestOption): Promise => { - const uri = \`/user/tokens/permission_groups\`; + const uri = `/user/tokens/permission_groups`; const headers = { Accept: "application/json" }; @@ -66426,7 +66423,7 @@ export const permission$groups$list$permission$groups = (apiClien * Test whether a token works. */ export const user$api$tokens$verify$token = (apiClient: ApiClient) => (option?: RequestOption): Promise => { - const uri = \`/user/tokens/verify\`; + const uri = `/user/tokens/verify`; const headers = { Accept: "application/json" }; @@ -66441,7 +66438,7 @@ export const user$api$tokens$verify$token = (apiClient: ApiClient * Lists, searches, sorts, and filters your zones. */ export const zones$get = (apiClient: ApiClient) => (params: Params$zones$get, option?: RequestOption): Promise => { - const uri = \`/zones\`; + const uri = `/zones`; const headers = { Accept: "application/json" }; @@ -66465,7 +66462,7 @@ export const zones$get = (apiClient: ApiClient) => }; /** Create Zone */ export const zones$post = (apiClient: ApiClient) => (params: Params$zones$post, option?: RequestOption): Promise => { - const uri = \`/zones\`; + const uri = `/zones`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66482,7 +66479,7 @@ export const zones$post = (apiClient: ApiClient) = * List all Access Applications in a zone. */ export const zone$level$access$applications$list$access$applications = (apiClient: ApiClient) => (params: Params$zone$level$access$applications$list$access$applications, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { Accept: "application/json" }; @@ -66497,7 +66494,7 @@ export const zone$level$access$applications$list$access$applications = (apiClient: ApiClient) => (params: Params$zone$level$access$applications$add$a$bookmark$application, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66514,7 +66511,7 @@ export const zone$level$access$applications$add$a$bookmark$application = (apiClient: ApiClient) => (params: Params$zone$level$access$applications$get$an$access$application, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -66529,7 +66526,7 @@ export const zone$level$access$applications$get$an$access$application = (apiClient: ApiClient) => (params: Params$zone$level$access$applications$update$a$bookmark$application, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66546,7 +66543,7 @@ export const zone$level$access$applications$update$a$bookmark$application = (apiClient: ApiClient) => (params: Params$zone$level$access$applications$delete$an$access$application, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -66561,7 +66558,7 @@ export const zone$level$access$applications$delete$an$access$application = (apiClient: ApiClient) => (params: Params$zone$level$access$applications$revoke$service$tokens, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/revoke_tokens\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/revoke_tokens`; const headers = { Accept: "application/json" }; @@ -66576,7 +66573,7 @@ export const zone$level$access$applications$revoke$service$tokens = (apiClient: ApiClient) => (params: Params$zone$level$access$applications$test$access$policies, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/user_policy_checks\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/user_policy_checks`; const headers = { Accept: "application/json" }; @@ -66591,7 +66588,7 @@ export const zone$level$access$applications$test$access$policies = (apiClient: ApiClient) => (params: Params$zone$level$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66606,7 +66603,7 @@ export const zone$level$access$short$lived$certificate$c$as$get$a$short$lived$ce * Generates a new short-lived certificate CA and public key. */ export const zone$level$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca = (apiClient: ApiClient) => (params: Params$zone$level$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66621,7 +66618,7 @@ export const zone$level$access$short$lived$certificate$c$as$create$a$short$lived * Deletes a short-lived certificate CA. */ export const zone$level$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca = (apiClient: ApiClient) => (params: Params$zone$level$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66636,7 +66633,7 @@ export const zone$level$access$short$lived$certificate$c$as$delete$a$short$lived * Lists Access policies configured for an application. */ export const zone$level$access$policies$list$access$policies = (apiClient: ApiClient) => (params: Params$zone$level$access$policies$list$access$policies, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { Accept: "application/json" }; @@ -66651,7 +66648,7 @@ export const zone$level$access$policies$list$access$policies = (a * Create a new Access policy for an application. */ export const zone$level$access$policies$create$an$access$policy = (apiClient: ApiClient) => (params: Params$zone$level$access$policies$create$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66668,7 +66665,7 @@ export const zone$level$access$policies$create$an$access$policy = (apiClient: ApiClient) => (params: Params$zone$level$access$policies$get$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66683,7 +66680,7 @@ export const zone$level$access$policies$get$an$access$policy = (a * Update a configured Access policy. */ export const zone$level$access$policies$update$an$access$policy = (apiClient: ApiClient) => (params: Params$zone$level$access$policies$update$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66700,7 +66697,7 @@ export const zone$level$access$policies$update$an$access$policy = (apiClient: ApiClient) => (params: Params$zone$level$access$policies$delete$an$access$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66715,7 +66712,7 @@ export const zone$level$access$policies$delete$an$access$policy = (apiClient: ApiClient) => (params: Params$zone$level$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/ca\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/ca`; const headers = { Accept: "application/json" }; @@ -66730,7 +66727,7 @@ export const zone$level$access$short$lived$certificate$c$as$list$short$lived$cer * Lists all mTLS certificates. */ export const zone$level$access$mtls$authentication$list$mtls$certificates = (apiClient: ApiClient) => (params: Params$zone$level$access$mtls$authentication$list$mtls$certificates, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { Accept: "application/json" }; @@ -66745,7 +66742,7 @@ export const zone$level$access$mtls$authentication$list$mtls$certificates = (apiClient: ApiClient) => (params: Params$zone$level$access$mtls$authentication$add$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66762,7 +66759,7 @@ export const zone$level$access$mtls$authentication$add$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$zone$level$access$mtls$authentication$get$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66777,7 +66774,7 @@ export const zone$level$access$mtls$authentication$get$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$zone$level$access$mtls$authentication$update$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66794,7 +66791,7 @@ export const zone$level$access$mtls$authentication$update$an$mtls$certificate = * Deletes an mTLS certificate. */ export const zone$level$access$mtls$authentication$delete$an$mtls$certificate = (apiClient: ApiClient) => (params: Params$zone$level$access$mtls$authentication$delete$an$mtls$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66809,7 +66806,7 @@ export const zone$level$access$mtls$authentication$delete$an$mtls$certificate = * List all mTLS hostname settings for this zone. */ export const zone$level$access$mtls$authentication$list$mtls$certificates$hostname$settings = (apiClient: ApiClient) => (params: Params$zone$level$access$mtls$authentication$list$mtls$certificates$hostname$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { Accept: "application/json" }; @@ -66824,7 +66821,7 @@ export const zone$level$access$mtls$authentication$list$mtls$certificates$hostna * Updates an mTLS certificate's hostname settings. */ export const zone$level$access$mtls$authentication$update$an$mtls$certificate$settings = (apiClient: ApiClient) => (params: Params$zone$level$access$mtls$authentication$update$an$mtls$certificate$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66841,7 +66838,7 @@ export const zone$level$access$mtls$authentication$update$an$mtls$certificate$se * Lists all Access groups. */ export const zone$level$access$groups$list$access$groups = (apiClient: ApiClient) => (params: Params$zone$level$access$groups$list$access$groups, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { Accept: "application/json" }; @@ -66856,7 +66853,7 @@ export const zone$level$access$groups$list$access$groups = (apiCl * Creates a new Access group. */ export const zone$level$access$groups$create$an$access$group = (apiClient: ApiClient) => (params: Params$zone$level$access$groups$create$an$access$group, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66873,7 +66870,7 @@ export const zone$level$access$groups$create$an$access$group = (a * Fetches a single Access group. */ export const zone$level$access$groups$get$an$access$group = (apiClient: ApiClient) => (params: Params$zone$level$access$groups$get$an$access$group, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66888,7 +66885,7 @@ export const zone$level$access$groups$get$an$access$group = (apiC * Updates a configured Access group. */ export const zone$level$access$groups$update$an$access$group = (apiClient: ApiClient) => (params: Params$zone$level$access$groups$update$an$access$group, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66905,7 +66902,7 @@ export const zone$level$access$groups$update$an$access$group = (a * Deletes an Access group. */ export const zone$level$access$groups$delete$an$access$group = (apiClient: ApiClient) => (params: Params$zone$level$access$groups$delete$an$access$group, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66920,7 +66917,7 @@ export const zone$level$access$groups$delete$an$access$group = (a * Lists all configured identity providers. */ export const zone$level$access$identity$providers$list$access$identity$providers = (apiClient: ApiClient) => (params: Params$zone$level$access$identity$providers$list$access$identity$providers, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { Accept: "application/json" }; @@ -66935,7 +66932,7 @@ export const zone$level$access$identity$providers$list$access$identity$providers * Adds a new identity provider to Access. */ export const zone$level$access$identity$providers$add$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$zone$level$access$identity$providers$add$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66952,7 +66949,7 @@ export const zone$level$access$identity$providers$add$an$access$identity$provide * Fetches a configured identity provider. */ export const zone$level$access$identity$providers$get$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$zone$level$access$identity$providers$get$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66967,7 +66964,7 @@ export const zone$level$access$identity$providers$get$an$access$identity$provide * Updates a configured identity provider. */ export const zone$level$access$identity$providers$update$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$zone$level$access$identity$providers$update$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66984,7 +66981,7 @@ export const zone$level$access$identity$providers$update$an$access$identity$prov * Deletes an identity provider from Access. */ export const zone$level$access$identity$providers$delete$an$access$identity$provider = (apiClient: ApiClient) => (params: Params$zone$level$access$identity$providers$delete$an$access$identity$provider, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66999,7 +66996,7 @@ export const zone$level$access$identity$providers$delete$an$access$identity$prov * Returns the configuration for your Zero Trust organization. */ export const zone$level$zero$trust$organization$get$your$zero$trust$organization = (apiClient: ApiClient) => (params: Params$zone$level$zero$trust$organization$get$your$zero$trust$organization, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { Accept: "application/json" }; @@ -67014,7 +67011,7 @@ export const zone$level$zero$trust$organization$get$your$zero$trust$organization * Updates the configuration for your Zero Trust organization. */ export const zone$level$zero$trust$organization$update$your$zero$trust$organization = (apiClient: ApiClient) => (params: Params$zone$level$zero$trust$organization$update$your$zero$trust$organization, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67031,7 +67028,7 @@ export const zone$level$zero$trust$organization$update$your$zero$trust$organizat * Sets up a Zero Trust organization for your account. */ export const zone$level$zero$trust$organization$create$your$zero$trust$organization = (apiClient: ApiClient) => (params: Params$zone$level$zero$trust$organization$create$your$zero$trust$organization, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67048,7 +67045,7 @@ export const zone$level$zero$trust$organization$create$your$zero$trust$organizat * Revokes a user's access across all applications. */ export const zone$level$zero$trust$organization$revoke$all$access$tokens$for$a$user = (apiClient: ApiClient) => (params: Params$zone$level$zero$trust$organization$revoke$all$access$tokens$for$a$user, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67065,7 +67062,7 @@ export const zone$level$zero$trust$organization$revoke$all$access$tokens$for$a$u * Lists all service tokens. */ export const zone$level$access$service$tokens$list$service$tokens = (apiClient: ApiClient) => (params: Params$zone$level$access$service$tokens$list$service$tokens, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { Accept: "application/json" }; @@ -67080,7 +67077,7 @@ export const zone$level$access$service$tokens$list$service$tokens = (apiClient: ApiClient) => (params: Params$zone$level$access$service$tokens$create$a$service$token, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67097,7 +67094,7 @@ export const zone$level$access$service$tokens$create$a$service$token = (apiClient: ApiClient) => (params: Params$zone$level$access$service$tokens$update$a$service$token, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67114,7 +67111,7 @@ export const zone$level$access$service$tokens$update$a$service$token = (apiClient: ApiClient) => (params: Params$zone$level$access$service$tokens$delete$a$service$token, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -67131,7 +67128,7 @@ export const zone$level$access$service$tokens$delete$a$service$token = (apiClient: ApiClient) => (params: Params$dns$analytics$table, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report`; const headers = { Accept: "application/json" }; @@ -67158,7 +67155,7 @@ export const dns$analytics$table = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dns$analytics$by$time, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime`; const headers = { Accept: "application/json" }; @@ -67184,7 +67181,7 @@ export const dns$analytics$by$time = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$load$balancers$list$load$balancers, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/load_balancers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/load_balancers`; const headers = { Accept: "application/json" }; @@ -67199,7 +67196,7 @@ export const load$balancers$list$load$balancers = (apiClient: Api * Create a new load balancer. */ export const load$balancers$create$load$balancer = (apiClient: ApiClient) => (params: Params$load$balancers$create$load$balancer, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/load_balancers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/load_balancers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67229,7 +67226,7 @@ export const load$balancers$create$load$balancer = (apiClient: Ap * **NB:** Cache-Tag, host, and prefix purging each have a rate limit of 30,000 purge API calls in every 24 hour period. You may purge up to 30 tags, hosts, or prefixes in one API call. This rate limit can be raised for customers who need to purge at higher volume. */ export const zone$purge = (apiClient: ApiClient) => (params: Params$zone$purge, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/purge_cache\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/purge_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67246,7 +67243,7 @@ export const zone$purge = (apiClient: ApiClient) = * Returns the set of hostnames, the signature algorithm, and the expiration date of the certificate. */ export const analyze$certificate$analyze$certificate = (apiClient: ApiClient) => (params: Params$analyze$certificate$analyze$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/ssl/analyze\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/ssl/analyze`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67263,7 +67260,7 @@ export const analyze$certificate$analyze$certificate = (apiClient * Lists zone subscription details. */ export const zone$subscription$zone$subscription$details = (apiClient: ApiClient) => (params: Params$zone$subscription$zone$subscription$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { Accept: "application/json" }; @@ -67278,7 +67275,7 @@ export const zone$subscription$zone$subscription$details = (apiCl * Updates zone subscriptions, either plan or add-ons. */ export const zone$subscription$update$zone$subscription = (apiClient: ApiClient) => (params: Params$zone$subscription$update$zone$subscription, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67295,7 +67292,7 @@ export const zone$subscription$update$zone$subscription = (apiCli * Create a zone subscription, either plan or add-ons. */ export const zone$subscription$create$zone$subscription = (apiClient: ApiClient) => (params: Params$zone$subscription$create$zone$subscription, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67312,7 +67309,7 @@ export const zone$subscription$create$zone$subscription = (apiCli * Fetch a single configured load balancer. */ export const load$balancers$load$balancer$details = (apiClient: ApiClient) => (params: Params$load$balancers$load$balancer$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -67327,7 +67324,7 @@ export const load$balancers$load$balancer$details = (apiClient: A * Update a configured load balancer. */ export const load$balancers$update$load$balancer = (apiClient: ApiClient) => (params: Params$load$balancers$update$load$balancer, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67344,7 +67341,7 @@ export const load$balancers$update$load$balancer = (apiClient: Ap * Delete a configured load balancer. */ export const load$balancers$delete$load$balancer = (apiClient: ApiClient) => (params: Params$load$balancers$delete$load$balancer, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -67359,7 +67356,7 @@ export const load$balancers$delete$load$balancer = (apiClient: Ap * Apply changes to an existing load balancer, overwriting the supplied properties. */ export const load$balancers$patch$load$balancer = (apiClient: ApiClient) => (params: Params$load$balancers$patch$load$balancer, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67373,7 +67370,7 @@ export const load$balancers$patch$load$balancer = (apiClient: Api }; /** Zone Details */ export const zones$0$get = (apiClient: ApiClient) => (params: Params$zones$0$get, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { Accept: "application/json" }; @@ -67388,7 +67385,7 @@ export const zones$0$get = (apiClient: ApiClient) * Deletes an existing zone. */ export const zones$0$delete = (apiClient: ApiClient) => (params: Params$zones$0$delete, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { Accept: "application/json" }; @@ -67403,7 +67400,7 @@ export const zones$0$delete = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zones$0$patch, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67422,7 +67419,7 @@ export const zones$0$patch = (apiClient: ApiClient * Zones. */ export const put$zones$zone_id$activation_check = (apiClient: ApiClient) => (params: Params$put$zones$zone_id$activation_check, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/activation_check\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/activation_check`; const headers = { Accept: "application/json" }; @@ -67434,7 +67431,7 @@ export const put$zones$zone_id$activation_check = (apiClient: Api }; /** Argo Analytics for a zone */ export const argo$analytics$for$zone$argo$analytics$for$a$zone = (apiClient: ApiClient) => (params: Params$argo$analytics$for$zone$argo$analytics$for$a$zone, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/analytics/latency\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/analytics/latency`; const headers = { Accept: "application/json" }; @@ -67450,7 +67447,7 @@ export const argo$analytics$for$zone$argo$analytics$for$a$zone = }; /** Argo Analytics for a zone at different PoPs */ export const argo$analytics$for$geolocation$argo$analytics$for$a$zone$at$different$po$ps = (apiClient: ApiClient) => (params: Params$argo$analytics$for$geolocation$argo$analytics$for$a$zone$at$different$po$ps, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/analytics/latency/colos\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/analytics/latency/colos`; const headers = { Accept: "application/json" }; @@ -67462,7 +67459,7 @@ export const argo$analytics$for$geolocation$argo$analytics$for$a$zone$at$differe }; /** Retrieve information about specific configuration properties */ export const api$shield$settings$retrieve$information$about$specific$configuration$properties = (apiClient: ApiClient) => (params: Params$api$shield$settings$retrieve$information$about$specific$configuration$properties, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration`; const headers = { Accept: "application/json" }; @@ -67478,7 +67475,7 @@ export const api$shield$settings$retrieve$information$about$specific$configurati }; /** Set configuration properties */ export const api$shield$settings$set$configuration$properties = (apiClient: ApiClient) => (params: Params$api$shield$settings$set$configuration$properties, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67495,7 +67492,7 @@ export const api$shield$settings$set$configuration$properties = ( * Retrieve the most up to date view of discovered operations, rendered as OpenAPI schemas */ export const api$shield$api$discovery$retrieve$discovered$operations$on$a$zone$as$openapi = (apiClient: ApiClient) => (params: Params$api$shield$api$discovery$retrieve$discovered$operations$on$a$zone$as$openapi, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery`; const headers = { Accept: "application/json" }; @@ -67510,7 +67507,7 @@ export const api$shield$api$discovery$retrieve$discovered$operations$on$a$zone$a * Retrieve the most up to date view of discovered operations */ export const api$shield$api$discovery$retrieve$discovered$operations$on$a$zone = (apiClient: ApiClient) => (params: Params$api$shield$api$discovery$retrieve$discovered$operations$on$a$zone, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations`; const headers = { Accept: "application/json" }; @@ -67535,10 +67532,10 @@ export const api$shield$api$discovery$retrieve$discovered$operations$on$a$zone = }; /** * Patch discovered operations - * Update the \`state\` on one or more discovered operations + * Update the `state` on one or more discovered operations */ export const api$shield$api$patch$discovered$operations = (apiClient: ApiClient) => (params: Params$api$shield$api$patch$discovered$operations, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67552,10 +67549,10 @@ export const api$shield$api$patch$discovered$operations = (apiCli }; /** * Patch discovered operation - * Update the \`state\` on a discovered operation + * Update the `state` on a discovered operation */ export const api$shield$api$patch$discovered$operation = (apiClient: ApiClient) => (params: Params$api$shield$api$patch$discovered$operation, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67569,7 +67566,7 @@ export const api$shield$api$patch$discovered$operation = (apiClie }; /** Retrieve information about all operations on a zone */ export const api$shield$endpoint$management$retrieve$information$about$all$operations$on$a$zone = (apiClient: ApiClient) => (params: Params$api$shield$endpoint$management$retrieve$information$about$all$operations$on$a$zone, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations`; const headers = { Accept: "application/json" }; @@ -67595,7 +67592,7 @@ export const api$shield$endpoint$management$retrieve$information$about$all$opera * Add one or more operations to a zone. Endpoints can contain path variables. Host, method, endpoint will be normalized to a canoncial form when creating an operation and must be unique on the zone. Inserting an operation that matches an existing one will return the record of the already existing operation and update its last_updated date. */ export const api$shield$endpoint$management$add$operations$to$a$zone = (apiClient: ApiClient) => (params: Params$api$shield$endpoint$management$add$operations$to$a$zone, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67609,7 +67606,7 @@ export const api$shield$endpoint$management$add$operations$to$a$zone = (apiClient: ApiClient) => (params: Params$api$shield$endpoint$management$retrieve$information$about$an$operation, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -67625,7 +67622,7 @@ export const api$shield$endpoint$management$retrieve$information$about$an$operat }; /** Delete an operation */ export const api$shield$endpoint$management$delete$an$operation = (apiClient: ApiClient) => (params: Params$api$shield$endpoint$management$delete$an$operation, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -67640,7 +67637,7 @@ export const api$shield$endpoint$management$delete$an$operation = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$retrieve$operation$level$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}/schema_validation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}/schema_validation`; const headers = { Accept: "application/json" }; @@ -67655,7 +67652,7 @@ export const api$shield$schema$validation$retrieve$operation$level$settings = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$update$operation$level$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}/schema_validation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67672,7 +67669,7 @@ export const api$shield$schema$validation$update$operation$level$settings = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$update$multiple$operation$level$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/schema_validation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67686,7 +67683,7 @@ export const api$shield$schema$validation$update$multiple$operation$level$settin }; /** Retrieve operations and features as OpenAPI schemas */ export const api$shield$endpoint$management$retrieve$operations$and$features$as$open$api$schemas = (apiClient: ApiClient) => (params: Params$api$shield$endpoint$management$retrieve$operations$and$features$as$open$api$schemas, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/schemas\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/schemas`; const headers = { Accept: "application/json" }; @@ -67706,7 +67703,7 @@ export const api$shield$endpoint$management$retrieve$operations$and$features$as$ * Retrieves zone level schema validation settings currently set on the zone */ export const api$shield$schema$validation$retrieve$zone$level$settings = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$retrieve$zone$level$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { Accept: "application/json" }; @@ -67721,7 +67718,7 @@ export const api$shield$schema$validation$retrieve$zone$level$settings = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$update$zone$level$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67738,7 +67735,7 @@ export const api$shield$schema$validation$update$zone$level$settings = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$patch$zone$level$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67752,7 +67749,7 @@ export const api$shield$schema$validation$patch$zone$level$settings = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$retrieve$information$about$all$schemas, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas`; const headers = { Accept: "application/json" }; @@ -67771,7 +67768,7 @@ export const api$shield$schema$validation$retrieve$information$about$all$schemas }; /** Upload a schema to a zone */ export const api$shield$schema$validation$post$schema = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$post$schema, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -67785,7 +67782,7 @@ export const api$shield$schema$validation$post$schema = (apiClien }; /** Retrieve information about a specific schema on a zone */ export const api$shield$schema$validation$retrieve$information$about$specific$schema = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$retrieve$information$about$specific$schema, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { Accept: "application/json" }; @@ -67801,7 +67798,7 @@ export const api$shield$schema$validation$retrieve$information$about$specific$sc }; /** Delete a schema */ export const api$shield$schema$delete$a$schema = (apiClient: ApiClient) => (params: Params$api$shield$schema$delete$a$schema, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { Accept: "application/json" }; @@ -67813,7 +67810,7 @@ export const api$shield$schema$delete$a$schema = (apiClient: ApiC }; /** Enable validation for a schema */ export const api$shield$schema$validation$enable$validation$for$a$schema = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$enable$validation$for$a$schema, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67830,7 +67827,7 @@ export const api$shield$schema$validation$enable$validation$for$a$schema = (apiClient: ApiClient) => (params: Params$api$shield$schema$validation$extract$operations$from$schema, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}/operations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}/operations`; const headers = { Accept: "application/json" }; @@ -67852,7 +67849,7 @@ export const api$shield$schema$validation$extract$operations$from$schema = (apiClient: ApiClient) => (params: Params$argo$smart$routing$get$argo$smart$routing$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing`; const headers = { Accept: "application/json" }; @@ -67867,7 +67864,7 @@ export const argo$smart$routing$get$argo$smart$routing$setting = * Updates enablement of Argo Smart Routing. */ export const argo$smart$routing$patch$argo$smart$routing$setting = (apiClient: ApiClient) => (params: Params$argo$smart$routing$patch$argo$smart$routing$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67881,7 +67878,7 @@ export const argo$smart$routing$patch$argo$smart$routing$setting = (apiClient: ApiClient) => (params: Params$tiered$caching$get$tiered$caching$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching`; const headers = { Accept: "application/json" }; @@ -67896,7 +67893,7 @@ export const tiered$caching$get$tiered$caching$setting = (apiClie * Updates enablement of Tiered Caching */ export const tiered$caching$patch$tiered$caching$setting = (apiClient: ApiClient) => (params: Params$tiered$caching$patch$tiered$caching$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67913,7 +67910,7 @@ export const tiered$caching$patch$tiered$caching$setting = (apiCl * Retrieve a zone's Bot Management Config */ export const bot$management$for$a$zone$get$config = (apiClient: ApiClient) => (params: Params$bot$management$for$a$zone$get$config, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/bot_management\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/bot_management`; const headers = { Accept: "application/json" }; @@ -67935,7 +67932,7 @@ export const bot$management$for$a$zone$get$config = (apiClient: A * See [Bot Plans](https://developers.cloudflare.com/bots/plans/) for more information on the different plans */ export const bot$management$for$a$zone$update$config = (apiClient: ApiClient) => (params: Params$bot$management$for$a$zone$update$config, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/bot_management\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/bot_management`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67952,7 +67949,7 @@ export const bot$management$for$a$zone$update$config = (apiClient * Increase cache lifetimes by automatically storing all cacheable files into Cloudflare's persistent object storage buckets. Requires Cache Reserve subscription. Note: using Tiered Cache with Cache Reserve is highly recommended to reduce Reserve operations costs. See the [developer docs](https://developers.cloudflare.com/cache/about/cache-reserve) for more information. */ export const zone$cache$settings$get$cache$reserve$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$get$cache$reserve$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve`; const headers = { Accept: "application/json" }; @@ -67967,7 +67964,7 @@ export const zone$cache$settings$get$cache$reserve$setting = (api * Increase cache lifetimes by automatically storing all cacheable files into Cloudflare's persistent object storage buckets. Requires Cache Reserve subscription. Note: using Tiered Cache with Cache Reserve is highly recommended to reduce Reserve operations costs. See the [developer docs](https://developers.cloudflare.com/cache/about/cache-reserve) for more information. */ export const zone$cache$settings$change$cache$reserve$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$change$cache$reserve$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67984,7 +67981,7 @@ export const zone$cache$settings$change$cache$reserve$setting = ( * You can use Cache Reserve Clear to clear your Cache Reserve, but you must first disable Cache Reserve. In most cases, this will be accomplished within 24 hours. You cannot re-enable Cache Reserve while this process is ongoing. Keep in mind that you cannot undo or cancel this operation. */ export const zone$cache$settings$get$cache$reserve$clear = (apiClient: ApiClient) => (params: Params$zone$cache$settings$get$cache$reserve$clear, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear`; const headers = { Accept: "application/json" }; @@ -67999,7 +67996,7 @@ export const zone$cache$settings$get$cache$reserve$clear = (apiCl * You can use Cache Reserve Clear to clear your Cache Reserve, but you must first disable Cache Reserve. In most cases, this will be accomplished within 24 hours. You cannot re-enable Cache Reserve while this process is ongoing. Keep in mind that you cannot undo or cancel this operation. */ export const zone$cache$settings$start$cache$reserve$clear = (apiClient: ApiClient) => (params: Params$zone$cache$settings$start$cache$reserve$clear, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68016,7 +68013,7 @@ export const zone$cache$settings$start$cache$reserve$clear = (api * Instructs Cloudflare to use Post-Quantum (PQ) key agreement algorithms when connecting to your origin. Preferred instructs Cloudflare to opportunistically send a Post-Quantum keyshare in the first message to the origin (for fastest connections when the origin supports and prefers PQ), supported means that PQ algorithms are advertised but only used when requested by the origin, and off means that PQ algorithms are not advertised */ export const zone$cache$settings$get$origin$post$quantum$encryption$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$get$origin$post$quantum$encryption$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption`; const headers = { Accept: "application/json" }; @@ -68031,7 +68028,7 @@ export const zone$cache$settings$get$origin$post$quantum$encryption$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$change$origin$post$quantum$encryption$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68048,7 +68045,7 @@ export const zone$cache$settings$change$origin$post$quantum$encryption$setting = * Instructs Cloudflare to check a regional hub data center on the way to your upper tier. This can help improve performance for smart and custom tiered cache topologies. */ export const zone$cache$settings$get$regional$tiered$cache$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$get$regional$tiered$cache$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache`; const headers = { Accept: "application/json" }; @@ -68063,7 +68060,7 @@ export const zone$cache$settings$get$regional$tiered$cache$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$change$regional$tiered$cache$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68077,7 +68074,7 @@ export const zone$cache$settings$change$regional$tiered$cache$setting = (apiClient: ApiClient) => (params: Params$smart$tiered$cache$get$smart$tiered$cache$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { Accept: "application/json" }; @@ -68092,7 +68089,7 @@ export const smart$tiered$cache$get$smart$tiered$cache$setting = * Remvoves enablement of Smart Tiered Cache */ export const smart$tiered$cache$delete$smart$tiered$cache$setting = (apiClient: ApiClient) => (params: Params$smart$tiered$cache$delete$smart$tiered$cache$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { Accept: "application/json" }; @@ -68107,7 +68104,7 @@ export const smart$tiered$cache$delete$smart$tiered$cache$setting = (apiClient: ApiClient) => (params: Params$smart$tiered$cache$patch$smart$tiered$cache$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68124,7 +68121,7 @@ export const smart$tiered$cache$patch$smart$tiered$cache$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$get$variants$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { Accept: "application/json" }; @@ -68139,7 +68136,7 @@ export const zone$cache$settings$get$variants$setting = (apiClien * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ export const zone$cache$settings$delete$variants$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$delete$variants$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { Accept: "application/json" }; @@ -68154,7 +68151,7 @@ export const zone$cache$settings$delete$variants$setting = (apiCl * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ export const zone$cache$settings$change$variants$setting = (apiClient: ApiClient) => (params: Params$zone$cache$settings$change$variants$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68171,7 +68168,7 @@ export const zone$cache$settings$change$variants$setting = (apiCl * Get metadata for account-level custom nameservers on a zone. */ export const account$level$custom$nameservers$usage$for$a$zone$get$account$custom$nameserver$related$zone$metadata = (apiClient: ApiClient) => (params: Params$account$level$custom$nameservers$usage$for$a$zone$get$account$custom$nameserver$related$zone$metadata, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/custom_ns\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/custom_ns`; const headers = { Accept: "application/json" }; @@ -68188,7 +68185,7 @@ export const account$level$custom$nameservers$usage$for$a$zone$get$account$custo * If you would like new zones in the account to use account custom nameservers by default, use PUT /accounts/:identifier to set the account setting use_account_custom_ns_by_default to true. */ export const account$level$custom$nameservers$usage$for$a$zone$set$account$custom$nameserver$related$zone$metadata = (apiClient: ApiClient) => (params: Params$account$level$custom$nameservers$usage$for$a$zone$set$account$custom$nameserver$related$zone$metadata, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/custom_ns\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/custom_ns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68205,7 +68202,7 @@ export const account$level$custom$nameservers$usage$for$a$zone$set$account$custo * List, search, sort, and filter a zones' DNS records. */ export const dns$records$for$a$zone$list$dns$records = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$list$dns$records, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records`; const headers = { Accept: "application/json" }; @@ -68254,7 +68251,7 @@ export const dns$records$for$a$zone$list$dns$records = (apiClient * characters were used when creating the record. */ export const dns$records$for$a$zone$create$dns$record = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$create$dns$record, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68268,7 +68265,7 @@ export const dns$records$for$a$zone$create$dns$record = (apiClien }; /** DNS Record Details */ export const dns$records$for$a$zone$dns$record$details = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$dns$record$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { Accept: "application/json" }; @@ -68288,7 +68285,7 @@ export const dns$records$for$a$zone$dns$record$details = (apiClie * characters were used when creating the record. */ export const dns$records$for$a$zone$update$dns$record = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$update$dns$record, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68302,7 +68299,7 @@ export const dns$records$for$a$zone$update$dns$record = (apiClien }; /** Delete DNS Record */ export const dns$records$for$a$zone$delete$dns$record = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$delete$dns$record, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { Accept: "application/json" }; @@ -68322,7 +68319,7 @@ export const dns$records$for$a$zone$delete$dns$record = (apiClien * characters were used when creating the record. */ export const dns$records$for$a$zone$patch$dns$record = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$patch$dns$record, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68341,7 +68338,7 @@ export const dns$records$for$a$zone$patch$dns$record = (apiClient * See [the documentation](https://developers.cloudflare.com/dns/manage-dns-records/how-to/import-and-export/ "Import and export records") for more information. */ export const dns$records$for$a$zone$export$dns$records = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$export$dns$records, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/export\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/export`; const headers = { Accept: "text/plain" }; @@ -68358,7 +68355,7 @@ export const dns$records$for$a$zone$export$dns$records = (apiClie * See [the documentation](https://developers.cloudflare.com/dns/manage-dns-records/how-to/import-and-export/ "Import and export records") for more information. */ export const dns$records$for$a$zone$import$dns$records = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$import$dns$records, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/import\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/import`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -68375,7 +68372,7 @@ export const dns$records$for$a$zone$import$dns$records = (apiClie * Scan for common DNS records on your domain and automatically add them to your zone. Useful if you haven't updated your nameservers yet. */ export const dns$records$for$a$zone$scan$dns$records = (apiClient: ApiClient) => (params: Params$dns$records$for$a$zone$scan$dns$records, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/scan\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/scan`; const headers = { Accept: "application/json" }; @@ -68390,7 +68387,7 @@ export const dns$records$for$a$zone$scan$dns$records = (apiClient * Details about DNSSEC status and configuration. */ export const dnssec$dnssec$details = (apiClient: ApiClient) => (params: Params$dnssec$dnssec$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { Accept: "application/json" }; @@ -68405,7 +68402,7 @@ export const dnssec$dnssec$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$dnssec$delete$dnssec$records, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { Accept: "application/json" }; @@ -68420,7 +68417,7 @@ export const dnssec$delete$dnssec$records = (apiClient: ApiClient * Enable or disable DNSSEC. */ export const dnssec$edit$dnssec$status = (apiClient: ApiClient) => (params: Params$dnssec$edit$dnssec$status, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68437,7 +68434,7 @@ export const dnssec$edit$dnssec$status = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$zone$list$ip$access$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -68463,7 +68460,7 @@ export const ip$access$rules$for$a$zone$list$ip$access$rules = (a * Note: To create an IP Access rule that applies to multiple zones, refer to [IP Access rules for a user](#ip-access-rules-for-a-user) or [IP Access rules for an account](#ip-access-rules-for-an-account) as appropriate. */ export const ip$access$rules$for$a$zone$create$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$zone$create$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68479,10 +68476,10 @@ export const ip$access$rules$for$a$zone$create$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$zone$delete$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68496,10 +68493,10 @@ export const ip$access$rules$for$a$zone$delete$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$ip$access$rules$for$a$zone$update$an$ip$access$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68518,7 +68515,7 @@ export const ip$access$rules$for$a$zone$update$an$ip$access$rule = (apiClient: ApiClient) => (params: Params$waf$rule$groups$list$waf$rule$groups, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups`; const headers = { Accept: "application/json" }; @@ -68546,7 +68543,7 @@ export const waf$rule$groups$list$waf$rule$groups = (apiClient: A * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$rule$groups$get$a$waf$rule$group = (apiClient: ApiClient) => (params: Params$waf$rule$groups$get$a$waf$rule$group, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups/\${encodeURIComponent(params.parameter.group_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups/${encodeURIComponent(params.parameter.group_id)}`; const headers = { Accept: "application/json" }; @@ -68558,12 +68555,12 @@ export const waf$rule$groups$get$a$waf$rule$group = (apiClient: A }; /** * Update a WAF rule group - * Updates a WAF rule group. You can update the state (\`mode\` parameter) of a rule group. + * Updates a WAF rule group. You can update the state (`mode` parameter) of a rule group. * * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$rule$groups$update$a$waf$rule$group = (apiClient: ApiClient) => (params: Params$waf$rule$groups$update$a$waf$rule$group, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups/\${encodeURIComponent(params.parameter.group_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups/${encodeURIComponent(params.parameter.group_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68582,7 +68579,7 @@ export const waf$rule$groups$update$a$waf$rule$group = (apiClient * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$rules$list$waf$rules = (apiClient: ApiClient) => (params: Params$waf$rules$list$waf$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules`; const headers = { Accept: "application/json" }; @@ -68611,7 +68608,7 @@ export const waf$rules$list$waf$rules = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waf$rules$get$a$waf$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -68628,7 +68625,7 @@ export const waf$rules$get$a$waf$rule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waf$rules$update$a$waf$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68645,7 +68642,7 @@ export const waf$rules$update$a$waf$rule = (apiClient: ApiClient< * Retrieve whether the zone is subject to a zone hold, and metadata about the hold. */ export const zones$0$hold$get = (apiClient: ApiClient) => (params: Params$zones$0$hold$get, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68660,7 +68657,7 @@ export const zones$0$hold$get = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zones$0$hold$post, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68680,7 +68677,7 @@ export const zones$0$hold$post = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zones$0$hold$delete, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68699,7 +68696,7 @@ export const zones$0$hold$delete = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$logpush$datasets$dataset$fields, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/fields\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/fields`; const headers = { Accept: "application/json" }; @@ -68714,7 +68711,7 @@ export const get$zones$zone_identifier$logpush$datasets$dataset$fields = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$logpush$datasets$dataset$jobs, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/jobs\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/jobs`; const headers = { Accept: "application/json" }; @@ -68729,7 +68726,7 @@ export const get$zones$zone_identifier$logpush$datasets$dataset$jobs = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$logpush$edge$jobs, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/edge\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/edge`; const headers = { Accept: "application/json" }; @@ -68744,7 +68741,7 @@ export const get$zones$zone_identifier$logpush$edge$jobs = (apiCl * Creates a new Instant Logs job for a zone. */ export const post$zones$zone_identifier$logpush$edge$jobs = (apiClient: ApiClient) => (params: Params$post$zones$zone_identifier$logpush$edge$jobs, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/edge\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/edge`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68761,7 +68758,7 @@ export const post$zones$zone_identifier$logpush$edge$jobs = (apiC * Lists Logpush jobs for a zone. */ export const get$zones$zone_identifier$logpush$jobs = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$logpush$jobs, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs`; const headers = { Accept: "application/json" }; @@ -68776,7 +68773,7 @@ export const get$zones$zone_identifier$logpush$jobs = (apiClient: * Creates a new Logpush job for a zone. */ export const post$zones$zone_identifier$logpush$jobs = (apiClient: ApiClient) => (params: Params$post$zones$zone_identifier$logpush$jobs, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68793,7 +68790,7 @@ export const post$zones$zone_identifier$logpush$jobs = (apiClient * Gets the details of a Logpush job. */ export const get$zones$zone_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -68808,7 +68805,7 @@ export const get$zones$zone_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$put$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68825,7 +68822,7 @@ export const put$zones$zone_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$delete$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -68840,7 +68837,7 @@ export const delete$zones$zone_identifier$logpush$jobs$job_identifier = (apiClient: ApiClient) => (params: Params$post$zones$zone_identifier$logpush$ownership, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68857,7 +68854,7 @@ export const post$zones$zone_identifier$logpush$ownership = (apiC * Validates ownership challenge of the destination. */ export const post$zones$zone_identifier$logpush$ownership$validate = (apiClient: ApiClient) => (params: Params$post$zones$zone_identifier$logpush$ownership$validate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership/validate\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68874,7 +68871,7 @@ export const post$zones$zone_identifier$logpush$ownership$validate = (apiClient: ApiClient) => (params: Params$post$zones$zone_identifier$logpush$validate$destination$exists, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/destination/exists\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/destination/exists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68891,7 +68888,7 @@ export const post$zones$zone_identifier$logpush$validate$destination$exists = (apiClient: ApiClient) => (params: Params$post$zones$zone_identifier$logpush$validate$origin, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/origin\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68908,7 +68905,7 @@ export const post$zones$zone_identifier$logpush$validate$origin = (apiClient: ApiClient) => (params: Params$managed$transforms$list$managed$transforms, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/managed_headers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/managed_headers`; const headers = { Accept: "application/json" }; @@ -68923,7 +68920,7 @@ export const managed$transforms$list$managed$transforms = (apiCli * Updates the status of one or more Managed Transforms. */ export const managed$transforms$update$status$of$managed$transforms = (apiClient: ApiClient) => (params: Params$managed$transforms$update$status$of$managed$transforms, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/managed_headers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/managed_headers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68940,7 +68937,7 @@ export const managed$transforms$update$status$of$managed$transforms = (apiClient: ApiClient) => (params: Params$page$shield$get$page$shield$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield`; const headers = { Accept: "application/json" }; @@ -68955,7 +68952,7 @@ export const page$shield$get$page$shield$settings = (apiClient: A * Updates Page Shield settings. */ export const page$shield$update$page$shield$settings = (apiClient: ApiClient) => (params: Params$page$shield$update$page$shield$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68972,7 +68969,7 @@ export const page$shield$update$page$shield$settings = (apiClient * Lists all connections detected by Page Shield. */ export const page$shield$list$page$shield$connections = (apiClient: ApiClient) => (params: Params$page$shield$list$page$shield$connections, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections`; const headers = { Accept: "application/json" }; @@ -69002,7 +68999,7 @@ export const page$shield$list$page$shield$connections = (apiClien * Fetches a connection detected by Page Shield by connection ID. */ export const page$shield$get$a$page$shield$connection = (apiClient: ApiClient) => (params: Params$page$shield$get$a$page$shield$connection, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections/\${encodeURIComponent(params.parameter.connection_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections/${encodeURIComponent(params.parameter.connection_id)}`; const headers = { Accept: "application/json" }; @@ -69017,7 +69014,7 @@ export const page$shield$get$a$page$shield$connection = (apiClien * Lists all Page Shield policies. */ export const page$shield$list$page$shield$policies = (apiClient: ApiClient) => (params: Params$page$shield$list$page$shield$policies, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies`; const headers = { Accept: "application/json" }; @@ -69032,7 +69029,7 @@ export const page$shield$list$page$shield$policies = (apiClient: * Create a Page Shield policy. */ export const page$shield$create$a$page$shield$policy = (apiClient: ApiClient) => (params: Params$page$shield$create$a$page$shield$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69049,7 +69046,7 @@ export const page$shield$create$a$page$shield$policy = (apiClient * Fetches a Page Shield policy by ID. */ export const page$shield$get$a$page$shield$policy = (apiClient: ApiClient) => (params: Params$page$shield$get$a$page$shield$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -69064,7 +69061,7 @@ export const page$shield$get$a$page$shield$policy = (apiClient: A * Update a Page Shield policy by ID. */ export const page$shield$update$a$page$shield$policy = (apiClient: ApiClient) => (params: Params$page$shield$update$a$page$shield$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69081,7 +69078,7 @@ export const page$shield$update$a$page$shield$policy = (apiClient * Delete a Page Shield policy by ID. */ export const page$shield$delete$a$page$shield$policy = (apiClient: ApiClient) => (params: Params$page$shield$delete$a$page$shield$policy, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -69094,7 +69091,7 @@ export const page$shield$delete$a$page$shield$policy = (apiClient * Lists all scripts detected by Page Shield. */ export const page$shield$list$page$shield$scripts = (apiClient: ApiClient) => (params: Params$page$shield$list$page$shield$scripts, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts`; const headers = { Accept: "application/json" }; @@ -69125,7 +69122,7 @@ export const page$shield$list$page$shield$scripts = (apiClient: A * Fetches a script detected by Page Shield by script ID. */ export const page$shield$get$a$page$shield$script = (apiClient: ApiClient) => (params: Params$page$shield$get$a$page$shield$script, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts/\${encodeURIComponent(params.parameter.script_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts/${encodeURIComponent(params.parameter.script_id)}`; const headers = { Accept: "application/json" }; @@ -69140,7 +69137,7 @@ export const page$shield$get$a$page$shield$script = (apiClient: A * Fetches Page Rules in a zone. */ export const page$rules$list$page$rules = (apiClient: ApiClient) => (params: Params$page$rules$list$page$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules`; const headers = { Accept: "application/json" }; @@ -69162,7 +69159,7 @@ export const page$rules$list$page$rules = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$page$rules$create$a$page$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69179,7 +69176,7 @@ export const page$rules$create$a$page$rule = (apiClient: ApiClien * Fetches the details of a Page Rule. */ export const page$rules$get$a$page$rule = (apiClient: ApiClient) => (params: Params$page$rules$get$a$page$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { Accept: "application/json" }; @@ -69194,7 +69191,7 @@ export const page$rules$get$a$page$rule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$page$rules$update$a$page$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69211,7 +69208,7 @@ export const page$rules$update$a$page$rule = (apiClient: ApiClien * Deletes an existing Page Rule. */ export const page$rules$delete$a$page$rule = (apiClient: ApiClient) => (params: Params$page$rules$delete$a$page$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { Accept: "application/json" }; @@ -69226,7 +69223,7 @@ export const page$rules$delete$a$page$rule = (apiClient: ApiClien * Updates one or more fields of an existing Page Rule. */ export const page$rules$edit$a$page$rule = (apiClient: ApiClient) => (params: Params$page$rules$edit$a$page$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69243,7 +69240,7 @@ export const page$rules$edit$a$page$rule = (apiClient: ApiClient< * Returns a list of settings (and their details) that Page Rules can apply to matching requests. */ export const available$page$rules$settings$list$available$page$rules$settings = (apiClient: ApiClient) => (params: Params$available$page$rules$settings$list$available$page$rules$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/settings`; const headers = { Accept: "application/json" }; @@ -69258,7 +69255,7 @@ export const available$page$rules$settings$list$available$page$rules$settings = * Fetches all rulesets at the zone level. */ export const listZoneRulesets = (apiClient: ApiClient) => (params: Params$listZoneRulesets, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets`; const headers = { Accept: "application/json" }; @@ -69273,7 +69270,7 @@ export const listZoneRulesets = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$createZoneRuleset, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69290,7 +69287,7 @@ export const createZoneRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$getZoneRuleset, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { Accept: "application/json" }; @@ -69305,7 +69302,7 @@ export const getZoneRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$updateZoneRuleset, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69322,7 +69319,7 @@ export const updateZoneRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$deleteZoneRuleset, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -69335,7 +69332,7 @@ export const deleteZoneRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$createZoneRulesetRule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69352,7 +69349,7 @@ export const createZoneRulesetRule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$deleteZoneRulesetRule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -69367,7 +69364,7 @@ export const deleteZoneRulesetRule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$updateZoneRulesetRule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69384,7 +69381,7 @@ export const updateZoneRulesetRule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$listZoneRulesetVersions, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions`; const headers = { Accept: "application/json" }; @@ -69399,7 +69396,7 @@ export const listZoneRulesetVersions = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$getZoneRulesetVersion, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -69414,7 +69411,7 @@ export const getZoneRulesetVersion = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$deleteZoneRulesetVersion, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -69427,7 +69424,7 @@ export const deleteZoneRulesetVersion = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$getZoneEntrypointRuleset, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { Accept: "application/json" }; @@ -69442,7 +69439,7 @@ export const getZoneEntrypointRuleset = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$updateZoneEntrypointRuleset, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69459,7 +69456,7 @@ export const updateZoneEntrypointRuleset = (apiClient: ApiClient< * Fetches the versions of a zone entry point ruleset. */ export const listZoneEntrypointRulesetVersions = (apiClient: ApiClient) => (params: Params$listZoneEntrypointRulesetVersions, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions`; const headers = { Accept: "application/json" }; @@ -69474,7 +69471,7 @@ export const listZoneEntrypointRulesetVersions = (apiClient: ApiC * Fetches a specific version of a zone entry point ruleset. */ export const getZoneEntrypointRulesetVersion = (apiClient: ApiClient) => (params: Params$getZoneEntrypointRulesetVersion, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -69489,7 +69486,7 @@ export const getZoneEntrypointRulesetVersion = (apiClient: ApiCli * Available settings for your user in relation to a zone. */ export const zone$settings$get$all$zone$settings = (apiClient: ApiClient) => (params: Params$zone$settings$get$all$zone$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings`; const headers = { Accept: "application/json" }; @@ -69504,7 +69501,7 @@ export const zone$settings$get$all$zone$settings = (apiClient: Ap * Edit settings for a zone. */ export const zone$settings$edit$zone$settings$info = (apiClient: ApiClient) => (params: Params$zone$settings$edit$zone$settings$info, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69521,7 +69518,7 @@ export const zone$settings$edit$zone$settings$info = (apiClient: * Gets 0-RTT session resumption setting. */ export const zone$settings$get$0$rtt$session$resumption$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$0$rtt$session$resumption$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt`; const headers = { Accept: "application/json" }; @@ -69536,7 +69533,7 @@ export const zone$settings$get$0$rtt$session$resumption$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$0$rtt$session$resumption$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69553,7 +69550,7 @@ export const zone$settings$change$0$rtt$session$resumption$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$advanced$ddos$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/advanced_ddos\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/advanced_ddos`; const headers = { Accept: "application/json" }; @@ -69568,7 +69565,7 @@ export const zone$settings$get$advanced$ddos$setting = (apiClient * When enabled, Cloudflare serves limited copies of web pages available from the [Internet Archive's Wayback Machine](https://archive.org/web/) if your server is offline. Refer to [Always Online](https://developers.cloudflare.com/cache/about/always-online) for more information. */ export const zone$settings$get$always$online$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$always$online$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_online\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_online`; const headers = { Accept: "application/json" }; @@ -69583,7 +69580,7 @@ export const zone$settings$get$always$online$setting = (apiClient * When enabled, Cloudflare serves limited copies of web pages available from the [Internet Archive's Wayback Machine](https://archive.org/web/) if your server is offline. Refer to [Always Online](https://developers.cloudflare.com/cache/about/always-online) for more information. */ export const zone$settings$change$always$online$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$always$online$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_online\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_online`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69600,7 +69597,7 @@ export const zone$settings$change$always$online$setting = (apiCli * Reply to all requests for URLs that use "http" with a 301 redirect to the equivalent "https" URL. If you only want to redirect for a subset of requests, consider creating an "Always use HTTPS" page rule. */ export const zone$settings$get$always$use$https$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$always$use$https$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https`; const headers = { Accept: "application/json" }; @@ -69615,7 +69612,7 @@ export const zone$settings$get$always$use$https$setting = (apiCli * Reply to all requests for URLs that use "http" with a 301 redirect to the equivalent "https" URL. If you only want to redirect for a subset of requests, consider creating an "Always use HTTPS" page rule. */ export const zone$settings$change$always$use$https$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$always$use$https$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69632,7 +69629,7 @@ export const zone$settings$change$always$use$https$setting = (api * Enable the Automatic HTTPS Rewrites feature for this zone. */ export const zone$settings$get$automatic$https$rewrites$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$automatic$https$rewrites$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites`; const headers = { Accept: "application/json" }; @@ -69647,7 +69644,7 @@ export const zone$settings$get$automatic$https$rewrites$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$automatic$https$rewrites$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69666,7 +69663,7 @@ export const zone$settings$change$automatic$https$rewrites$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$automatic_platform_optimization$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization`; const headers = { Accept: "application/json" }; @@ -69683,7 +69680,7 @@ export const zone$settings$get$automatic_platform_optimization$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$automatic_platform_optimization$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69700,7 +69697,7 @@ export const zone$settings$change$automatic_platform_optimization$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$brotli$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/brotli\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/brotli`; const headers = { Accept: "application/json" }; @@ -69715,7 +69712,7 @@ export const zone$settings$get$brotli$setting = (apiClient: ApiCl * When the client requesting an asset supports the Brotli compression algorithm, Cloudflare will serve a Brotli compressed version of the asset. */ export const zone$settings$change$brotli$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$brotli$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/brotli\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/brotli`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69732,7 +69729,7 @@ export const zone$settings$change$brotli$setting = (apiClient: Ap * Browser Cache TTL (in seconds) specifies how long Cloudflare-cached resources will remain on your visitors' computers. Cloudflare will honor any larger times specified by your server. (https://support.cloudflare.com/hc/en-us/articles/200168276). */ export const zone$settings$get$browser$cache$ttl$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$browser$cache$ttl$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl`; const headers = { Accept: "application/json" }; @@ -69747,7 +69744,7 @@ export const zone$settings$get$browser$cache$ttl$setting = (apiCl * Browser Cache TTL (in seconds) specifies how long Cloudflare-cached resources will remain on your visitors' computers. Cloudflare will honor any larger times specified by your server. (https://support.cloudflare.com/hc/en-us/articles/200168276). */ export const zone$settings$change$browser$cache$ttl$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$browser$cache$ttl$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69764,7 +69761,7 @@ export const zone$settings$change$browser$cache$ttl$setting = (ap * Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors). (https://support.cloudflare.com/hc/en-us/articles/200170086). */ export const zone$settings$get$browser$check$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$browser$check$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check`; const headers = { Accept: "application/json" }; @@ -69779,7 +69776,7 @@ export const zone$settings$get$browser$check$setting = (apiClient * Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors). (https://support.cloudflare.com/hc/en-us/articles/200170086). */ export const zone$settings$change$browser$check$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$browser$check$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69796,7 +69793,7 @@ export const zone$settings$change$browser$check$setting = (apiCli * Cache Level functions based off the setting level. The basic setting will cache most static resources (i.e., css, images, and JavaScript). The simplified setting will ignore the query string when delivering a cached resource. The aggressive setting will cache all static resources, including ones with a query string. (https://support.cloudflare.com/hc/en-us/articles/200168256). */ export const zone$settings$get$cache$level$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$cache$level$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level`; const headers = { Accept: "application/json" }; @@ -69811,7 +69808,7 @@ export const zone$settings$get$cache$level$setting = (apiClient: * Cache Level functions based off the setting level. The basic setting will cache most static resources (i.e., css, images, and JavaScript). The simplified setting will ignore the query string when delivering a cached resource. The aggressive setting will cache all static resources, including ones with a query string. (https://support.cloudflare.com/hc/en-us/articles/200168256). */ export const zone$settings$change$cache$level$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$cache$level$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69828,7 +69825,7 @@ export const zone$settings$change$cache$level$setting = (apiClien * Specify how long a visitor is allowed access to your site after successfully completing a challenge (such as a CAPTCHA). After the TTL has expired the visitor will have to complete a new challenge. We recommend a 15 - 45 minute setting and will attempt to honor any setting above 45 minutes. (https://support.cloudflare.com/hc/en-us/articles/200170136). */ export const zone$settings$get$challenge$ttl$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$challenge$ttl$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl`; const headers = { Accept: "application/json" }; @@ -69843,7 +69840,7 @@ export const zone$settings$get$challenge$ttl$setting = (apiClient * Specify how long a visitor is allowed access to your site after successfully completing a challenge (such as a CAPTCHA). After the TTL has expired the visitor will have to complete a new challenge. We recommend a 15 - 45 minute setting and will attempt to honor any setting above 45 minutes. (https://support.cloudflare.com/hc/en-us/articles/200170136). */ export const zone$settings$change$challenge$ttl$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$challenge$ttl$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69860,7 +69857,7 @@ export const zone$settings$change$challenge$ttl$setting = (apiCli * Gets ciphers setting. */ export const zone$settings$get$ciphers$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$ciphers$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers`; const headers = { Accept: "application/json" }; @@ -69875,7 +69872,7 @@ export const zone$settings$get$ciphers$setting = (apiClient: ApiC * Changes ciphers setting. */ export const zone$settings$change$ciphers$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$ciphers$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69892,7 +69889,7 @@ export const zone$settings$change$ciphers$setting = (apiClient: A * Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away. Once entered, development mode will last for 3 hours and then automatically toggle off. */ export const zone$settings$get$development$mode$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$development$mode$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode`; const headers = { Accept: "application/json" }; @@ -69907,7 +69904,7 @@ export const zone$settings$get$development$mode$setting = (apiCli * Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away. Once entered, development mode will last for 3 hours and then automatically toggle off. */ export const zone$settings$change$development$mode$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$development$mode$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69921,10 +69918,10 @@ export const zone$settings$change$development$mode$setting = (api }; /** * Get Early Hints setting - * When enabled, Cloudflare will attempt to speed up overall page loads by serving \`103\` responses with \`Link\` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. + * When enabled, Cloudflare will attempt to speed up overall page loads by serving `103` responses with `Link` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. */ export const zone$settings$get$early$hints$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$early$hints$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints`; const headers = { Accept: "application/json" }; @@ -69936,10 +69933,10 @@ export const zone$settings$get$early$hints$setting = (apiClient: }; /** * Change Early Hints setting - * When enabled, Cloudflare will attempt to speed up overall page loads by serving \`103\` responses with \`Link\` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. + * When enabled, Cloudflare will attempt to speed up overall page loads by serving `103` responses with `Link` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. */ export const zone$settings$change$early$hints$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$early$hints$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69956,7 +69953,7 @@ export const zone$settings$change$early$hints$setting = (apiClien * Encrypt email adresses on your web page from bots, while keeping them visible to humans. (https://support.cloudflare.com/hc/en-us/articles/200170016). */ export const zone$settings$get$email$obfuscation$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$email$obfuscation$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation`; const headers = { Accept: "application/json" }; @@ -69971,7 +69968,7 @@ export const zone$settings$get$email$obfuscation$setting = (apiCl * Encrypt email adresses on your web page from bots, while keeping them visible to humans. (https://support.cloudflare.com/hc/en-us/articles/200170016). */ export const zone$settings$change$email$obfuscation$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$email$obfuscation$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69989,7 +69986,7 @@ export const zone$settings$change$email$obfuscation$setting = (ap * boost performance, and enhance user privacy. Refer to the Cloudflare Fonts documentation for more information. */ export const zone$settings$get$fonts$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$fonts$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/fonts\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/fonts`; const headers = { Accept: "application/json" }; @@ -70005,7 +70002,7 @@ export const zone$settings$get$fonts$setting = (apiClient: ApiCli * boost performance, and enhance user privacy. Refer to the Cloudflare Fonts documentation for more information. */ export const zone$settings$change$fonts$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$fonts$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/fonts\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/fonts`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70022,7 +70019,7 @@ export const zone$settings$change$fonts$setting = (apiClient: Api * Gets HTTP/2 Edge Prioritization setting. */ export const zone$settings$get$h2_prioritization$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$h2_prioritization$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization`; const headers = { Accept: "application/json" }; @@ -70037,7 +70034,7 @@ export const zone$settings$get$h2_prioritization$setting = (apiCl * Gets HTTP/2 Edge Prioritization setting. */ export const zone$settings$change$h2_prioritization$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$h2_prioritization$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70054,7 +70051,7 @@ export const zone$settings$change$h2_prioritization$setting = (ap * When enabled, the Hotlink Protection option ensures that other sites cannot suck up your bandwidth by building pages that use images hosted on your site. Anytime a request for an image on your site hits Cloudflare, we check to ensure that it's not another site requesting them. People will still be able to download and view images from your page, but other sites won't be able to steal them for use on their own pages. (https://support.cloudflare.com/hc/en-us/articles/200170026). */ export const zone$settings$get$hotlink$protection$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$hotlink$protection$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection`; const headers = { Accept: "application/json" }; @@ -70069,7 +70066,7 @@ export const zone$settings$get$hotlink$protection$setting = (apiC * When enabled, the Hotlink Protection option ensures that other sites cannot suck up your bandwidth by building pages that use images hosted on your site. Anytime a request for an image on your site hits Cloudflare, we check to ensure that it's not another site requesting them. People will still be able to download and view images from your page, but other sites won't be able to steal them for use on their own pages. (https://support.cloudflare.com/hc/en-us/articles/200170026). */ export const zone$settings$change$hotlink$protection$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$hotlink$protection$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70086,7 +70083,7 @@ export const zone$settings$change$hotlink$protection$setting = (a * Value of the HTTP2 setting. */ export const zone$settings$get$h$t$t$p$2$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$h$t$t$p$2$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http2\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http2`; const headers = { Accept: "application/json" }; @@ -70101,7 +70098,7 @@ export const zone$settings$get$h$t$t$p$2$setting = (apiClient: Ap * Value of the HTTP2 setting. */ export const zone$settings$change$h$t$t$p$2$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$h$t$t$p$2$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http2\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http2`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70118,7 +70115,7 @@ export const zone$settings$change$h$t$t$p$2$setting = (apiClient: * Value of the HTTP3 setting. */ export const zone$settings$get$h$t$t$p$3$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$h$t$t$p$3$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http3\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http3`; const headers = { Accept: "application/json" }; @@ -70133,7 +70130,7 @@ export const zone$settings$get$h$t$t$p$3$setting = (apiClient: Ap * Value of the HTTP3 setting. */ export const zone$settings$change$h$t$t$p$3$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$h$t$t$p$3$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http3\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http3`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70153,7 +70150,7 @@ export const zone$settings$change$h$t$t$p$3$setting = (apiClient: * for more information. */ export const zone$settings$get$image_resizing$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$image_resizing$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing`; const headers = { Accept: "application/json" }; @@ -70171,7 +70168,7 @@ export const zone$settings$get$image_resizing$setting = (apiClien * for more information. */ export const zone$settings$change$image_resizing$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$image_resizing$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70188,7 +70185,7 @@ export const zone$settings$change$image_resizing$setting = (apiCl * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and pass the country code to you. (https://support.cloudflare.com/hc/en-us/articles/200168236). */ export const zone$settings$get$ip$geolocation$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$ip$geolocation$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation`; const headers = { Accept: "application/json" }; @@ -70203,7 +70200,7 @@ export const zone$settings$get$ip$geolocation$setting = (apiClien * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and pass the country code to you. (https://support.cloudflare.com/hc/en-us/articles/200168236). */ export const zone$settings$change$ip$geolocation$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$ip$geolocation$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70220,7 +70217,7 @@ export const zone$settings$change$ip$geolocation$setting = (apiCl * Enable IPv6 on all subdomains that are Cloudflare enabled. (https://support.cloudflare.com/hc/en-us/articles/200168586). */ export const zone$settings$get$i$pv6$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$i$pv6$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6`; const headers = { Accept: "application/json" }; @@ -70235,7 +70232,7 @@ export const zone$settings$get$i$pv6$setting = (apiClient: ApiCli * Enable IPv6 on all subdomains that are Cloudflare enabled. (https://support.cloudflare.com/hc/en-us/articles/200168586). */ export const zone$settings$change$i$pv6$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$i$pv6$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70252,7 +70249,7 @@ export const zone$settings$change$i$pv6$setting = (apiClient: Api * Gets Minimum TLS Version setting. */ export const zone$settings$get$minimum$tls$version$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$minimum$tls$version$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version`; const headers = { Accept: "application/json" }; @@ -70267,7 +70264,7 @@ export const zone$settings$get$minimum$tls$version$setting = (api * Changes Minimum TLS Version setting. */ export const zone$settings$change$minimum$tls$version$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$minimum$tls$version$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70284,7 +70281,7 @@ export const zone$settings$change$minimum$tls$version$setting = ( * Automatically minify certain assets for your website. Refer to [Using Cloudflare Auto Minify](https://support.cloudflare.com/hc/en-us/articles/200168196) for more information. */ export const zone$settings$get$minify$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$minify$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/minify\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/minify`; const headers = { Accept: "application/json" }; @@ -70299,7 +70296,7 @@ export const zone$settings$get$minify$setting = (apiClient: ApiCl * Automatically minify certain assets for your website. Refer to [Using Cloudflare Auto Minify](https://support.cloudflare.com/hc/en-us/articles/200168196) for more information. */ export const zone$settings$change$minify$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$minify$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/minify\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/minify`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70318,7 +70315,7 @@ export const zone$settings$change$minify$setting = (apiClient: Ap * for more information. */ export const zone$settings$get$mirage$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$mirage$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mirage\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mirage`; const headers = { Accept: "application/json" }; @@ -70333,7 +70330,7 @@ export const zone$settings$get$mirage$setting = (apiClient: ApiCl * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/mirage2-solving-mobile-speed) for more information. */ export const zone$settings$change$web$mirage$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$web$mirage$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mirage\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mirage`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70350,7 +70347,7 @@ export const zone$settings$change$web$mirage$setting = (apiClient * Automatically redirect visitors on mobile devices to a mobile-optimized subdomain. Refer to [Understanding Cloudflare Mobile Redirect](https://support.cloudflare.com/hc/articles/200168336) for more information. */ export const zone$settings$get$mobile$redirect$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$mobile$redirect$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect`; const headers = { Accept: "application/json" }; @@ -70365,7 +70362,7 @@ export const zone$settings$get$mobile$redirect$setting = (apiClie * Automatically redirect visitors on mobile devices to a mobile-optimized subdomain. Refer to [Understanding Cloudflare Mobile Redirect](https://support.cloudflare.com/hc/articles/200168336) for more information. */ export const zone$settings$change$mobile$redirect$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$mobile$redirect$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70382,7 +70379,7 @@ export const zone$settings$change$mobile$redirect$setting = (apiC * Enable Network Error Logging reporting on your zone. (Beta) */ export const zone$settings$get$nel$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$nel$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/nel\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/nel`; const headers = { Accept: "application/json" }; @@ -70397,7 +70394,7 @@ export const zone$settings$get$nel$setting = (apiClient: ApiClien * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/nel-solving-mobile-speed) for more information. */ export const zone$settings$change$nel$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$nel$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/nel\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/nel`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70414,7 +70411,7 @@ export const zone$settings$change$nel$setting = (apiClient: ApiCl * Gets Opportunistic Encryption setting. */ export const zone$settings$get$opportunistic$encryption$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$opportunistic$encryption$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption`; const headers = { Accept: "application/json" }; @@ -70429,7 +70426,7 @@ export const zone$settings$get$opportunistic$encryption$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$opportunistic$encryption$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70446,7 +70443,7 @@ export const zone$settings$change$opportunistic$encryption$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$opportunistic$onion$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion`; const headers = { Accept: "application/json" }; @@ -70461,7 +70458,7 @@ export const zone$settings$get$opportunistic$onion$setting = (api * Add an Alt-Svc header to all legitimate requests from Tor, allowing the connection to use our onion services instead of exit nodes. */ export const zone$settings$change$opportunistic$onion$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$opportunistic$onion$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70479,7 +70476,7 @@ export const zone$settings$change$opportunistic$onion$setting = ( * zones also on Cloudflare. */ export const zone$settings$get$orange_to_orange$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$orange_to_orange$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange`; const headers = { Accept: "application/json" }; @@ -70495,7 +70492,7 @@ export const zone$settings$get$orange_to_orange$setting = (apiCli * zones also on Cloudflare. */ export const zone$settings$change$orange_to_orange$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$orange_to_orange$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70512,7 +70509,7 @@ export const zone$settings$change$orange_to_orange$setting = (api * Cloudflare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default Cloudflare error page. This does not apply to 522 errors and is limited to Enterprise Zones. */ export const zone$settings$get$enable$error$pages$on$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$enable$error$pages$on$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru`; const headers = { Accept: "application/json" }; @@ -70527,7 +70524,7 @@ export const zone$settings$get$enable$error$pages$on$setting = (a * Cloudflare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default Cloudflare error page. This does not apply to 522 errors and is limited to Enterprise Zones. */ export const zone$settings$change$enable$error$pages$on$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$enable$error$pages$on$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70546,7 +70543,7 @@ export const zone$settings$change$enable$error$pages$on$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$polish$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/polish\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/polish`; const headers = { Accept: "application/json" }; @@ -70561,7 +70558,7 @@ export const zone$settings$get$polish$setting = (apiClient: ApiCl * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/polish-solving-mobile-speed) for more information. */ export const zone$settings$change$polish$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$polish$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/polish\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/polish`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70578,7 +70575,7 @@ export const zone$settings$change$polish$setting = (apiClient: Ap * Cloudflare will prefetch any URLs that are included in the response headers. This is limited to Enterprise Zones. */ export const zone$settings$get$prefetch$preload$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$prefetch$preload$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload`; const headers = { Accept: "application/json" }; @@ -70593,7 +70590,7 @@ export const zone$settings$get$prefetch$preload$setting = (apiCli * Cloudflare will prefetch any URLs that are included in the response headers. This is limited to Enterprise Zones. */ export const zone$settings$change$prefetch$preload$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$prefetch$preload$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70610,7 +70607,7 @@ export const zone$settings$change$prefetch$preload$setting = (api * Maximum time between two read operations from origin. */ export const zone$settings$get$proxy_read_timeout$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$proxy_read_timeout$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout`; const headers = { Accept: "application/json" }; @@ -70625,7 +70622,7 @@ export const zone$settings$get$proxy_read_timeout$setting = (apiC * Maximum time between two read operations from origin. */ export const zone$settings$change$proxy_read_timeout$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$proxy_read_timeout$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70642,7 +70639,7 @@ export const zone$settings$change$proxy_read_timeout$setting = (a * Value of the Pseudo IPv4 setting. */ export const zone$settings$get$pseudo$i$pv4$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$pseudo$i$pv4$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4`; const headers = { Accept: "application/json" }; @@ -70657,7 +70654,7 @@ export const zone$settings$get$pseudo$i$pv4$setting = (apiClient: * Value of the Pseudo IPv4 setting. */ export const zone$settings$change$pseudo$i$pv4$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$pseudo$i$pv4$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70674,7 +70671,7 @@ export const zone$settings$change$pseudo$i$pv4$setting = (apiClie * Enables or disables buffering of responses from the proxied server. Cloudflare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks. By default, the proxied server streams directly and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ export const zone$settings$get$response$buffering$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$response$buffering$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering`; const headers = { Accept: "application/json" }; @@ -70689,7 +70686,7 @@ export const zone$settings$get$response$buffering$setting = (apiC * Enables or disables buffering of responses from the proxied server. Cloudflare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks. By default, the proxied server streams directly and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ export const zone$settings$change$response$buffering$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$response$buffering$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70707,7 +70704,7 @@ export const zone$settings$change$response$buffering$setting = (a * that prioritises rendering your content while loading your site's * Javascript asynchronously. Turning on Rocket Loader will immediately * improve a web page's rendering time sometimes measured as Time to First - * Paint (TTFP), and also the \`window.onload\` time (assuming there is + * Paint (TTFP), and also the `window.onload` time (assuming there is * JavaScript on the page). This can have a positive impact on your Google * search ranking. When turned on, Rocket Loader will automatically defer * the loading of all Javascript referenced in your HTML, with no @@ -70716,7 +70713,7 @@ export const zone$settings$change$response$buffering$setting = (a * for more information. */ export const zone$settings$get$rocket_loader$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$rocket_loader$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader`; const headers = { Accept: "application/json" }; @@ -70732,7 +70729,7 @@ export const zone$settings$get$rocket_loader$setting = (apiClient * that prioritises rendering your content while loading your site's * Javascript asynchronously. Turning on Rocket Loader will immediately * improve a web page's rendering time sometimes measured as Time to First - * Paint (TTFP), and also the \`window.onload\` time (assuming there is + * Paint (TTFP), and also the `window.onload` time (assuming there is * JavaScript on the page). This can have a positive impact on your Google * search ranking. When turned on, Rocket Loader will automatically defer * the loading of all Javascript referenced in your HTML, with no @@ -70741,7 +70738,7 @@ export const zone$settings$get$rocket_loader$setting = (apiClient * for more information. */ export const zone$settings$change$rocket_loader$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$rocket_loader$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70758,7 +70755,7 @@ export const zone$settings$change$rocket_loader$setting = (apiCli * Cloudflare security header for a zone. */ export const zone$settings$get$security$header$$$hsts$$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$security$header$$$hsts$$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_header\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_header`; const headers = { Accept: "application/json" }; @@ -70773,7 +70770,7 @@ export const zone$settings$get$security$header$$$hsts$$setting = * Cloudflare security header for a zone. */ export const zone$settings$change$security$header$$$hsts$$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$security$header$$$hsts$$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_header\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_header`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70790,7 +70787,7 @@ export const zone$settings$change$security$header$$$hsts$$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$security$level$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_level\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_level`; const headers = { Accept: "application/json" }; @@ -70805,7 +70802,7 @@ export const zone$settings$get$security$level$setting = (apiClien * Choose the appropriate security profile for your website, which will automatically adjust each of the security settings. If you choose to customize an individual security setting, the profile will become Custom. (https://support.cloudflare.com/hc/en-us/articles/200170056). */ export const zone$settings$change$security$level$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$security$level$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_level\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_level`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70822,7 +70819,7 @@ export const zone$settings$change$security$level$setting = (apiCl * If there is sensitive content on your website that you want visible to real visitors, but that you want to hide from suspicious visitors, all you have to do is wrap the content with Cloudflare SSE tags. Wrap any content that you want to be excluded from suspicious visitors in the following SSE tags: . For example: Bad visitors won't see my phone number, 555-555-5555 . Note: SSE only will work with HTML. If you have HTML minification enabled, you won't see the SSE tags in your HTML source when it's served through Cloudflare. SSE will still function in this case, as Cloudflare's HTML minification and SSE functionality occur on-the-fly as the resource moves through our network to the visitor's computer. (https://support.cloudflare.com/hc/en-us/articles/200170036). */ export const zone$settings$get$server$side$exclude$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$server$side$exclude$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude`; const headers = { Accept: "application/json" }; @@ -70837,7 +70834,7 @@ export const zone$settings$get$server$side$exclude$setting = (api * If there is sensitive content on your website that you want visible to real visitors, but that you want to hide from suspicious visitors, all you have to do is wrap the content with Cloudflare SSE tags. Wrap any content that you want to be excluded from suspicious visitors in the following SSE tags: . For example: Bad visitors won't see my phone number, 555-555-5555 . Note: SSE only will work with HTML. If you have HTML minification enabled, you won't see the SSE tags in your HTML source when it's served through Cloudflare. SSE will still function in this case, as Cloudflare's HTML minification and SSE functionality occur on-the-fly as the resource moves through our network to the visitor's computer. (https://support.cloudflare.com/hc/en-us/articles/200170036). */ export const zone$settings$change$server$side$exclude$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$server$side$exclude$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70854,7 +70851,7 @@ export const zone$settings$change$server$side$exclude$setting = ( * Cloudflare will treat files with the same query strings as the same file in cache, regardless of the order of the query strings. This is limited to Enterprise Zones. */ export const zone$settings$get$enable$query$string$sort$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$enable$query$string$sort$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache`; const headers = { Accept: "application/json" }; @@ -70869,7 +70866,7 @@ export const zone$settings$get$enable$query$string$sort$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$enable$query$string$sort$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70886,7 +70883,7 @@ export const zone$settings$change$enable$query$string$sort$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$ssl$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl`; const headers = { Accept: "application/json" }; @@ -70901,7 +70898,7 @@ export const zone$settings$get$ssl$setting = (apiClient: ApiClien * SSL encrypts your visitor's connection and safeguards credit card numbers and other personal data to and from your website. SSL can take up to 5 minutes to fully activate. Requires Cloudflare active on your root domain or www domain. Off: no SSL between the visitor and Cloudflare, and no SSL between Cloudflare and your web server (all HTTP traffic). Flexible: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, but no SSL between Cloudflare and your web server. You don't need to have an SSL cert on your web server, but your vistors will still see the site as being HTTPS enabled. Full: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have your own SSL cert or self-signed cert at the very least. Full (Strict): SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have a valid SSL certificate installed on your web server. This certificate must be signed by a certificate authority, have an expiration date in the future, and respond for the request domain name (hostname). (https://support.cloudflare.com/hc/en-us/articles/200170416). */ export const zone$settings$change$ssl$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$ssl$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70920,7 +70917,7 @@ export const zone$settings$change$ssl$setting = (apiClient: ApiCl * your origin servers support. */ export const zone$settings$get$ssl_recommender$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$ssl_recommender$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender`; const headers = { Accept: "application/json" }; @@ -70937,7 +70934,7 @@ export const zone$settings$get$ssl_recommender$setting = (apiClie * your origin servers support. */ export const zone$settings$change$ssl_recommender$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$ssl_recommender$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70954,7 +70951,7 @@ export const zone$settings$change$ssl_recommender$setting = (apiC * Gets TLS 1.3 setting enabled for a zone. */ export const zone$settings$get$tls$1$$3$setting$enabled$for$a$zone = (apiClient: ApiClient) => (params: Params$zone$settings$get$tls$1$$3$setting$enabled$for$a$zone, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3`; const headers = { Accept: "application/json" }; @@ -70969,7 +70966,7 @@ export const zone$settings$get$tls$1$$3$setting$enabled$for$a$zone = (apiClient: ApiClient) => (params: Params$zone$settings$change$tls$1$$3$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70986,7 +70983,7 @@ export const zone$settings$change$tls$1$$3$setting = (apiClient: * TLS Client Auth requires Cloudflare to connect to your origin server using a client certificate (Enterprise Only). */ export const zone$settings$get$tls$client$auth$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$tls$client$auth$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth`; const headers = { Accept: "application/json" }; @@ -71001,7 +70998,7 @@ export const zone$settings$get$tls$client$auth$setting = (apiClie * TLS Client Auth requires Cloudflare to connect to your origin server using a client certificate (Enterprise Only). */ export const zone$settings$change$tls$client$auth$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$tls$client$auth$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71018,7 +71015,7 @@ export const zone$settings$change$tls$client$auth$setting = (apiC * Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin. This is limited to Enterprise Zones. */ export const zone$settings$get$true$client$ip$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$true$client$ip$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header`; const headers = { Accept: "application/json" }; @@ -71033,7 +71030,7 @@ export const zone$settings$get$true$client$ip$setting = (apiClien * Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin. This is limited to Enterprise Zones. */ export const zone$settings$change$true$client$ip$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$true$client$ip$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71050,7 +71047,7 @@ export const zone$settings$change$true$client$ip$setting = (apiCl * The WAF examines HTTP requests to your website. It inspects both GET and POST requests and applies rules to help filter out illegitimate traffic from legitimate website visitors. The Cloudflare WAF inspects website addresses or URLs to detect anything out of the ordinary. If the Cloudflare WAF determines suspicious user behavior, then the WAF will 'challenge' the web visitor with a page that asks them to submit a CAPTCHA successfully to continue their action. If the challenge is failed, the action will be stopped. What this means is that Cloudflare's WAF will block any traffic identified as illegitimate before it reaches your origin web server. (https://support.cloudflare.com/hc/en-us/articles/200172016). */ export const zone$settings$get$web$application$firewall$$$waf$$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$web$application$firewall$$$waf$$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/waf\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/waf`; const headers = { Accept: "application/json" }; @@ -71065,7 +71062,7 @@ export const zone$settings$get$web$application$firewall$$$waf$$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$web$application$firewall$$$waf$$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/waf\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/waf`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71082,7 +71079,7 @@ export const zone$settings$change$web$application$firewall$$$waf$$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$web$p$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/webp\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/webp`; const headers = { Accept: "application/json" }; @@ -71097,7 +71094,7 @@ export const zone$settings$get$web$p$setting = (apiClient: ApiCli * When the client requesting the image supports the WebP image codec, and WebP offers a performance advantage over the original image format, Cloudflare will serve a WebP version of the original image. */ export const zone$settings$change$web$p$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$web$p$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/webp\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/webp`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71114,7 +71111,7 @@ export const zone$settings$change$web$p$setting = (apiClient: Api * Gets Websockets setting. For more information about Websockets, please refer to [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ export const zone$settings$get$web$sockets$setting = (apiClient: ApiClient) => (params: Params$zone$settings$get$web$sockets$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/websockets\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/websockets`; const headers = { Accept: "application/json" }; @@ -71129,7 +71126,7 @@ export const zone$settings$get$web$sockets$setting = (apiClient: * Changes Websockets setting. For more information about Websockets, please refer to [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ export const zone$settings$change$web$sockets$setting = (apiClient: ApiClient) => (params: Params$zone$settings$change$web$sockets$setting, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/websockets\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/websockets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71146,7 +71143,7 @@ export const zone$settings$change$web$sockets$setting = (apiClien * Gets latest Zaraz configuration for a zone. It can be preview or published configuration, whichever was the last updated. Secret variables values will not be included. */ export const get$zones$zone_identifier$zaraz$config = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$zaraz$config, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config`; const headers = { Accept: "application/json" }; @@ -71161,7 +71158,7 @@ export const get$zones$zone_identifier$zaraz$config = (apiClient: * Updates Zaraz configuration for a zone. */ export const put$zones$zone_identifier$zaraz$config = (apiClient: ApiClient) => (params: Params$put$zones$zone_identifier$zaraz$config, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71178,7 +71175,7 @@ export const put$zones$zone_identifier$zaraz$config = (apiClient: * Gets default Zaraz configuration for a zone. */ export const get$zones$zone_identifier$zaraz$default = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$zaraz$default, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/default\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/default`; const headers = { Accept: "application/json" }; @@ -71193,7 +71190,7 @@ export const get$zones$zone_identifier$zaraz$default = (apiClient * Exports full current published Zaraz configuration for a zone, secret variables included. */ export const get$zones$zone_identifier$zaraz$export = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$zaraz$export, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/export\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/export`; const headers = { Accept: "application/json" }; @@ -71208,7 +71205,7 @@ export const get$zones$zone_identifier$zaraz$export = (apiClient: * Lists a history of published Zaraz configuration records for a zone. */ export const get$zones$zone_identifier$zaraz$history = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$zaraz$history, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history`; const headers = { Accept: "application/json" }; @@ -71230,7 +71227,7 @@ export const get$zones$zone_identifier$zaraz$history = (apiClient * Restores a historical published Zaraz configuration by ID for a zone. */ export const put$zones$zone_identifier$zaraz$history = (apiClient: ApiClient) => (params: Params$put$zones$zone_identifier$zaraz$history, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71247,7 +71244,7 @@ export const put$zones$zone_identifier$zaraz$history = (apiClient * Gets a history of published Zaraz configurations by ID(s) for a zone. */ export const get$zones$zone_identifier$zaraz$config$history = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$zaraz$config$history, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history/configs\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history/configs`; const headers = { Accept: "application/json" }; @@ -71266,7 +71263,7 @@ export const get$zones$zone_identifier$zaraz$config$history = (ap * Publish current Zaraz preview configuration for a zone. */ export const post$zones$zone_identifier$zaraz$publish = (apiClient: ApiClient) => (params: Params$post$zones$zone_identifier$zaraz$publish, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/publish\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/publish`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71283,7 +71280,7 @@ export const post$zones$zone_identifier$zaraz$publish = (apiClien * Gets Zaraz workflow for a zone. */ export const get$zones$zone_identifier$zaraz$workflow = (apiClient: ApiClient) => (params: Params$get$zones$zone_identifier$zaraz$workflow, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow`; const headers = { Accept: "application/json" }; @@ -71298,7 +71295,7 @@ export const get$zones$zone_identifier$zaraz$workflow = (apiClien * Updates Zaraz workflow for a zone. */ export const put$zones$zone_identifier$zaraz$workflow = (apiClient: ApiClient) => (params: Params$put$zones$zone_identifier$zaraz$workflow, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71315,7 +71312,7 @@ export const put$zones$zone_identifier$zaraz$workflow = (apiClien * Retrieves quota for all plans, as well as the current zone quota. */ export const speed$get$availabilities = (apiClient: ApiClient) => (params: Params$speed$get$availabilities, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/availabilities\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/availabilities`; const headers = { Accept: "application/json" }; @@ -71330,7 +71327,7 @@ export const speed$get$availabilities = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$list$pages, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages`; const headers = { Accept: "application/json" }; @@ -71345,7 +71342,7 @@ export const speed$list$pages = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$list$test$history, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { Accept: "application/json" }; @@ -71366,7 +71363,7 @@ export const speed$list$test$history = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$create$test, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71383,7 +71380,7 @@ export const speed$create$test = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$delete$tests, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { Accept: "application/json" }; @@ -71402,7 +71399,7 @@ export const speed$delete$tests = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$get$test, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -71417,7 +71414,7 @@ export const speed$get$test = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$list$page$trend, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/trend\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/trend`; const headers = { Accept: "application/json" }; @@ -71441,7 +71438,7 @@ export const speed$list$page$trend = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$get$scheduled$test, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71460,7 +71457,7 @@ export const speed$get$scheduled$test = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$speed$create$scheduled$test, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71479,7 +71476,7 @@ export const speed$create$scheduled$test = (apiClient: ApiClient< * Deletes a scheduled test for a page. */ export const speed$delete$test$schedule = (apiClient: ApiClient) => (params: Params$speed$delete$test$schedule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71498,7 +71495,7 @@ export const speed$delete$test$schedule = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$url$normalization$get$url$normalization$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/url_normalization\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/url_normalization`; const headers = { Accept: "application/json" }; @@ -71513,7 +71510,7 @@ export const url$normalization$get$url$normalization$settings = ( * Updates the URL normalization settings. */ export const url$normalization$update$url$normalization$settings = (apiClient: ApiClient) => (params: Params$url$normalization$update$url$normalization$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/url_normalization\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/url_normalization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71527,7 +71524,7 @@ export const url$normalization$update$url$normalization$settings = (apiClient: ApiClient) => (params: Params$worker$filters$$$deprecated$$list$filters, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters`; const headers = { Accept: "application/json" }; @@ -71539,7 +71536,7 @@ export const worker$filters$$$deprecated$$list$filters = (apiClie }; /** Create Filter */ export const worker$filters$$$deprecated$$create$filter = (apiClient: ApiClient) => (params: Params$worker$filters$$$deprecated$$create$filter, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71553,7 +71550,7 @@ export const worker$filters$$$deprecated$$create$filter = (apiCli }; /** Update Filter */ export const worker$filters$$$deprecated$$update$filter = (apiClient: ApiClient) => (params: Params$worker$filters$$$deprecated$$update$filter, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters/\${encodeURIComponent(params.parameter.filter_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters/${encodeURIComponent(params.parameter.filter_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71567,7 +71564,7 @@ export const worker$filters$$$deprecated$$update$filter = (apiCli }; /** Delete Filter */ export const worker$filters$$$deprecated$$delete$filter = (apiClient: ApiClient) => (params: Params$worker$filters$$$deprecated$$delete$filter, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters/\${encodeURIComponent(params.parameter.filter_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters/${encodeURIComponent(params.parameter.filter_id)}`; const headers = { Accept: "application/json" }; @@ -71582,7 +71579,7 @@ export const worker$filters$$$deprecated$$delete$filter = (apiCli * Returns routes for a zone. */ export const worker$routes$list$routes = (apiClient: ApiClient) => (params: Params$worker$routes$list$routes, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes`; const headers = { Accept: "application/json" }; @@ -71597,7 +71594,7 @@ export const worker$routes$list$routes = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$routes$create$route, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71614,7 +71611,7 @@ export const worker$routes$create$route = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$routes$get$route, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -71629,7 +71626,7 @@ export const worker$routes$get$route = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$routes$update$route, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71646,7 +71643,7 @@ export const worker$routes$update$route = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$routes$delete$route, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -71661,7 +71658,7 @@ export const worker$routes$delete$route = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$worker$script$$$deprecated$$download$worker, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = { Accept: "undefined" }; @@ -71676,7 +71673,7 @@ export const worker$script$$$deprecated$$download$worker = (apiCl * Upload a worker, or a new version of a worker. */ export const worker$script$$$deprecated$$upload$worker = (apiClient: ApiClient) => (params: Params$worker$script$$$deprecated$$upload$worker, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = { "Content-Type": "application/javascript", Accept: "application/json" @@ -71693,7 +71690,7 @@ export const worker$script$$$deprecated$$upload$worker = (apiClie * Delete your Worker. This call has no response body on a successful delete. */ export const worker$script$$$deprecated$$delete$worker = (apiClient: ApiClient) => (params: Params$worker$script$$$deprecated$$delete$worker, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -71706,7 +71703,7 @@ export const worker$script$$$deprecated$$delete$worker = (apiClie * List the bindings for a Workers script. */ export const worker$binding$$$deprecated$$list$bindings = (apiClient: ApiClient) => (params: Params$worker$binding$$$deprecated$$list$bindings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script/bindings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script/bindings`; const headers = { Accept: "application/json" }; @@ -71721,7 +71718,7 @@ export const worker$binding$$$deprecated$$list$bindings = (apiCli * Get Total TLS Settings for a Zone. */ export const total$tls$total$tls$settings$details = (apiClient: ApiClient) => (params: Params$total$tls$total$tls$settings$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls`; const headers = { Accept: "application/json" }; @@ -71736,7 +71733,7 @@ export const total$tls$total$tls$settings$details = (apiClient: A * Set Total TLS Settings or disable the feature for a Zone. */ export const total$tls$enable$or$disable$total$tls = (apiClient: ApiClient) => (params: Params$total$tls$enable$or$disable$total$tls, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71753,7 +71750,7 @@ export const total$tls$enable$or$disable$total$tls = (apiClient: * This view provides a breakdown of analytics data by datacenter. Note: This is available to Enterprise customers only. */ export const zone$analytics$$$deprecated$$get$analytics$by$co$locations = (apiClient: ApiClient) => (params: Params$zone$analytics$$$deprecated$$get$analytics$by$co$locations, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/analytics/colos\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/analytics/colos`; const headers = { Accept: "application/json" }; @@ -71774,7 +71771,7 @@ export const zone$analytics$$$deprecated$$get$analytics$by$co$locations = (apiClient: ApiClient) => (params: Params$zone$analytics$$$deprecated$$get$dashboard, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/analytics/dashboard\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/analytics/dashboard`; const headers = { Accept: "application/json" }; @@ -71795,7 +71792,7 @@ export const zone$analytics$$$deprecated$$get$dashboard = (apiCli * Lists available plans the zone can subscribe to. */ export const zone$rate$plan$list$available$plans = (apiClient: ApiClient) => (params: Params$zone$rate$plan$list$available$plans, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_plans\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_plans`; const headers = { Accept: "application/json" }; @@ -71810,7 +71807,7 @@ export const zone$rate$plan$list$available$plans = (apiClient: Ap * Details of the available plan that the zone can subscribe to. */ export const zone$rate$plan$available$plan$details = (apiClient: ApiClient) => (params: Params$zone$rate$plan$available$plan$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_plans/\${encodeURIComponent(params.parameter.plan_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_plans/${encodeURIComponent(params.parameter.plan_identifier)}`; const headers = { Accept: "application/json" }; @@ -71825,7 +71822,7 @@ export const zone$rate$plan$available$plan$details = (apiClient: * Lists all rate plans the zone can subscribe to. */ export const zone$rate$plan$list$available$rate$plans = (apiClient: ApiClient) => (params: Params$zone$rate$plan$list$available$rate$plans, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_rate_plans\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_rate_plans`; const headers = { Accept: "application/json" }; @@ -71840,7 +71837,7 @@ export const zone$rate$plan$list$available$rate$plans = (apiClien * List Hostname Associations */ export const client$certificate$for$a$zone$list$hostname$associations = (apiClient: ApiClient) => (params: Params$client$certificate$for$a$zone$list$hostname$associations, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations`; const headers = { Accept: "application/json" }; @@ -71859,7 +71856,7 @@ export const client$certificate$for$a$zone$list$hostname$associations = (apiClient: ApiClient) => (params: Params$client$certificate$for$a$zone$put$hostname$associations, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71876,7 +71873,7 @@ export const client$certificate$for$a$zone$put$hostname$associations = (apiClient: ApiClient) => (params: Params$client$certificate$for$a$zone$list$client$certificates, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates`; const headers = { Accept: "application/json" }; @@ -71899,7 +71896,7 @@ export const client$certificate$for$a$zone$list$client$certificates = (apiClient: ApiClient) => (params: Params$client$certificate$for$a$zone$create$client$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71916,7 +71913,7 @@ export const client$certificate$for$a$zone$create$client$certificate = (apiClient: ApiClient) => (params: Params$client$certificate$for$a$zone$client$certificate$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -71931,7 +71928,7 @@ export const client$certificate$for$a$zone$client$certificate$details = (apiClient: ApiClient) => (params: Params$client$certificate$for$a$zone$delete$client$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -71946,7 +71943,7 @@ export const client$certificate$for$a$zone$delete$client$certificate = (apiClient: ApiClient) => (params: Params$client$certificate$for$a$zone$edit$client$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -71961,7 +71958,7 @@ export const client$certificate$for$a$zone$edit$client$certificate = (apiClient: ApiClient) => (params: Params$custom$ssl$for$a$zone$list$ssl$configurations, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates`; const headers = { Accept: "application/json" }; @@ -71983,7 +71980,7 @@ export const custom$ssl$for$a$zone$list$ssl$configurations = (api * Upload a new SSL certificate for a zone. */ export const custom$ssl$for$a$zone$create$ssl$configuration = (apiClient: ApiClient) => (params: Params$custom$ssl$for$a$zone$create$ssl$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71997,7 +71994,7 @@ export const custom$ssl$for$a$zone$create$ssl$configuration = (ap }; /** SSL Configuration Details */ export const custom$ssl$for$a$zone$ssl$configuration$details = (apiClient: ApiClient) => (params: Params$custom$ssl$for$a$zone$ssl$configuration$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72012,7 +72009,7 @@ export const custom$ssl$for$a$zone$ssl$configuration$details = (a * Remove a SSL certificate from a zone. */ export const custom$ssl$for$a$zone$delete$ssl$configuration = (apiClient: ApiClient) => (params: Params$custom$ssl$for$a$zone$delete$ssl$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72027,7 +72024,7 @@ export const custom$ssl$for$a$zone$delete$ssl$configuration = (ap * Upload a new private key and/or PEM/CRT for the SSL certificate. Note: PATCHing a configuration for sni_custom certificates will result in a new resource id being returned, and the previous one being deleted. */ export const custom$ssl$for$a$zone$edit$ssl$configuration = (apiClient: ApiClient) => (params: Params$custom$ssl$for$a$zone$edit$ssl$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72044,7 +72041,7 @@ export const custom$ssl$for$a$zone$edit$ssl$configuration = (apiC * If a zone has multiple SSL certificates, you can set the order in which they should be used during a request. The higher priority will break ties across overlapping 'legacy_custom' certificates. */ export const custom$ssl$for$a$zone$re$prioritize$ssl$certificates = (apiClient: ApiClient) => (params: Params$custom$ssl$for$a$zone$re$prioritize$ssl$certificates, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/prioritize\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/prioritize`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72061,7 +72058,7 @@ export const custom$ssl$for$a$zone$re$prioritize$ssl$certificates = (apiClient: ApiClient) => (params: Params$custom$hostname$for$a$zone$list$custom$hostnames, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames`; const headers = { Accept: "application/json" }; @@ -72086,7 +72083,7 @@ export const custom$hostname$for$a$zone$list$custom$hostnames = ( * Add a new custom hostname and request that an SSL certificate be issued for it. One of three validation methods—http, txt, email—should be used, with 'http' recommended if the CNAME is already in place (or will be soon). Specifying 'email' will send an email to the WHOIS contacts on file for the base domain plus hostmaster, postmaster, webmaster, admin, administrator. If http is used and the domain is not already pointing to the Managed CNAME host, the PATCH method must be used once it is (to complete validation). */ export const custom$hostname$for$a$zone$create$custom$hostname = (apiClient: ApiClient) => (params: Params$custom$hostname$for$a$zone$create$custom$hostname, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72100,7 +72097,7 @@ export const custom$hostname$for$a$zone$create$custom$hostname = }; /** Custom Hostname Details */ export const custom$hostname$for$a$zone$custom$hostname$details = (apiClient: ApiClient) => (params: Params$custom$hostname$for$a$zone$custom$hostname$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72112,7 +72109,7 @@ export const custom$hostname$for$a$zone$custom$hostname$details = (apiClient: ApiClient) => (params: Params$custom$hostname$for$a$zone$delete$custom$hostname$$$and$any$issued$ssl$certificates$, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72127,7 +72124,7 @@ export const custom$hostname$for$a$zone$delete$custom$hostname$$$and$any$issued$ * Modify SSL configuration for a custom hostname. When sent with SSL config that matches existing config, used to indicate that hostname should pass domain control validation (DCV). Can also be used to change validation type, e.g., from 'http' to 'email'. */ export const custom$hostname$for$a$zone$edit$custom$hostname = (apiClient: ApiClient) => (params: Params$custom$hostname$for$a$zone$edit$custom$hostname, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72141,7 +72138,7 @@ export const custom$hostname$for$a$zone$edit$custom$hostname = (a }; /** Get Fallback Origin for Custom Hostnames */ export const custom$hostname$fallback$origin$for$a$zone$get$fallback$origin$for$custom$hostnames = (apiClient: ApiClient) => (params: Params$custom$hostname$fallback$origin$for$a$zone$get$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { Accept: "application/json" }; @@ -72153,7 +72150,7 @@ export const custom$hostname$fallback$origin$for$a$zone$get$fallback$origin$for$ }; /** Update Fallback Origin for Custom Hostnames */ export const custom$hostname$fallback$origin$for$a$zone$update$fallback$origin$for$custom$hostnames = (apiClient: ApiClient) => (params: Params$custom$hostname$fallback$origin$for$a$zone$update$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72167,7 +72164,7 @@ export const custom$hostname$fallback$origin$for$a$zone$update$fallback$origin$f }; /** Delete Fallback Origin for Custom Hostnames */ export const custom$hostname$fallback$origin$for$a$zone$delete$fallback$origin$for$custom$hostnames = (apiClient: ApiClient) => (params: Params$custom$hostname$fallback$origin$for$a$zone$delete$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { Accept: "application/json" }; @@ -72182,7 +72179,7 @@ export const custom$hostname$fallback$origin$for$a$zone$delete$fallback$origin$f * Fetches all the custom pages at the zone level. */ export const custom$pages$for$a$zone$list$custom$pages = (apiClient: ApiClient) => (params: Params$custom$pages$for$a$zone$list$custom$pages, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages`; const headers = { Accept: "application/json" }; @@ -72197,7 +72194,7 @@ export const custom$pages$for$a$zone$list$custom$pages = (apiClie * Fetches the details of a custom page. */ export const custom$pages$for$a$zone$get$a$custom$page = (apiClient: ApiClient) => (params: Params$custom$pages$for$a$zone$get$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72212,7 +72209,7 @@ export const custom$pages$for$a$zone$get$a$custom$page = (apiClie * Updates the configuration of an existing custom page. */ export const custom$pages$for$a$zone$update$a$custom$page = (apiClient: ApiClient) => (params: Params$custom$pages$for$a$zone$update$a$custom$page, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72229,7 +72226,7 @@ export const custom$pages$for$a$zone$update$a$custom$page = (apiC * Retrieve the account and zone specific unique identifier used as part of the CNAME target for DCV Delegation. */ export const dcv$delegation$uuid$get = (apiClient: ApiClient) => (params: Params$dcv$delegation$uuid$get, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/dcv_delegation/uuid\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/dcv_delegation/uuid`; const headers = { Accept: "application/json" }; @@ -72244,7 +72241,7 @@ export const dcv$delegation$uuid$get = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$email$routing$settings$get$email$routing$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing`; const headers = { Accept: "application/json" }; @@ -72259,7 +72256,7 @@ export const email$routing$settings$get$email$routing$settings = * Disable your Email Routing zone. Also removes additional MX records previously required for Email Routing to work. */ export const email$routing$settings$disable$email$routing = (apiClient: ApiClient) => (params: Params$email$routing$settings$disable$email$routing, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/disable\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/disable`; const headers = { Accept: "application/json" }; @@ -72274,7 +72271,7 @@ export const email$routing$settings$disable$email$routing = (apiC * Show the DNS records needed to configure your Email Routing zone. */ export const email$routing$settings$email$routing$dns$settings = (apiClient: ApiClient) => (params: Params$email$routing$settings$email$routing$dns$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/dns\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/dns`; const headers = { Accept: "application/json" }; @@ -72289,7 +72286,7 @@ export const email$routing$settings$email$routing$dns$settings = * Enable you Email Routing zone. Add and lock the necessary MX and SPF records. */ export const email$routing$settings$enable$email$routing = (apiClient: ApiClient) => (params: Params$email$routing$settings$enable$email$routing, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/enable\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/enable`; const headers = { Accept: "application/json" }; @@ -72304,7 +72301,7 @@ export const email$routing$settings$enable$email$routing = (apiCl * Lists existing routing rules. */ export const email$routing$routing$rules$list$routing$rules = (apiClient: ApiClient) => (params: Params$email$routing$routing$rules$list$routing$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules`; const headers = { Accept: "application/json" }; @@ -72325,7 +72322,7 @@ export const email$routing$routing$rules$list$routing$rules = (ap * Rules consist of a set of criteria for matching emails (such as an email being sent to a specific custom email address) plus a set of actions to take on the email (like forwarding it to a specific destination address). */ export const email$routing$routing$rules$create$routing$rule = (apiClient: ApiClient) => (params: Params$email$routing$routing$rules$create$routing$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72342,7 +72339,7 @@ export const email$routing$routing$rules$create$routing$rule = (a * Get information for a specific routing rule already created. */ export const email$routing$routing$rules$get$routing$rule = (apiClient: ApiClient) => (params: Params$email$routing$routing$rules$get$routing$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -72357,7 +72354,7 @@ export const email$routing$routing$rules$get$routing$rule = (apiC * Update actions and matches, or enable/disable specific routing rules. */ export const email$routing$routing$rules$update$routing$rule = (apiClient: ApiClient) => (params: Params$email$routing$routing$rules$update$routing$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72374,7 +72371,7 @@ export const email$routing$routing$rules$update$routing$rule = (a * Delete a specific routing rule. */ export const email$routing$routing$rules$delete$routing$rule = (apiClient: ApiClient) => (params: Params$email$routing$routing$rules$delete$routing$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -72389,7 +72386,7 @@ export const email$routing$routing$rules$delete$routing$rule = (a * Get information on the default catch-all routing rule. */ export const email$routing$routing$rules$get$catch$all$rule = (apiClient: ApiClient) => (params: Params$email$routing$routing$rules$get$catch$all$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all`; const headers = { Accept: "application/json" }; @@ -72404,7 +72401,7 @@ export const email$routing$routing$rules$get$catch$all$rule = (ap * Enable or disable catch-all routing rule, or change action to forward to specific destination address. */ export const email$routing$routing$rules$update$catch$all$rule = (apiClient: ApiClient) => (params: Params$email$routing$routing$rules$update$catch$all$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72421,7 +72418,7 @@ export const email$routing$routing$rules$update$catch$all$rule = * Fetches filters in a zone. You can filter the results using several optional parameters. */ export const filters$list$filters = (apiClient: ApiClient) => (params: Params$filters$list$filters, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { Accept: "application/json" }; @@ -72446,7 +72443,7 @@ export const filters$list$filters = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$filters$update$filters, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72463,7 +72460,7 @@ export const filters$update$filters = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$filters$create$filters, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72480,7 +72477,7 @@ export const filters$create$filters = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$filters$delete$filters, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72497,7 +72494,7 @@ export const filters$delete$filters = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$filters$get$a$filter, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72512,7 +72509,7 @@ export const filters$get$a$filter = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$filters$update$a$filter, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72529,7 +72526,7 @@ export const filters$update$a$filter = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$filters$delete$a$filter, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72544,7 +72541,7 @@ export const filters$delete$a$filter = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zone$lockdown$list$zone$lockdown$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns`; const headers = { Accept: "application/json" }; @@ -72573,7 +72570,7 @@ export const zone$lockdown$list$zone$lockdown$rules = (apiClient: * Creates a new Zone Lockdown rule. */ export const zone$lockdown$create$a$zone$lockdown$rule = (apiClient: ApiClient) => (params: Params$zone$lockdown$create$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72590,7 +72587,7 @@ export const zone$lockdown$create$a$zone$lockdown$rule = (apiClie * Fetches the details of a Zone Lockdown rule. */ export const zone$lockdown$get$a$zone$lockdown$rule = (apiClient: ApiClient) => (params: Params$zone$lockdown$get$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72605,7 +72602,7 @@ export const zone$lockdown$get$a$zone$lockdown$rule = (apiClient: * Updates an existing Zone Lockdown rule. */ export const zone$lockdown$update$a$zone$lockdown$rule = (apiClient: ApiClient) => (params: Params$zone$lockdown$update$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72622,7 +72619,7 @@ export const zone$lockdown$update$a$zone$lockdown$rule = (apiClie * Deletes an existing Zone Lockdown rule. */ export const zone$lockdown$delete$a$zone$lockdown$rule = (apiClient: ApiClient) => (params: Params$zone$lockdown$delete$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72637,7 +72634,7 @@ export const zone$lockdown$delete$a$zone$lockdown$rule = (apiClie * Fetches firewall rules in a zone. You can filter the results using several optional parameters. */ export const firewall$rules$list$firewall$rules = (apiClient: ApiClient) => (params: Params$firewall$rules$list$firewall$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { Accept: "application/json" }; @@ -72661,7 +72658,7 @@ export const firewall$rules$list$firewall$rules = (apiClient: Api * Updates one or more existing firewall rules. */ export const firewall$rules$update$firewall$rules = (apiClient: ApiClient) => (params: Params$firewall$rules$update$firewall$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72678,7 +72675,7 @@ export const firewall$rules$update$firewall$rules = (apiClient: A * Create one or more firewall rules. */ export const firewall$rules$create$firewall$rules = (apiClient: ApiClient) => (params: Params$firewall$rules$create$firewall$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72695,7 +72692,7 @@ export const firewall$rules$create$firewall$rules = (apiClient: A * Deletes existing firewall rules. */ export const firewall$rules$delete$firewall$rules = (apiClient: ApiClient) => (params: Params$firewall$rules$delete$firewall$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72712,7 +72709,7 @@ export const firewall$rules$delete$firewall$rules = (apiClient: A * Updates the priority of existing firewall rules. */ export const firewall$rules$update$priority$of$firewall$rules = (apiClient: ApiClient) => (params: Params$firewall$rules$update$priority$of$firewall$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72729,7 +72726,7 @@ export const firewall$rules$update$priority$of$firewall$rules = ( * Fetches the details of a firewall rule. */ export const firewall$rules$get$a$firewall$rule = (apiClient: ApiClient) => (params: Params$firewall$rules$get$a$firewall$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72748,7 +72745,7 @@ export const firewall$rules$get$a$firewall$rule = (apiClient: Api * Updates an existing firewall rule. */ export const firewall$rules$update$a$firewall$rule = (apiClient: ApiClient) => (params: Params$firewall$rules$update$a$firewall$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72765,7 +72762,7 @@ export const firewall$rules$update$a$firewall$rule = (apiClient: * Deletes an existing firewall rule. */ export const firewall$rules$delete$a$firewall$rule = (apiClient: ApiClient) => (params: Params$firewall$rules$delete$a$firewall$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72782,7 +72779,7 @@ export const firewall$rules$delete$a$firewall$rule = (apiClient: * Updates the priority of an existing firewall rule. */ export const firewall$rules$update$priority$of$a$firewall$rule = (apiClient: ApiClient) => (params: Params$firewall$rules$update$priority$of$a$firewall$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72799,7 +72796,7 @@ export const firewall$rules$update$priority$of$a$firewall$rule = * Fetches User Agent Blocking rules in a zone. You can filter the results using several optional parameters. */ export const user$agent$blocking$rules$list$user$agent$blocking$rules = (apiClient: ApiClient) => (params: Params$user$agent$blocking$rules$list$user$agent$blocking$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules`; const headers = { Accept: "application/json" }; @@ -72822,7 +72819,7 @@ export const user$agent$blocking$rules$list$user$agent$blocking$rules = (apiClient: ApiClient) => (params: Params$user$agent$blocking$rules$create$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72839,7 +72836,7 @@ export const user$agent$blocking$rules$create$a$user$agent$blocking$rule = (apiClient: ApiClient) => (params: Params$user$agent$blocking$rules$get$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72854,7 +72851,7 @@ export const user$agent$blocking$rules$get$a$user$agent$blocking$rule = (apiClient: ApiClient) => (params: Params$user$agent$blocking$rules$update$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72871,7 +72868,7 @@ export const user$agent$blocking$rules$update$a$user$agent$blocking$rule = (apiClient: ApiClient) => (params: Params$user$agent$blocking$rules$delete$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72888,7 +72885,7 @@ export const user$agent$blocking$rules$delete$a$user$agent$blocking$rule = (apiClient: ApiClient) => (params: Params$waf$overrides$list$waf$overrides, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides`; const headers = { Accept: "application/json" }; @@ -72910,7 +72907,7 @@ export const waf$overrides$list$waf$overrides = (apiClient: ApiCl * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$overrides$create$a$waf$override = (apiClient: ApiClient) => (params: Params$waf$overrides$create$a$waf$override, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72929,7 +72926,7 @@ export const waf$overrides$create$a$waf$override = (apiClient: Ap * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$overrides$get$a$waf$override = (apiClient: ApiClient) => (params: Params$waf$overrides$get$a$waf$override, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72946,7 +72943,7 @@ export const waf$overrides$get$a$waf$override = (apiClient: ApiCl * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$overrides$update$waf$override = (apiClient: ApiClient) => (params: Params$waf$overrides$update$waf$override, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72965,7 +72962,7 @@ export const waf$overrides$update$waf$override = (apiClient: ApiC * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$overrides$delete$a$waf$override = (apiClient: ApiClient) => (params: Params$waf$overrides$delete$a$waf$override, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72982,7 +72979,7 @@ export const waf$overrides$delete$a$waf$override = (apiClient: Ap * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$packages$list$waf$packages = (apiClient: ApiClient) => (params: Params$waf$packages$list$waf$packages, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages`; const headers = { Accept: "application/json" }; @@ -73008,7 +73005,7 @@ export const waf$packages$list$waf$packages = (apiClient: ApiClie * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$packages$get$a$waf$package = (apiClient: ApiClient) => (params: Params$waf$packages$get$a$waf$package, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73025,7 +73022,7 @@ export const waf$packages$get$a$waf$package = (apiClient: ApiClie * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ export const waf$packages$update$a$waf$package = (apiClient: ApiClient) => (params: Params$waf$packages$update$a$waf$package, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73042,7 +73039,7 @@ export const waf$packages$update$a$waf$package = (apiClient: ApiC * List configured health checks. */ export const health$checks$list$health$checks = (apiClient: ApiClient) => (params: Params$health$checks$list$health$checks, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks`; const headers = { Accept: "application/json" }; @@ -73057,7 +73054,7 @@ export const health$checks$list$health$checks = (apiClient: ApiCl * Create a new health check. */ export const health$checks$create$health$check = (apiClient: ApiClient) => (params: Params$health$checks$create$health$check, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73074,7 +73071,7 @@ export const health$checks$create$health$check = (apiClient: ApiC * Fetch a single configured health check. */ export const health$checks$health$check$details = (apiClient: ApiClient) => (params: Params$health$checks$health$check$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73089,7 +73086,7 @@ export const health$checks$health$check$details = (apiClient: Api * Update a configured health check. */ export const health$checks$update$health$check = (apiClient: ApiClient) => (params: Params$health$checks$update$health$check, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73106,7 +73103,7 @@ export const health$checks$update$health$check = (apiClient: ApiC * Delete a health check. */ export const health$checks$delete$health$check = (apiClient: ApiClient) => (params: Params$health$checks$delete$health$check, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73121,7 +73118,7 @@ export const health$checks$delete$health$check = (apiClient: ApiC * Patch a configured health check. */ export const health$checks$patch$health$check = (apiClient: ApiClient) => (params: Params$health$checks$patch$health$check, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73138,7 +73135,7 @@ export const health$checks$patch$health$check = (apiClient: ApiCl * Create a new preview health check. */ export const health$checks$create$preview$health$check = (apiClient: ApiClient) => (params: Params$health$checks$create$preview$health$check, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73155,7 +73152,7 @@ export const health$checks$create$preview$health$check = (apiClie * Fetch a single configured health check preview. */ export const health$checks$health$check$preview$details = (apiClient: ApiClient) => (params: Params$health$checks$health$check$preview$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73170,7 +73167,7 @@ export const health$checks$health$check$preview$details = (apiCli * Delete a health check. */ export const health$checks$delete$preview$health$check = (apiClient: ApiClient) => (params: Params$health$checks$delete$preview$health$check, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73185,7 +73182,7 @@ export const health$checks$delete$preview$health$check = (apiClie * List the requested TLS setting for the hostnames under this zone. */ export const per$hostname$tls$settings$list = (apiClient: ApiClient) => (params: Params$per$hostname$tls$settings$list, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}`; const headers = { Accept: "application/json" }; @@ -73200,7 +73197,7 @@ export const per$hostname$tls$settings$list = (apiClient: ApiClie * Update the tls setting value for the hostname. */ export const per$hostname$tls$settings$put = (apiClient: ApiClient) => (params: Params$per$hostname$tls$settings$put, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}/\${encodeURIComponent(params.parameter.hostname)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}/${encodeURIComponent(params.parameter.hostname)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73217,7 +73214,7 @@ export const per$hostname$tls$settings$put = (apiClient: ApiClien * Delete the tls setting value for the hostname. */ export const per$hostname$tls$settings$delete = (apiClient: ApiClient) => (params: Params$per$hostname$tls$settings$delete, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}/\${encodeURIComponent(params.parameter.hostname)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}/${encodeURIComponent(params.parameter.hostname)}`; const headers = { Accept: "application/json" }; @@ -73232,7 +73229,7 @@ export const per$hostname$tls$settings$delete = (apiClient: ApiCl * List all Keyless SSL configurations for a given zone. */ export const keyless$ssl$for$a$zone$list$keyless$ssl$configurations = (apiClient: ApiClient) => (params: Params$keyless$ssl$for$a$zone$list$keyless$ssl$configurations, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates`; const headers = { Accept: "application/json" }; @@ -73244,7 +73241,7 @@ export const keyless$ssl$for$a$zone$list$keyless$ssl$configurations = (apiClient: ApiClient) => (params: Params$keyless$ssl$for$a$zone$create$keyless$ssl$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73261,7 +73258,7 @@ export const keyless$ssl$for$a$zone$create$keyless$ssl$configuration = (apiClient: ApiClient) => (params: Params$keyless$ssl$for$a$zone$get$keyless$ssl$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73273,7 +73270,7 @@ export const keyless$ssl$for$a$zone$get$keyless$ssl$configuration = (apiClient: ApiClient) => (params: Params$keyless$ssl$for$a$zone$delete$keyless$ssl$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73288,7 +73285,7 @@ export const keyless$ssl$for$a$zone$delete$keyless$ssl$configuration = (apiClient: ApiClient) => (params: Params$keyless$ssl$for$a$zone$edit$keyless$ssl$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73305,7 +73302,7 @@ export const keyless$ssl$for$a$zone$edit$keyless$ssl$configuration = (apiClient: ApiClient) => (params: Params$logs$received$get$log$retention$flag, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag`; const headers = { Accept: "application/json" }; @@ -73320,7 +73317,7 @@ export const logs$received$get$log$retention$flag = (apiClient: A * Updates log retention flag for Logpull API. */ export const logs$received$update$log$retention$flag = (apiClient: ApiClient) => (params: Params$logs$received$update$log$retention$flag, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73334,10 +73331,10 @@ export const logs$received$update$log$retention$flag = (apiClient }; /** * Get logs RayIDs - * The \`/rayids\` api route allows lookups by specific rayid. The rayids route will return zero, one, or more records (ray ids are not unique). + * The `/rayids` api route allows lookups by specific rayid. The rayids route will return zero, one, or more records (ray ids are not unique). */ export const logs$received$get$logs$ray$i$ds = (apiClient: ApiClient) => (params: Params$logs$received$get$logs$ray$i$ds, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/rayids/\${encodeURIComponent(params.parameter.ray_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/rayids/${encodeURIComponent(params.parameter.ray_identifier)}`; const headers = { Accept: "application/json" }; @@ -73354,10 +73351,10 @@ export const logs$received$get$logs$ray$i$ds = (apiClient: ApiCli }; /** * Get logs received - * The \`/received\` api route allows customers to retrieve their edge HTTP logs. The basic access pattern is "give me all the logs for zone Z for minute M", where the minute M refers to the time records were received at Cloudflare's central data center. \`start\` is inclusive, and \`end\` is exclusive. Because of that, to get all data, at minutely cadence, starting at 10AM, the proper values are: \`start=2018-05-20T10:00:00Z&end=2018-05-20T10:01:00Z\`, then \`start=2018-05-20T10:01:00Z&end=2018-05-20T10:02:00Z\` and so on; the overlap will be handled properly. + * The `/received` api route allows customers to retrieve their edge HTTP logs. The basic access pattern is "give me all the logs for zone Z for minute M", where the minute M refers to the time records were received at Cloudflare's central data center. `start` is inclusive, and `end` is exclusive. Because of that, to get all data, at minutely cadence, starting at 10AM, the proper values are: `start=2018-05-20T10:00:00Z&end=2018-05-20T10:01:00Z`, then `start=2018-05-20T10:01:00Z&end=2018-05-20T10:02:00Z` and so on; the overlap will be handled properly. */ export const logs$received$get$logs$received = (apiClient: ApiClient) => (params: Params$logs$received$get$logs$received, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/received\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/received`; const headers = { Accept: "application/json" }; @@ -73381,7 +73378,7 @@ export const logs$received$get$logs$received = (apiClient: ApiCli * Lists all fields available. The response is json object with key-value pairs, where keys are field names, and values are descriptions. */ export const logs$received$list$fields = (apiClient: ApiClient) => (params: Params$logs$received$list$fields, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/received/fields\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/received/fields`; const headers = { Accept: "application/json" }; @@ -73393,7 +73390,7 @@ export const logs$received$list$fields = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zone$level$authenticated$origin$pulls$list$certificates, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth`; const headers = { Accept: "application/json" }; @@ -73408,7 +73405,7 @@ export const zone$level$authenticated$origin$pulls$list$certificates = (apiClient: ApiClient) => (params: Params$zone$level$authenticated$origin$pulls$upload$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73422,7 +73419,7 @@ export const zone$level$authenticated$origin$pulls$upload$certificate = (apiClient: ApiClient) => (params: Params$zone$level$authenticated$origin$pulls$get$certificate$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73434,7 +73431,7 @@ export const zone$level$authenticated$origin$pulls$get$certificate$details = (apiClient: ApiClient) => (params: Params$zone$level$authenticated$origin$pulls$delete$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73449,7 +73446,7 @@ export const zone$level$authenticated$origin$pulls$delete$certificate = (apiClient: ApiClient) => (params: Params$per$hostname$authenticated$origin$pull$enable$or$disable$a$hostname$for$client$authentication, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73463,7 +73460,7 @@ export const per$hostname$authenticated$origin$pull$enable$or$disable$a$hostname }; /** Get the Hostname Status for Client Authentication */ export const per$hostname$authenticated$origin$pull$get$the$hostname$status$for$client$authentication = (apiClient: ApiClient) => (params: Params$per$hostname$authenticated$origin$pull$get$the$hostname$status$for$client$authentication, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/\${encodeURIComponent(params.parameter.hostname)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/${encodeURIComponent(params.parameter.hostname)}`; const headers = { Accept: "application/json" }; @@ -73475,7 +73472,7 @@ export const per$hostname$authenticated$origin$pull$get$the$hostname$status$for$ }; /** List Certificates */ export const per$hostname$authenticated$origin$pull$list$certificates = (apiClient: ApiClient) => (params: Params$per$hostname$authenticated$origin$pull$list$certificates, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates`; const headers = { Accept: "application/json" }; @@ -73490,7 +73487,7 @@ export const per$hostname$authenticated$origin$pull$list$certificates = (apiClient: ApiClient) => (params: Params$per$hostname$authenticated$origin$pull$upload$a$hostname$client$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73507,7 +73504,7 @@ export const per$hostname$authenticated$origin$pull$upload$a$hostname$client$cer * Get the certificate by ID to be used for client authentication on a hostname. */ export const per$hostname$authenticated$origin$pull$get$the$hostname$client$certificate = (apiClient: ApiClient) => (params: Params$per$hostname$authenticated$origin$pull$get$the$hostname$client$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73519,7 +73516,7 @@ export const per$hostname$authenticated$origin$pull$get$the$hostname$client$cert }; /** Delete Hostname Client Certificate */ export const per$hostname$authenticated$origin$pull$delete$hostname$client$certificate = (apiClient: ApiClient) => (params: Params$per$hostname$authenticated$origin$pull$delete$hostname$client$certificate, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73534,7 +73531,7 @@ export const per$hostname$authenticated$origin$pull$delete$hostname$client$certi * Get whether zone-level authenticated origin pulls is enabled or not. It is false by default. */ export const zone$level$authenticated$origin$pulls$get$enablement$setting$for$zone = (apiClient: ApiClient) => (params: Params$zone$level$authenticated$origin$pulls$get$enablement$setting$for$zone, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings`; const headers = { Accept: "application/json" }; @@ -73549,7 +73546,7 @@ export const zone$level$authenticated$origin$pulls$get$enablement$setting$for$zo * Enable or disable zone-level authenticated origin pulls. 'enabled' should be set true either before/after the certificate is uploaded to see the certificate in use. */ export const zone$level$authenticated$origin$pulls$set$enablement$for$zone = (apiClient: ApiClient) => (params: Params$zone$level$authenticated$origin$pulls$set$enablement$for$zone, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73566,7 +73563,7 @@ export const zone$level$authenticated$origin$pulls$set$enablement$for$zone = (apiClient: ApiClient) => (params: Params$rate$limits$for$a$zone$list$rate$limits, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits`; const headers = { Accept: "application/json" }; @@ -73586,7 +73583,7 @@ export const rate$limits$for$a$zone$list$rate$limits = (apiClient * Creates a new rate limit for a zone. Refer to the object definition for a list of required attributes. */ export const rate$limits$for$a$zone$create$a$rate$limit = (apiClient: ApiClient) => (params: Params$rate$limits$for$a$zone$create$a$rate$limit, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73603,7 +73600,7 @@ export const rate$limits$for$a$zone$create$a$rate$limit = (apiCli * Fetches the details of a rate limit. */ export const rate$limits$for$a$zone$get$a$rate$limit = (apiClient: ApiClient) => (params: Params$rate$limits$for$a$zone$get$a$rate$limit, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73618,7 +73615,7 @@ export const rate$limits$for$a$zone$get$a$rate$limit = (apiClient * Updates an existing rate limit. */ export const rate$limits$for$a$zone$update$a$rate$limit = (apiClient: ApiClient) => (params: Params$rate$limits$for$a$zone$update$a$rate$limit, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73635,7 +73632,7 @@ export const rate$limits$for$a$zone$update$a$rate$limit = (apiCli * Deletes an existing rate limit. */ export const rate$limits$for$a$zone$delete$a$rate$limit = (apiClient: ApiClient) => (params: Params$rate$limits$for$a$zone$delete$a$rate$limit, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73650,7 +73647,7 @@ export const rate$limits$for$a$zone$delete$a$rate$limit = (apiCli * Sends AXFR zone transfer request to primary nameserver(s). */ export const secondary$dns$$$secondary$zone$$force$axfr = (apiClient: ApiClient) => (params: Params$secondary$dns$$$secondary$zone$$force$axfr, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/force_axfr\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/force_axfr`; const headers = { Accept: "application/json" }; @@ -73665,7 +73662,7 @@ export const secondary$dns$$$secondary$zone$$force$axfr = (apiCli * Get secondary zone configuration for incoming zone transfers. */ export const secondary$dns$$$secondary$zone$$secondary$zone$configuration$details = (apiClient: ApiClient) => (params: Params$secondary$dns$$$secondary$zone$$secondary$zone$configuration$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { Accept: "application/json" }; @@ -73680,7 +73677,7 @@ export const secondary$dns$$$secondary$zone$$secondary$zone$configuration$detail * Update secondary zone configuration for incoming zone transfers. */ export const secondary$dns$$$secondary$zone$$update$secondary$zone$configuration = (apiClient: ApiClient) => (params: Params$secondary$dns$$$secondary$zone$$update$secondary$zone$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73697,7 +73694,7 @@ export const secondary$dns$$$secondary$zone$$update$secondary$zone$configuration * Create secondary zone configuration for incoming zone transfers. */ export const secondary$dns$$$secondary$zone$$create$secondary$zone$configuration = (apiClient: ApiClient) => (params: Params$secondary$dns$$$secondary$zone$$create$secondary$zone$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73714,7 +73711,7 @@ export const secondary$dns$$$secondary$zone$$create$secondary$zone$configuration * Delete secondary zone configuration for incoming zone transfers. */ export const secondary$dns$$$secondary$zone$$delete$secondary$zone$configuration = (apiClient: ApiClient) => (params: Params$secondary$dns$$$secondary$zone$$delete$secondary$zone$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { Accept: "application/json" }; @@ -73729,7 +73726,7 @@ export const secondary$dns$$$secondary$zone$$delete$secondary$zone$configuration * Get primary zone configuration for outgoing zone transfers. */ export const secondary$dns$$$primary$zone$$primary$zone$configuration$details = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$primary$zone$configuration$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { Accept: "application/json" }; @@ -73744,7 +73741,7 @@ export const secondary$dns$$$primary$zone$$primary$zone$configuration$details = * Update primary zone configuration for outgoing zone transfers. */ export const secondary$dns$$$primary$zone$$update$primary$zone$configuration = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$update$primary$zone$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73761,7 +73758,7 @@ export const secondary$dns$$$primary$zone$$update$primary$zone$configuration = < * Create primary zone configuration for outgoing zone transfers. */ export const secondary$dns$$$primary$zone$$create$primary$zone$configuration = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$create$primary$zone$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73778,7 +73775,7 @@ export const secondary$dns$$$primary$zone$$create$primary$zone$configuration = < * Delete primary zone configuration for outgoing zone transfers. */ export const secondary$dns$$$primary$zone$$delete$primary$zone$configuration = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$delete$primary$zone$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { Accept: "application/json" }; @@ -73793,7 +73790,7 @@ export const secondary$dns$$$primary$zone$$delete$primary$zone$configuration = < * Disable outgoing zone transfers for primary zone and clears IXFR backlog of primary zone. */ export const secondary$dns$$$primary$zone$$disable$outgoing$zone$transfers = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$disable$outgoing$zone$transfers, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/disable\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/disable`; const headers = { Accept: "application/json" }; @@ -73808,7 +73805,7 @@ export const secondary$dns$$$primary$zone$$disable$outgoing$zone$transfers = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$enable$outgoing$zone$transfers, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/enable\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/enable`; const headers = { Accept: "application/json" }; @@ -73823,7 +73820,7 @@ export const secondary$dns$$$primary$zone$$enable$outgoing$zone$transfers = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$force$dns$notify, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/force_notify\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/force_notify`; const headers = { Accept: "application/json" }; @@ -73838,7 +73835,7 @@ export const secondary$dns$$$primary$zone$$force$dns$notify = (ap * Get primary zone transfer status. */ export const secondary$dns$$$primary$zone$$get$outgoing$zone$transfer$status = (apiClient: ApiClient) => (params: Params$secondary$dns$$$primary$zone$$get$outgoing$zone$transfer$status, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/status\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/status`; const headers = { Accept: "application/json" }; @@ -73850,7 +73847,7 @@ export const secondary$dns$$$primary$zone$$get$outgoing$zone$transfer$status = < }; /** All Snippets */ export const zone$snippets = (apiClient: ApiClient) => (params: Params$zone$snippets, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets`; const headers = { Accept: "application/json" }; @@ -73862,7 +73859,7 @@ export const zone$snippets = (apiClient: ApiClient }; /** Snippet */ export const zone$snippets$snippet = (apiClient: ApiClient) => (params: Params$zone$snippets$snippet, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { Accept: "application/json" }; @@ -73874,7 +73871,7 @@ export const zone$snippets$snippet = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zone$snippets$snippet$put, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -73888,7 +73885,7 @@ export const zone$snippets$snippet$put = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$zone$snippets$snippet$delete, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { Accept: "application/json" }; @@ -73900,7 +73897,7 @@ export const zone$snippets$snippet$delete = (apiClient: ApiClient }; /** Snippet Content */ export const zone$snippets$snippet$content = (apiClient: ApiClient) => (params: Params$zone$snippets$snippet$content, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}/content\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}/content`; const headers = { Accept: "multipart/form-data" }; @@ -73912,7 +73909,7 @@ export const zone$snippets$snippet$content = (apiClient: ApiClien }; /** Rules */ export const zone$snippets$snippet$rules = (apiClient: ApiClient) => (params: Params$zone$snippets$snippet$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules`; const headers = { Accept: "application/json" }; @@ -73924,7 +73921,7 @@ export const zone$snippets$snippet$rules = (apiClient: ApiClient< }; /** Put Rules */ export const zone$snippets$snippet$rules$put = (apiClient: ApiClient) => (params: Params$zone$snippets$snippet$rules$put, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73941,7 +73938,7 @@ export const zone$snippets$snippet$rules$put = (apiClient: ApiCli * For a given zone, list all active certificate packs. */ export const certificate$packs$list$certificate$packs = (apiClient: ApiClient) => (params: Params$certificate$packs$list$certificate$packs, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs`; const headers = { Accept: "application/json" }; @@ -73960,7 +73957,7 @@ export const certificate$packs$list$certificate$packs = (apiClien * For a given zone, get a certificate pack. */ export const certificate$packs$get$certificate$pack = (apiClient: ApiClient) => (params: Params$certificate$packs$get$certificate$pack, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73975,7 +73972,7 @@ export const certificate$packs$get$certificate$pack = (apiClient: * For a given zone, delete an advanced certificate pack. */ export const certificate$packs$delete$advanced$certificate$manager$certificate$pack = (apiClient: ApiClient) => (params: Params$certificate$packs$delete$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73990,7 +73987,7 @@ export const certificate$packs$delete$advanced$certificate$manager$certificate$p * For a given zone, restart validation for an advanced certificate pack. This is only a validation operation for a Certificate Pack in a validation_timed_out status. */ export const certificate$packs$restart$validation$for$advanced$certificate$manager$certificate$pack = (apiClient: ApiClient) => (params: Params$certificate$packs$restart$validation$for$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74005,7 +74002,7 @@ export const certificate$packs$restart$validation$for$advanced$certificate$manag * For a given zone, order an advanced certificate pack. */ export const certificate$packs$order$advanced$certificate$manager$certificate$pack = (apiClient: ApiClient) => (params: Params$certificate$packs$order$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/order\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/order`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74022,7 +74019,7 @@ export const certificate$packs$order$advanced$certificate$manager$certificate$pa * For a given zone, list certificate pack quotas. */ export const certificate$packs$get$certificate$pack$quotas = (apiClient: ApiClient) => (params: Params$certificate$packs$get$certificate$pack$quotas, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/quota\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/quota`; const headers = { Accept: "application/json" }; @@ -74037,7 +74034,7 @@ export const certificate$packs$get$certificate$pack$quotas = (api * Retrieve the SSL/TLS Recommender's recommendation for a zone. */ export const ssl$$tls$mode$recommendation$ssl$$tls$recommendation = (apiClient: ApiClient) => (params: Params$ssl$$tls$mode$recommendation$ssl$$tls$recommendation, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/recommendation\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/recommendation`; const headers = { Accept: "application/json" }; @@ -74052,7 +74049,7 @@ export const ssl$$tls$mode$recommendation$ssl$$tls$recommendation = (apiClient: ApiClient) => (params: Params$universal$ssl$settings$for$a$zone$universal$ssl$settings$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings`; const headers = { Accept: "application/json" }; @@ -74067,7 +74064,7 @@ export const universal$ssl$settings$for$a$zone$universal$ssl$settings$details = * Patch Universal SSL Settings for a Zone. */ export const universal$ssl$settings$for$a$zone$edit$universal$ssl$settings = (apiClient: ApiClient) => (params: Params$universal$ssl$settings$for$a$zone$edit$universal$ssl$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74084,7 +74081,7 @@ export const universal$ssl$settings$for$a$zone$edit$universal$ssl$settings = (apiClient: ApiClient) => (params: Params$ssl$verification$ssl$verification$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification`; const headers = { Accept: "application/json" }; @@ -74103,7 +74100,7 @@ export const ssl$verification$ssl$verification$details = (apiClie * Edit SSL validation method for a certificate pack. A PATCH request will request an immediate validation check on any certificate, and return the updated status. If a validation method is provided, the validation will be immediately attempted using that method. */ export const ssl$verification$edit$ssl$certificate$pack$validation$method = (apiClient: ApiClient) => (params: Params$ssl$verification$edit$ssl$certificate$pack$validation$method, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification/\${encodeURIComponent(params.parameter.cert_pack_uuid)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification/${encodeURIComponent(params.parameter.cert_pack_uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74120,7 +74117,7 @@ export const ssl$verification$edit$ssl$certificate$pack$validation$method = (apiClient: ApiClient) => (params: Params$waiting$room$list$waiting$rooms, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms`; const headers = { Accept: "application/json" }; @@ -74135,7 +74132,7 @@ export const waiting$room$list$waiting$rooms = (apiClient: ApiCli * Creates a new waiting room. */ export const waiting$room$create$waiting$room = (apiClient: ApiClient) => (params: Params$waiting$room$create$waiting$room, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74152,7 +74149,7 @@ export const waiting$room$create$waiting$room = (apiClient: ApiCl * Fetches a single configured waiting room. */ export const waiting$room$waiting$room$details = (apiClient: ApiClient) => (params: Params$waiting$room$waiting$room$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { Accept: "application/json" }; @@ -74167,7 +74164,7 @@ export const waiting$room$waiting$room$details = (apiClient: ApiC * Updates a configured waiting room. */ export const waiting$room$update$waiting$room = (apiClient: ApiClient) => (params: Params$waiting$room$update$waiting$room, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74184,7 +74181,7 @@ export const waiting$room$update$waiting$room = (apiClient: ApiCl * Deletes a waiting room. */ export const waiting$room$delete$waiting$room = (apiClient: ApiClient) => (params: Params$waiting$room$delete$waiting$room, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { Accept: "application/json" }; @@ -74199,7 +74196,7 @@ export const waiting$room$delete$waiting$room = (apiClient: ApiCl * Patches a configured waiting room. */ export const waiting$room$patch$waiting$room = (apiClient: ApiClient) => (params: Params$waiting$room$patch$waiting$room, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74216,7 +74213,7 @@ export const waiting$room$patch$waiting$room = (apiClient: ApiCli * Lists events for a waiting room. */ export const waiting$room$list$events = (apiClient: ApiClient) => (params: Params$waiting$room$list$events, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events`; const headers = { Accept: "application/json" }; @@ -74231,7 +74228,7 @@ export const waiting$room$list$events = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waiting$room$create$event, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74248,7 +74245,7 @@ export const waiting$room$create$event = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waiting$room$event$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { Accept: "application/json" }; @@ -74263,7 +74260,7 @@ export const waiting$room$event$details = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waiting$room$update$event, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74280,7 +74277,7 @@ export const waiting$room$update$event = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waiting$room$delete$event, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { Accept: "application/json" }; @@ -74295,7 +74292,7 @@ export const waiting$room$delete$event = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waiting$room$patch$event, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74312,7 +74309,7 @@ export const waiting$room$patch$event = (apiClient: ApiClient(apiClient: ApiClient) => (params: Params$waiting$room$preview$active$event$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}/details\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}/details`; const headers = { Accept: "application/json" }; @@ -74327,7 +74324,7 @@ export const waiting$room$preview$active$event$details = (apiClie * Lists rules for a waiting room. */ export const waiting$room$list$waiting$room$rules = (apiClient: ApiClient) => (params: Params$waiting$room$list$waiting$room$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { Accept: "application/json" }; @@ -74342,7 +74339,7 @@ export const waiting$room$list$waiting$room$rules = (apiClient: A * Only available for the Waiting Room Advanced subscription. Replaces all rules for a waiting room. */ export const waiting$room$replace$waiting$room$rules = (apiClient: ApiClient) => (params: Params$waiting$room$replace$waiting$room$rules, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74359,7 +74356,7 @@ export const waiting$room$replace$waiting$room$rules = (apiClient * Only available for the Waiting Room Advanced subscription. Creates a rule for a waiting room. */ export const waiting$room$create$waiting$room$rule = (apiClient: ApiClient) => (params: Params$waiting$room$create$waiting$room$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74376,7 +74373,7 @@ export const waiting$room$create$waiting$room$rule = (apiClient: * Deletes a rule for a waiting room. */ export const waiting$room$delete$waiting$room$rule = (apiClient: ApiClient) => (params: Params$waiting$room$delete$waiting$room$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -74391,7 +74388,7 @@ export const waiting$room$delete$waiting$room$rule = (apiClient: * Patches a rule for a waiting room. */ export const waiting$room$patch$waiting$room$rule = (apiClient: ApiClient) => (params: Params$waiting$room$patch$waiting$room$rule, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74406,17 +74403,17 @@ export const waiting$room$patch$waiting$room$rule = (apiClient: A /** * Get waiting room status * Fetches the status of a configured waiting room. Response fields include: - * 1. \`status\`: String indicating the status of the waiting room. The possible status are: + * 1. `status`: String indicating the status of the waiting room. The possible status are: * - **not_queueing** indicates that the configured thresholds have not been met and all users are going through to the origin. * - **queueing** indicates that the thresholds have been met and some users are held in the waiting room. * - **event_prequeueing** indicates that an event is active and is currently prequeueing users before it starts. - * 2. \`event_id\`: String of the current event's \`id\` if an event is active, otherwise an empty string. - * 3. \`estimated_queued_users\`: Integer of the estimated number of users currently waiting in the queue. - * 4. \`estimated_total_active_users\`: Integer of the estimated number of users currently active on the origin. - * 5. \`max_estimated_time_minutes\`: Integer of the maximum estimated time currently presented to the users. + * 2. `event_id`: String of the current event's `id` if an event is active, otherwise an empty string. + * 3. `estimated_queued_users`: Integer of the estimated number of users currently waiting in the queue. + * 4. `estimated_total_active_users`: Integer of the estimated number of users currently active on the origin. + * 5. `max_estimated_time_minutes`: Integer of the maximum estimated time currently presented to the users. */ export const waiting$room$get$waiting$room$status = (apiClient: ApiClient) => (params: Params$waiting$room$get$waiting$room$status, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/status\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/status`; const headers = { Accept: "application/json" }; @@ -74428,27 +74425,27 @@ export const waiting$room$get$waiting$room$status = (apiClient: A }; /** * Create a custom waiting room page preview - * Creates a waiting room page preview. Upload a custom waiting room page for preview. You will receive a preview URL in the form \`http://waitingrooms.dev/preview/\`. You can use the following query parameters to change the state of the preview: - * 1. \`force_queue\`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website (also known as queueAll). - * 2. \`queue_is_full\`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. - * 3. \`queueing_method\`: The queueing method currently used by the waiting room. + * Creates a waiting room page preview. Upload a custom waiting room page for preview. You will receive a preview URL in the form `http://waitingrooms.dev/preview/`. You can use the following query parameters to change the state of the preview: + * 1. `force_queue`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website (also known as queueAll). + * 2. `queue_is_full`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. + * 3. `queueing_method`: The queueing method currently used by the waiting room. * - **fifo** indicates a FIFO queue. * - **random** indicates a Random queue. - * - **passthrough** indicates a Passthrough queue. Keep in mind that the waiting room page will only be displayed if \`force_queue=true\` or \`event=prequeueing\` — for other cases the request will pass through to the origin. For our preview, this will be a fake origin website returning "Welcome". + * - **passthrough** indicates a Passthrough queue. Keep in mind that the waiting room page will only be displayed if `force_queue=true` or `event=prequeueing` — for other cases the request will pass through to the origin. For our preview, this will be a fake origin website returning "Welcome". * - **reject** indicates a Reject queue. - * 4. \`event\`: Used to preview a waiting room event. + * 4. `event`: Used to preview a waiting room event. * - **none** indicates no event is occurring. - * - **prequeueing** indicates that an event is prequeueing (between \`prequeue_start_time\` and \`event_start_time\`). - * - **started** indicates that an event has started (between \`event_start_time\` and \`event_end_time\`). - * 5. \`shuffle_at_event_start\`: Boolean indicating if the event will shuffle users in the prequeue when it starts. This can only be set to **true** if an event is active (\`event\` is not **none**). + * - **prequeueing** indicates that an event is prequeueing (between `prequeue_start_time` and `event_start_time`). + * - **started** indicates that an event has started (between `event_start_time` and `event_end_time`). + * 5. `shuffle_at_event_start`: Boolean indicating if the event will shuffle users in the prequeue when it starts. This can only be set to **true** if an event is active (`event` is not **none**). * - * For example, you can make a request to \`http://waitingrooms.dev/preview/?force_queue=false&queue_is_full=false&queueing_method=random&event=started&shuffle_at_event_start=true\` - * 6. \`waitTime\`: Non-zero, positive integer indicating the estimated wait time in minutes. The default value is 10 minutes. + * For example, you can make a request to `http://waitingrooms.dev/preview/?force_queue=false&queue_is_full=false&queueing_method=random&event=started&shuffle_at_event_start=true` + * 6. `waitTime`: Non-zero, positive integer indicating the estimated wait time in minutes. The default value is 10 minutes. * - * For example, you can make a request to \`http://waitingrooms.dev/preview/?waitTime=50\` to configure the estimated wait time as 50 minutes. + * For example, you can make a request to `http://waitingrooms.dev/preview/?waitTime=50` to configure the estimated wait time as 50 minutes. */ export const waiting$room$create$a$custom$waiting$room$page$preview = (apiClient: ApiClient) => (params: Params$waiting$room$create$a$custom$waiting$room$page$preview, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/preview\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74462,7 +74459,7 @@ export const waiting$room$create$a$custom$waiting$room$page$preview = (apiClient: ApiClient) => (params: Params$waiting$room$get$zone$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { Accept: "application/json" }; @@ -74474,7 +74471,7 @@ export const waiting$room$get$zone$settings = (apiClient: ApiClie }; /** Update zone-level Waiting Room settings */ export const waiting$room$update$zone$settings = (apiClient: ApiClient) => (params: Params$waiting$room$update$zone$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74488,7 +74485,7 @@ export const waiting$room$update$zone$settings = (apiClient: ApiC }; /** Patch zone-level Waiting Room settings */ export const waiting$room$patch$zone$settings = (apiClient: ApiClient) => (params: Params$waiting$room$patch$zone$settings, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74502,7 +74499,7 @@ export const waiting$room$patch$zone$settings = (apiClient: ApiCl }; /** List Web3 Hostnames */ export const web3$hostname$list$web3$hostnames = (apiClient: ApiClient) => (params: Params$web3$hostname$list$web3$hostnames, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames`; const headers = { Accept: "application/json" }; @@ -74514,7 +74511,7 @@ export const web3$hostname$list$web3$hostnames = (apiClient: ApiC }; /** Create Web3 Hostname */ export const web3$hostname$create$web3$hostname = (apiClient: ApiClient) => (params: Params$web3$hostname$create$web3$hostname, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74528,7 +74525,7 @@ export const web3$hostname$create$web3$hostname = (apiClient: Api }; /** Web3 Hostname Details */ export const web3$hostname$web3$hostname$details = (apiClient: ApiClient) => (params: Params$web3$hostname$web3$hostname$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74540,7 +74537,7 @@ export const web3$hostname$web3$hostname$details = (apiClient: Ap }; /** Delete Web3 Hostname */ export const web3$hostname$delete$web3$hostname = (apiClient: ApiClient) => (params: Params$web3$hostname$delete$web3$hostname, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74552,7 +74549,7 @@ export const web3$hostname$delete$web3$hostname = (apiClient: Api }; /** Edit Web3 Hostname */ export const web3$hostname$edit$web3$hostname = (apiClient: ApiClient) => (params: Params$web3$hostname$edit$web3$hostname, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74566,7 +74563,7 @@ export const web3$hostname$edit$web3$hostname = (apiClient: ApiCl }; /** IPFS Universal Path Gateway Content List Details */ export const web3$hostname$ipfs$universal$path$gateway$content$list$details = (apiClient: ApiClient) => (params: Params$web3$hostname$ipfs$universal$path$gateway$content$list$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list`; const headers = { Accept: "application/json" }; @@ -74578,7 +74575,7 @@ export const web3$hostname$ipfs$universal$path$gateway$content$list$details = (apiClient: ApiClient) => (params: Params$web3$hostname$update$ipfs$universal$path$gateway$content$list, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74592,7 +74589,7 @@ export const web3$hostname$update$ipfs$universal$path$gateway$content$list = (apiClient: ApiClient) => (params: Params$web3$hostname$list$ipfs$universal$path$gateway$content$list$entries, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries`; const headers = { Accept: "application/json" }; @@ -74604,7 +74601,7 @@ export const web3$hostname$list$ipfs$universal$path$gateway$content$list$entries }; /** Create IPFS Universal Path Gateway Content List Entry */ export const web3$hostname$create$ipfs$universal$path$gateway$content$list$entry = (apiClient: ApiClient) => (params: Params$web3$hostname$create$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74618,7 +74615,7 @@ export const web3$hostname$create$ipfs$universal$path$gateway$content$list$entry }; /** IPFS Universal Path Gateway Content List Entry Details */ export const web3$hostname$ipfs$universal$path$gateway$content$list$entry$details = (apiClient: ApiClient) => (params: Params$web3$hostname$ipfs$universal$path$gateway$content$list$entry$details, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { Accept: "application/json" }; @@ -74630,7 +74627,7 @@ export const web3$hostname$ipfs$universal$path$gateway$content$list$entry$detail }; /** Edit IPFS Universal Path Gateway Content List Entry */ export const web3$hostname$edit$ipfs$universal$path$gateway$content$list$entry = (apiClient: ApiClient) => (params: Params$web3$hostname$edit$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74644,7 +74641,7 @@ export const web3$hostname$edit$ipfs$universal$path$gateway$content$list$entry = }; /** Delete IPFS Universal Path Gateway Content List Entry */ export const web3$hostname$delete$ipfs$universal$path$gateway$content$list$entry = (apiClient: ApiClient) => (params: Params$web3$hostname$delete$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { Accept: "application/json" }; @@ -74659,7 +74656,7 @@ export const web3$hostname$delete$ipfs$universal$path$gateway$content$list$entry * Retrieves analytics aggregated from the last minute of usage on Spectrum applications underneath a given zone. */ export const spectrum$aggregate$analytics$get$current$aggregated$analytics = (apiClient: ApiClient) => (params: Params$spectrum$aggregate$analytics$get$current$aggregated$analytics, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/aggregate/current\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/aggregate/current`; const headers = { Accept: "application/json" }; @@ -74680,7 +74677,7 @@ export const spectrum$aggregate$analytics$get$current$aggregated$analytics = (apiClient: ApiClient) => (params: Params$spectrum$analytics$$$by$time$$get$analytics$by$time, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/bytime\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/bytime`; const headers = { Accept: "application/json" }; @@ -74705,7 +74702,7 @@ export const spectrum$analytics$$$by$time$$get$analytics$by$time = (apiClient: ApiClient) => (params: Params$spectrum$analytics$$$summary$$get$analytics$summary, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/summary\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/summary`; const headers = { Accept: "application/json" }; @@ -74729,7 +74726,7 @@ export const spectrum$analytics$$$summary$$get$analytics$summary = (apiClient: ApiClient) => (params: Params$spectrum$applications$list$spectrum$applications, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps`; const headers = { Accept: "application/json" }; @@ -74751,7 +74748,7 @@ export const spectrum$applications$list$spectrum$applications = ( * Creates a new Spectrum application from a configuration using a name for the origin. */ export const spectrum$applications$create$spectrum$application$using$a$name$for$the$origin = (apiClient: ApiClient) => (params: Params$spectrum$applications$create$spectrum$application$using$a$name$for$the$origin, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74768,7 +74765,7 @@ export const spectrum$applications$create$spectrum$application$using$a$name$for$ * Gets the application configuration of a specific application inside a zone. */ export const spectrum$applications$get$spectrum$application$configuration = (apiClient: ApiClient) => (params: Params$spectrum$applications$get$spectrum$application$configuration, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -74783,7 +74780,7 @@ export const spectrum$applications$get$spectrum$application$configuration = (apiClient: ApiClient) => (params: Params$spectrum$applications$update$spectrum$application$configuration$using$a$name$for$the$origin, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74800,7 +74797,7 @@ export const spectrum$applications$update$spectrum$application$configuration$usi * Deletes a previously existing application. */ export const spectrum$applications$delete$spectrum$application = (apiClient: ApiClient) => (params: Params$spectrum$applications$delete$spectrum$application, option?: RequestOption): Promise => { - const uri = \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const uri = `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -74810,5 +74807,3 @@ export const spectrum$applications$delete$spectrum$application = headers }, option); }; -" -`; diff --git a/test/__tests__/currying-functional/coudflare-test.ts b/test/__tests__/currying-functional/coudflare-test.ts index f1a0d706..3d301e4a 100644 --- a/test/__tests__/currying-functional/coudflare-test.ts +++ b/test/__tests__/currying-functional/coudflare-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Unknown", () => { - test("client.ts", () => { + test("client.ts", async () => { const generateCode = fs.readFileSync("test/code/currying-functional/cloudflare/client.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/cloudflare/client.ts"); }); }); diff --git a/test/__tests__/functional/__snapshots__/argo-rollout-test.ts.snap b/test/__tests__/functional/__snapshots__/argo-rollout/client.ts similarity index 98% rename from test/__tests__/functional/__snapshots__/argo-rollout-test.ts.snap rename to test/__tests__/functional/__snapshots__/argo-rollout/client.ts index a61b89cc..71b6361b 100644 --- a/test/__tests__/functional/__snapshots__/argo-rollout-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/argo-rollout/client.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Argo Rollout > client.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.0 // @@ -11,7 +8,7 @@ exports[`Argo Rollout > client.ts 1`] = ` export namespace Schemas { export interface github$com$argoproj$argo_rollouts$pkg$apis$rollouts$v1alpha1$ALBTrafficRouting { - /** Ingress refers to the name of an \`Ingress\` resource in the same namespace as the \`Rollout\` */ + /** Ingress refers to the name of an `Ingress` resource in the same namespace as the `Rollout` */ ingress?: string; /** ServicePort refers to the port that the Ingress action should route traffic to */ servicePort?: number; @@ -218,7 +215,7 @@ export namespace Schemas { * +optional */ annotationPrefix?: string; - /** StableIngress refers to the name of an \`Ingress\` resource in the same namespace as the \`Rollout\` */ + /** StableIngress refers to the name of an `Ingress` resource in the same namespace as the `Rollout` */ stableIngress?: string; /** +optional */ additionalIngressAnnotations?: { @@ -2295,7 +2292,7 @@ export namespace Schemas { /** * If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). * In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). - * In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\SYSTEM\\\\CurrentControlSet\\\\Services\\\\Tcpip\\\\Parameters to FQDN. + * In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. * If a pod does not have FQDN, this has no effect. * Default to false. * +optional @@ -2883,7 +2880,7 @@ export namespace Schemas { export interface k8s$io$api$core$v1$TopologySpreadConstraint { /** * MaxSkew describes the degree to which pods may be unevenly distributed. - * When \`whenUnsatisfiable=DoNotSchedule\`, it is the maximum permitted difference + * When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference * between the number of matching pods in the target topology and the global minimum. * For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same * labelSelector spread as 1/1/0: @@ -2896,7 +2893,7 @@ export namespace Schemas { * scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) * violate MaxSkew(1). * - if MaxSkew is 2, incoming pod can be scheduled onto any zone. - * When \`whenUnsatisfiable=ScheduleAnyway\`, it is used to give higher precedence + * When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence * to topologies that satisfy it. * It's a required field. Default value is 1 and 0 is not allowed. */ @@ -3845,10 +3842,10 @@ export interface ApiClient { request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; } export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); + const _baseUrl = baseUrl.replace(/\/$/, ""); return { RolloutService_GetNamespace: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespace\`; + const url = _baseUrl + `/api/v1/namespace`; const headers = { Accept: "application/json" }; @@ -3859,7 +3856,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_ListRolloutInfos: (params: Params$RolloutService_ListRolloutInfos, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/info\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/info`; const headers = { Accept: "application/json" }; @@ -3870,7 +3867,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_WatchRolloutInfos: (params: Params$RolloutService_WatchRolloutInfos, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/info/watch\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/info/watch`; const headers = { Accept: "application/json" }; @@ -3881,7 +3878,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_AbortRollout: (params: Params$RolloutService_AbortRollout, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/abort\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/abort`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3894,7 +3891,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_GetRolloutInfo: (params: Params$RolloutService_GetRolloutInfo, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/info\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/info`; const headers = { Accept: "application/json" }; @@ -3905,7 +3902,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_WatchRolloutInfo: (params: Params$RolloutService_WatchRolloutInfo, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/info/watch\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/info/watch`; const headers = { Accept: "application/json" }; @@ -3916,7 +3913,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_PromoteRollout: (params: Params$RolloutService_PromoteRollout, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/promote\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/promote`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3929,7 +3926,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_RestartRollout: (params: Params$RolloutService_RestartRollout, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/restart\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/restart`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3942,7 +3939,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_RetryRollout: (params: Params$RolloutService_RetryRollout, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.name)}/retry\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.name)}/retry`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3955,7 +3952,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_SetRolloutImage: (params: Params$RolloutService_SetRolloutImage, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.rollout)}/set/\${encodeURIComponent(params.parameter.container)}/\${encodeURIComponent(params.parameter.image)}/\${encodeURIComponent(params.parameter.tag)}\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.rollout)}/set/${encodeURIComponent(params.parameter.container)}/${encodeURIComponent(params.parameter.image)}/${encodeURIComponent(params.parameter.tag)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3968,7 +3965,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_UndoRollout: (params: Params$RolloutService_UndoRollout, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/rollouts/\${encodeURIComponent(params.parameter.namespace)}/\${encodeURIComponent(params.parameter.rollout)}/undo/\${encodeURIComponent(params.parameter.revision)}\`; + const url = _baseUrl + `/api/v1/rollouts/${encodeURIComponent(params.parameter.namespace)}/${encodeURIComponent(params.parameter.rollout)}/undo/${encodeURIComponent(params.parameter.revision)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -3981,7 +3978,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, RolloutService_Version: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/version\`; + const url = _baseUrl + `/api/v1/version`; const headers = { Accept: "application/json" }; @@ -3995,5 +3992,3 @@ export const createClient = (apiClient: ApiClient, }; type ClientFunction = typeof createClient; export type Client = ReturnType>; -" -`; diff --git a/test/__tests__/functional/__snapshots__/coudflare-test.ts.snap b/test/__tests__/functional/__snapshots__/cloudflare/client.ts similarity index 93% rename from test/__tests__/functional/__snapshots__/coudflare-test.ts.snap rename to test/__tests__/functional/__snapshots__/cloudflare/client.ts index a401ec27..933e3085 100644 --- a/test/__tests__/functional/__snapshots__/coudflare-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/cloudflare/client.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Unknown > client.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.3 // @@ -878,16 +875,16 @@ export namespace Schemas { code: number; message: string; }[]; - /** The maximum number of bytes to capture. This field only applies to \`full\` packet captures. */ + /** The maximum number of bytes to capture. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_byte_limit = number; export type SxDaNi5K_pcaps_collection_response = Schemas.SxDaNi5K_api$response$collection & { result?: (Schemas.SxDaNi5K_pcaps_response_simple | Schemas.SxDaNi5K_pcaps_response_full)[]; }; - /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to \`full\` packet captures. */ + /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_colo_name = string; - /** The full URI for the bucket. This field only applies to \`full\` packet captures. */ + /** The full URI for the bucket. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_destination_conf = string; - /** An error message that describes why the packet capture failed. This field only applies to \`full\` packet captures. */ + /** An error message that describes why the packet capture failed. This field only applies to `full` packet captures. */ export type SxDaNi5K_pcaps_error_message = string; /** The packet capture filter. When this field is empty, all packets are captured. */ export interface SxDaNi5K_pcaps_filter_v1 { @@ -984,7 +981,7 @@ export namespace Schemas { export type SxDaNi5K_pcaps_system = "magic-transit"; /** The packet capture duration in seconds. */ export type SxDaNi5K_pcaps_time_limit = number; - /** The type of packet capture. \`Simple\` captures sampled packets, and \`full\` captures entire payloads and non-sampled packets. */ + /** The type of packet capture. `Simple` captures sampled packets, and `full` captures entire payloads and non-sampled packets. */ export type SxDaNi5K_pcaps_type = "simple" | "full"; export interface SxDaNi5K_result_info { /** Total number of results for the requested service */ @@ -1479,7 +1476,7 @@ export namespace Schemas { export type access_allow_all_origins = boolean; /** When set to true, users can authenticate via WARP for any application in your organization. Application settings will take precedence over this value. */ export type access_allow_authenticate_via_warp = boolean; - /** When set to \`true\`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ + /** When set to `true`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ export type access_allow_credentials = boolean; /** The result of the authentication event. */ export type access_allowed = boolean; @@ -1573,7 +1570,7 @@ export namespace Schemas { auth_method: string; }; } - /** When set to \`true\`, users skip the identity provider selection step during login. */ + /** When set to `true`, users skip the identity provider selection step during login. */ export type access_auto_redirect_to_identity = boolean; /** * Matches an Azure group. @@ -1678,9 +1675,9 @@ export namespace Schemas { export type access_certificates_components$schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_certificates; }; - /** The Client ID for the service token. Access will check for this value in the \`CF-Access-Client-ID\` request header. */ + /** The Client ID for the service token. Access will check for this value in the `CF-Access-Client-ID` request header. */ export type access_client_id = string; - /** The Client Secret for the service token. Access will check for this value in the \`CF-Access-Client-Secret\` request header. */ + /** The Client Secret for the service token. Access will check for this value in the `CF-Access-Client-Secret` request header. */ export type access_client_secret = string; /** The domain and path that Access will secure. */ export type access_components$schemas$domain = string; @@ -1694,7 +1691,7 @@ export namespace Schemas { export type access_components$schemas$response_collection = Schemas.access_api$response$collection & { result?: Schemas.access_service$tokens[]; }; - /** The amount of time that tokens issued for the application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for the application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_components$schemas$session_duration = string; export type access_components$schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_groups; @@ -1801,7 +1798,7 @@ export namespace Schemas { domain: string; }; } - /** The duration for how long the service token will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. The default is 1 year in hours (8760h). */ + /** The duration for how long the service token will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. The default is 1 year in hours (8760h). */ export type access_duration = string; /** The email address of the authenticating user. */ export type access_email = string; @@ -2308,7 +2305,7 @@ export namespace Schemas { export type access_schemas$apps = (Schemas.access_basic_app_response_props & Schemas.access_schemas$self_hosted_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$saas_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$ssh_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$vnc_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$app_launcher_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$warp_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$biso_props) | (Schemas.access_basic_app_response_props & Schemas.access_schemas$bookmark_props); /** Audience tag. */ export type access_schemas$aud = string; - /** When set to \`true\`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ + /** When set to `true`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ export type access_schemas$auto_redirect_to_identity = boolean; export type access_schemas$azureAD = Schemas.access_schemas$identity$provider & { config?: Schemas.access_generic$oauth$config & { @@ -2582,7 +2579,7 @@ export namespace Schemas { /** The application type. */ type: string; } - /** The amount of time that tokens issued for this application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for this application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_schemas$session_duration = string; export type access_schemas$single_response = Schemas.access_api$response$single & { result?: Schemas.access_identity$providers; @@ -2674,7 +2671,7 @@ export namespace Schemas { token_id: string; }; } - /** The amount of time that tokens issued for applications will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for applications will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type access_session_duration = string; export interface access_settings { /** Request client certificates for this hostname in China. Can only be set to true if this zone is china network enabled. */ @@ -2729,7 +2726,7 @@ export namespace Schemas { export type access_ui_read_only_toggle_reason = string; /** The unique API identifier for the user. */ export type access_uid = any; - /** The amount of time a user seat is inactive before it expires. When the user seat exceeds the set time of inactivity, the user is removed as an active seat and no longer counts against your Teams seat count. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: \`ns\`, \`us\` (or \`µs\`), \`ms\`, \`s\`, \`m\`, \`h\`. */ + /** The amount of time a user seat is inactive before it expires. When the user seat exceeds the set time of inactivity, the user is removed as an active seat and no longer counts against your Teams seat count. Must be in the format `300ms` or `2h45m`. Valid time units are: `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. */ export type access_user_seat_expiration_inactive_time = string; export interface access_users { access_seat?: Schemas.access_schemas$access_seat; @@ -2762,7 +2759,7 @@ export namespace Schemas { /** The application type. */ type?: string; }; - /** The amount of time that tokens issued for applications will be valid. Must be in the format \`30m\` or \`2h45m\`. Valid time units are: m, h. */ + /** The amount of time that tokens issued for applications will be valid. Must be in the format `30m` or `2h45m`. Valid time units are: m, h. */ export type access_warp_auth_session_duration = string; export type access_warp_props = Schemas.access_feature_app_props & { readonly domain?: any; @@ -2937,7 +2934,7 @@ export namespace Schemas { export type addressing_ipv4_cidrs = string[]; /** List of Cloudflare IPv6 CIDR addresses. */ export type addressing_ipv6_cidrs = string[]; - /** List IPv4 and IPv6 CIDRs, only populated if \`?networks=jdcloud\` is used. */ + /** List IPv4 and IPv6 CIDRs, only populated if `?networks=jdcloud` is used. */ export type addressing_jdcloud_cidrs = string[]; /** The type of the membership. */ export type addressing_kind = "zone" | "account"; @@ -3074,7 +3071,7 @@ export namespace Schemas { result?: ({} | null) | (string | null); }; export type api$shield_api$shield = Schemas.api$shield_operation; - /** * \`ML\` - Discovered operation was sourced using ML API Discovery * \`SessionIdentifier\` - Discovered operation was sourced using Session Identifier API Discovery */ + /** * `ML` - Discovered operation was sourced using ML API Discovery * `SessionIdentifier` - Discovered operation was sourced using Session Identifier API Discovery */ export type api$shield_api_discovery_origin = "ML" | "SessionIdentifier"; export interface api$shield_api_discovery_patch_multiple_request { } @@ -3085,15 +3082,15 @@ export namespace Schemas { } /** * State of operation in API Discovery - * * \`review\` - Operation is not saved into API Shield Endpoint Management - * * \`saved\` - Operation is saved into API Shield Endpoint Management - * * \`ignored\` - Operation is marked as ignored + * * `review` - Operation is not saved into API Shield Endpoint Management + * * `saved` - Operation is saved into API Shield Endpoint Management + * * `ignored` - Operation is marked as ignored */ export type api$shield_api_discovery_state = "review" | "saved" | "ignored"; /** * Mark state of operation in API Discovery - * * \`review\` - Mark operation as for review - * * \`ignored\` - Mark operation as ignored + * * `review` - Mark operation as for review + * * `ignored` - Mark operation as ignored */ export type api$shield_api_discovery_state_patch = "review" | "ignored"; /** The total number of auth-ids seen across this calculation. */ @@ -3179,10 +3176,10 @@ export namespace Schemas { /** * When set, this applies a mitigation action to this operation * - * - \`log\` log request when request does not conform to schema for this operation - * - \`block\` deny access to the site when request does not conform to schema for this operation - * - \`none\` will skip mitigation for this operation - * - \`null\` indicates that no operation level mitigation is in place, see Zone Level Schema Validation Settings for mitigation action that will be applied + * - `log` log request when request does not conform to schema for this operation + * - `block` deny access to the site when request does not conform to schema for this operation + * - `none` will skip mitigation for this operation + * - `null` indicates that no operation level mitigation is in place, see Zone Level Schema Validation Settings for mitigation action that will be applied */ export type api$shield_operation_mitigation_action = string | null; export interface api$shield_operation_schema_validation_settings { @@ -3305,22 +3302,22 @@ export namespace Schemas { * * Mitigation actions are as follows: * - * * \`log\` - log request when request does not conform to schema - * * \`block\` - deny access to the site when request does not conform to schema + * * `log` - log request when request does not conform to schema + * * `block` - deny access to the site when request does not conform to schema * - * A special value of of \`none\` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation + * A special value of of `none` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation */ export type api$shield_validation_default_mitigation_action = "none" | "log" | "block"; /** * The default mitigation action used when there is no mitigation action defined on the operation * Mitigation actions are as follows: * - * * \`log\` - log request when request does not conform to schema - * * \`block\` - deny access to the site when request does not conform to schema + * * `log` - log request when request does not conform to schema + * * `block` - deny access to the site when request does not conform to schema * - * A special value of of \`none\` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation + * A special value of of `none` will skip running schema validation entirely for the request when there is no mitigation action defined on the operation * - * \`null\` will have no effect. + * `null` will have no effect. */ export type api$shield_validation_default_mitigation_action_patch = string | null; /** Flag whether schema is enabled for validation. */ @@ -3328,27 +3325,27 @@ export namespace Schemas { /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request - * - \`null\` indicates that no override is in place + * - `none` will skip running schema validation entirely for the request + * - `null` indicates that no override is in place */ export type api$shield_validation_override_mitigation_action = string | null; /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request + * - `none` will skip running schema validation entirely for the request * - * To clear any override, use the special value \`disable_override\` + * To clear any override, use the special value `disable_override` * - * \`null\` will have no effect. + * `null` will have no effect. */ export type api$shield_validation_override_mitigation_action_patch = string | null; /** * When set, this overrides both zone level and operation level mitigation actions. * - * - \`none\` will skip running schema validation entirely for the request - * - \`null\` indicates that no override is in place + * - `none` will skip running schema validation entirely for the request + * - `null` indicates that no override is in place * - * To clear any override, use the special value \`disable_override\` or \`null\` + * To clear any override, use the special value `disable_override` or `null` */ export type api$shield_validation_override_mitigation_action_write = string | null; export interface api$shield_zone_schema_validation_settings { @@ -4064,7 +4061,7 @@ export namespace Schemas { /** Total number of requests served from the origin. */ uncached?: number; } - /** When \`?sample=\` is provided, a sample of matching records is returned. If \`sample=0.1\` then 10% of records will be returned. Sampling is random: repeated calls will not only return different records, but likely will also vary slightly in number of returned records. When \`?count=\` is also specified, \`count\` is applied to the number of returned records, not the sampled records. So, with \`sample=0.05\` and \`count=7\`, when there is a total of 100 records available, approximately five will be returned. When there are 1000 records, seven will be returned. When there are 10,000 records, seven will be returned. */ + /** When `?sample=` is provided, a sample of matching records is returned. If `sample=0.1` then 10% of records will be returned. Sampling is random: repeated calls will not only return different records, but likely will also vary slightly in number of returned records. When `?count=` is also specified, `count` is applied to the number of returned records, not the sampled records. So, with `sample=0.05` and `count=7`, when there is a total of 100 records available, approximately five will be returned. When there are 1000 records, seven will be returned. When there are 10,000 records, seven will be returned. */ export type dFBpZBFx_sample = number; export type dFBpZBFx_since = string | number; /** Breakdown of totals for threats. */ @@ -4094,7 +4091,7 @@ export namespace Schemas { threats?: Schemas.dFBpZBFx_threats; until?: Schemas.dFBpZBFx_until; }[]; - /** By default, timestamps in responses are returned as Unix nanosecond integers. The \`?timestamps=\` argument can be set to change the format in which response timestamps are returned. Possible values are: \`unix\`, \`unixnano\`, \`rfc3339\`. Note that \`unix\` and \`unixnano\` return timestamps as integers; \`rfc3339\` returns timestamps as strings. */ + /** By default, timestamps in responses are returned as Unix nanosecond integers. The `?timestamps=` argument can be set to change the format in which response timestamps are returned. Possible values are: `unix`, `unixnano`, `rfc3339`. Note that `unix` and `unixnano` return timestamps as integers; `rfc3339` returns timestamps as strings. */ export type dFBpZBFx_timestamps = "unix" | "unixnano" | "rfc3339"; /** Breakdown of totals by data type. */ export interface dFBpZBFx_totals { @@ -5311,7 +5308,7 @@ export namespace Schemas { }; /** Identifier */ export type dns$records_identifier = string; - /** Whether to match all search requirements or at least one (any). If set to \`all\`, acts like a logical AND between filters. If set to \`any\`, acts like a logical OR instead. Note that the interaction between tag filters is controlled by the \`tag-match\` parameter instead. */ + /** Whether to match all search requirements or at least one (any). If set to `all`, acts like a logical AND between filters. If set to `any`, acts like a logical OR instead. Note that the interaction between tag filters is controlled by the `tag-match` parameter instead. */ export type dns$records_match = "any" | "all"; export type dns$records_messages = { code: number; @@ -5339,9 +5336,9 @@ export namespace Schemas { /** Total results available without any search parameters */ total_count?: number; } - /** Allows searching in multiple properties of a DNS record simultaneously. This parameter is intended for human users, not automation. Its exact behavior is intentionally left unspecified and is subject to change in the future. This parameter works independently of the \`match\` setting. For automated searches, please use the other available parameters. */ + /** Allows searching in multiple properties of a DNS record simultaneously. This parameter is intended for human users, not automation. Its exact behavior is intentionally left unspecified and is subject to change in the future. This parameter works independently of the `match` setting. For automated searches, please use the other available parameters. */ export type dns$records_search = string; - /** Whether to match all tag search requirements or at least one (any). If set to \`all\`, acts like a logical AND between tag filters. If set to \`any\`, acts like a logical OR instead. Note that the regular \`match\` parameter is still used to combine the resulting condition with other filters that aren't related to tags. */ + /** Whether to match all tag search requirements or at least one (any). If set to `all`, acts like a logical AND between tag filters. If set to `any`, acts like a logical OR instead. Note that the regular `match` parameter is still used to combine the resulting condition with other filters that aren't related to tags. */ export type dns$records_tag_match = "any" | "all"; /** Custom tags for the DNS record. This field has no effect on DNS responses. */ export type dns$records_tags = string[]; @@ -5744,7 +5741,7 @@ export namespace Schemas { success: boolean; } /** - * If bot_fight_mode is set to \`true\`, Cloudflare issues computationally + * If bot_fight_mode is set to `true`, Cloudflare issues computationally * expensive challenges in response to malicious bots (ENT only). */ export type grwMffPV_bot_fight_mode = boolean; @@ -5759,7 +5756,7 @@ export namespace Schemas { /** Identifier */ export type grwMffPV_identifier = string; /** - * If \`invalidate_immediately\` is set to \`false\`, the previous secret will + * If `invalidate_immediately` is set to `false`, the previous secret will * remain valid for two hours. Otherwise, the secret is immediately * invalidated, and requests using it will be rejected. */ @@ -6110,7 +6107,7 @@ export namespace Schemas { export interface images_image_patch_request { /** User modifiable key-value store. Can be used for keeping references to another system of record for managing images. No change if not specified. */ metadata?: {}; - /** Indicates whether the image can be accessed using only its UID. If set to \`true\`, a signed token needs to be generated with a signing key to view the image. Returns a new UID on a change. No change if not specified. */ + /** Indicates whether the image can be accessed using only its UID. If set to `true`, a signed token needs to be generated with a signing key to view the image. Returns a new UID on a change. No change if not specified. */ requireSignedURLs?: boolean; } /** Indicates whether the image can be a accessed only using it's UID. If set to true, a signed token needs to be generated with a signing key to view the image. */ @@ -6303,7 +6300,7 @@ export namespace Schemas { /** Identifier */ export type intel_identifier = string; export type intel_inherited_content_categories = Schemas.intel_categories_with_super_category_ids_example_empty; - /** Domain from which \`inherited_content_categories\` and \`inherited_risk_types\` are inherited, if applicable. */ + /** Domain from which `inherited_content_categories` and `inherited_risk_types` are inherited, if applicable. */ export type intel_inherited_from = string; export type intel_inherited_risk_types = Schemas.intel_categories_with_super_category_ids_example_empty; export type intel_ip = Schemas.intel_ipv4 | Schemas.intel_ipv6; @@ -6324,13 +6321,13 @@ export namespace Schemas { /** Content category IDs to remove. */ content_removes?: any; indicator_type?: "domain" | "ipv4" | "ipv6" | "url"; - /** Provide only if indicator_type is \`ipv4\` or \`ipv6\`. */ + /** Provide only if indicator_type is `ipv4` or `ipv6`. */ ip?: any; /** Security category IDs to add. */ security_adds?: any; /** Security category IDs to remove. */ security_removes?: any; - /** Provide only if indicator_type is \`domain\` or \`url\`. Example if indicator_type is \`domain\`: \`example.com\`. Example if indicator_type is \`url\`: \`https://example.com/news/\`. */ + /** Provide only if indicator_type is `domain` or `url`. Example if indicator_type is `domain`: `example.com`. Example if indicator_type is `url`: `https://example.com/news/`. */ url?: string; } /** Current page within paginated list of results. */ @@ -6656,7 +6653,7 @@ export namespace Schemas { } /** Controls features that modify the routing of requests to pools and origins in response to dynamic conditions, such as during the interval between active health monitoring requests. For example, zero-downtime failover occurs immediately when an origin becomes unavailable due to HTTP 521, 522, or 523 response codes. If there is another healthy origin in the same pool, the request is retried once against this alternate origin. */ export interface legacy$jhs_adaptive_routing { - /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See \`session_affinity_attributes\` for control over when sessions are broken or reassigned. */ + /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See `session_affinity_attributes` for control over when sessions are broken or reassigned. */ failover_across_pools?: boolean; } /** Additional information related to the host name. */ @@ -6743,7 +6740,7 @@ export namespace Schemas { export type legacy$jhs_allow_all_methods = boolean; /** Allows all origins. */ export type legacy$jhs_allow_all_origins = boolean; - /** When set to \`true\`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ + /** When set to `true`, includes credentials (cookies, authorization headers, or TLS client certificates) with requests. */ export type legacy$jhs_allow_credentials = boolean; /** Do not validate the certificate when monitor use HTTPS. This parameter is currently only valid for HTTP and HTTPS monitors. */ export type legacy$jhs_allow_insecure = boolean; @@ -6906,7 +6903,7 @@ export namespace Schemas { result?: Schemas.legacy$jhs_asn_components$schemas$asn; }; export interface legacy$jhs_asn_configuration { - /** The configuration target. You must set the target to \`asn\` when specifying an Autonomous System Number (ASN) in the rule. */ + /** The configuration target. You must set the target to `asn` when specifying an Autonomous System Number (ASN) in the rule. */ target?: "asn"; /** The AS number to match. */ value?: string; @@ -6932,7 +6929,7 @@ export namespace Schemas { export type legacy$jhs_auth_id_tokens = number; /** The amount of time in minutes to reconnect after having been disabled. */ export type legacy$jhs_auto_connect = number; - /** When set to \`true\`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ + /** When set to `true`, users skip the identity provider selection step during login. You must specify only one identity provider in allowed_idps. */ export type legacy$jhs_auto_redirect_to_identity = boolean; /** * Matches an Azure group. @@ -7216,18 +7213,18 @@ export namespace Schemas { /** IP Prefix in Classless Inter-Domain Routing format. */ export type legacy$jhs_cidr = string; export interface legacy$jhs_cidr_configuration { - /** The configuration target. You must set the target to \`ip_range\` when specifying an IP address range in the rule. */ + /** The configuration target. You must set the target to `ip_range` when specifying an IP address range in the rule. */ target?: "ip_range"; - /** The IP address range to match. You can only use prefix lengths \`/16\` and \`/24\` for IPv4 ranges, and prefix lengths \`/32\`, \`/48\`, and \`/64\` for IPv6 ranges. */ + /** The IP address range to match. You can only use prefix lengths `/16` and `/24` for IPv4 ranges, and prefix lengths `/32`, `/48`, and `/64` for IPv6 ranges. */ value?: string; } /** List of IPv4/IPv6 CIDR addresses. */ export type legacy$jhs_cidr_list = string[]; /** City. */ export type legacy$jhs_city = string; - /** The Client ID for the service token. Access will check for this value in the \`CF-Access-Client-ID\` request header. */ + /** The Client ID for the service token. Access will check for this value in the `CF-Access-Client-ID` request header. */ export type legacy$jhs_client_id = string; - /** The Client Secret for the service token. Access will check for this value in the \`CF-Access-Client-Secret\` request header. */ + /** The Client Secret for the service token. Access will check for this value in the `CF-Access-Client-Secret` request header. */ export type legacy$jhs_client_secret = string; /** Whether or not to add Cloudflare Branding for the order. This will add sni.cloudflaressl.com as the Common Name if set true. */ export type legacy$jhs_cloudflare_branding = boolean; @@ -7281,7 +7278,7 @@ export namespace Schemas { } /** The list of add-ons subscribed to. */ export type legacy$jhs_component_values = Schemas.legacy$jhs_component_value[]; - /** The action to apply to a matched request. The \`log\` action is only available on an Enterprise plan. */ + /** The action to apply to a matched request. The `log` action is only available on an Enterprise plan. */ export type legacy$jhs_components$schemas$action = "block" | "challenge" | "js_challenge" | "managed_challenge" | "allow" | "log" | "bypass"; export type legacy$jhs_components$schemas$asn = number; export interface legacy$jhs_components$schemas$base { @@ -7329,9 +7326,9 @@ export namespace Schemas { } /** The configuration object for the current rule. */ export interface legacy$jhs_components$schemas$configuration { - /** The configuration target for this rule. You must set the target to \`ua\` for User Agent Blocking rules. */ + /** The configuration target for this rule. You must set the target to `ua` for User Agent Blocking rules. */ target?: string; - /** The exact user agent string to match. This value will be compared to the received \`User-Agent\` HTTP header value. */ + /** The exact user agent string to match. This value will be compared to the received `User-Agent` HTTP header value. */ value?: string; } /** Shows time of creation. */ @@ -7365,7 +7362,7 @@ export namespace Schemas { export type legacy$jhs_components$schemas$kind = "zone" | "account"; /** The wirefilter expression to match devices. */ export type legacy$jhs_components$schemas$match = string; - /** The state of the rules contained in the rule group. When \`on\`, the rules in the group are configurable/usable. */ + /** The state of the rules contained in the rule group. When `on`, the rules in the group are configurable/usable. */ export type legacy$jhs_components$schemas$mode = "on" | "off"; /** The timestamp of when the rule was last modified. */ export type legacy$jhs_components$schemas$modified_on = Date; @@ -7583,7 +7580,7 @@ export namespace Schemas { }; /** Type of content list entry to block. */ export type legacy$jhs_content_list_entry_type = "cid" | "content_path"; - /** The content type of the body. Must be one of the following: \`text/plain\`, \`text/xml\`, or \`application/json\`. */ + /** The content type of the body. Must be one of the following: `text/plain`, `text/xml`, or `application/json`. */ export type legacy$jhs_content_type = string; export interface legacy$jhs_cors_headers { allow_all_headers?: Schemas.legacy$jhs_allow_all_headers; @@ -7598,7 +7595,7 @@ export namespace Schemas { /** The country in which the user lives. */ export type legacy$jhs_country = string | null; export interface legacy$jhs_country_configuration { - /** The configuration target. You must set the target to \`country\` when specifying a country code in the rule. */ + /** The configuration target. You must set the target to `country` when specifying a country code in the rule. */ target?: "country"; /** The two-letter ISO-3166-1 alpha-2 code to match. For more information, refer to [IP Access rules: Parameters](https://developers.cloudflare.com/waf/tools/ip-access-rules/parameters/#country). */ value?: string; @@ -7834,7 +7831,7 @@ export namespace Schemas { export type legacy$jhs_description = string; /** A string to search for in the description of existing rules. */ export type legacy$jhs_description_search = string; - /** The mode that defines how rules within the package are evaluated during the course of a request. When a package uses anomaly detection mode (\`anomaly\` value), each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined in the WAF package, the action configured in the package will be performed. Traditional detection mode (\`traditional\` value) will decide the action to take when it is triggered by the request. If multiple rules are triggered, the action providing the highest protection will be applied (for example, a 'block' action will win over a 'challenge' action). */ + /** The mode that defines how rules within the package are evaluated during the course of a request. When a package uses anomaly detection mode (`anomaly` value), each rule is given a score when triggered. If the total score of all triggered rules exceeds the sensitivity defined in the WAF package, the action configured in the package will be performed. Traditional detection mode (`traditional` value) will decide the action to take when it is triggered by the request. If multiple rules are triggered, the action providing the highest protection will be applied (for example, a 'block' action will win over a 'challenge' action). */ export type legacy$jhs_detection_mode = "anomaly" | "traditional"; export interface legacy$jhs_device$managed$networks { config?: Schemas.legacy$jhs_schemas$config_response; @@ -8104,7 +8101,7 @@ export namespace Schemas { export interface legacy$jhs_egs$pagination { /** The page number of paginated results. */ page?: number; - /** The maximum number of results per page. You can only set the value to \`1\` or to a multiple of 5 such as \`5\`, \`10\`, \`15\`, or \`20\`. */ + /** The maximum number of results per page. You can only set the value to `1` or to a multiple of 5 such as `5`, `10`, `15`, or `20`. */ per_page?: number; } export type legacy$jhs_either_profile_response = Schemas.legacy$jhs_api$response$single & { @@ -8343,7 +8340,7 @@ export namespace Schemas { export type legacy$jhs_group_components$schemas$identifier = string; /** The name of the rule group. */ export type legacy$jhs_group_components$schemas$name = string; - /** An object that allows you to enable or disable WAF rule groups for the current WAF override. Each key of this object must be the ID of a WAF rule group, and each value must be a valid WAF action (usually \`default\` or \`disable\`). When creating a new URI-based WAF override, you must provide a \`groups\` object or a \`rules\` object. */ + /** An object that allows you to enable or disable WAF rule groups for the current WAF override. Each key of this object must be the ID of a WAF rule group, and each value must be a valid WAF action (usually `default` or `disable`). When creating a new URI-based WAF override, you must provide a `groups` object or a `rules` object. */ export interface legacy$jhs_groups { } export type legacy$jhs_groups_components$schemas$id_response = Schemas.legacy$jhs_api$response$single & { @@ -8376,7 +8373,7 @@ export namespace Schemas { } /** The name of the response header to match. */ export type legacy$jhs_header_name = string; - /** The operator used when matching: \`eq\` means "equal" and \`ne\` means "not equal". */ + /** The operator used when matching: `eq` means "equal" and `ne` means "not equal". */ export type legacy$jhs_header_op = "eq" | "ne"; /** The value of the response header, which must match exactly. */ export type legacy$jhs_header_value = string; @@ -8537,7 +8534,7 @@ export namespace Schemas { risk_types?: any; } export interface legacy$jhs_ip_configuration { - /** The configuration target. You must set the target to \`ip\` when specifying an IP address in the rule. */ + /** The configuration target. You must set the target to `ip` when specifying an IP address in the rule. */ target?: "ip"; /** The IP address to match. This address will be compared to the IP address of incoming requests. */ value?: string; @@ -8612,12 +8609,12 @@ export namespace Schemas { export type legacy$jhs_ipv4 = string; export type legacy$jhs_ipv6 = string; export interface legacy$jhs_ipv6_configuration { - /** The configuration target. You must set the target to \`ip6\` when specifying an IPv6 address in the rule. */ + /** The configuration target. You must set the target to `ip6` when specifying an IPv6 address in the rule. */ target?: "ip6"; /** The IPv6 address to match. */ value?: string; } - /** If \`true\`, this virtual network is the default for the account. */ + /** If `true`, this virtual network is the default for the account. */ export type legacy$jhs_is_default_network = boolean; /** Lock all settings as Read-Only in the Dashboard, regardless of user permission. Updates may only be made via the API or Terraform for this account when enabled. */ export type legacy$jhs_is_ui_read_only = boolean; @@ -8810,20 +8807,20 @@ export namespace Schemas { /** Only the hash policy is supported for existing sessions (to avoid exponential decay). */ session_policy?: "hash"; } - /** Controls location-based steering for non-proxied requests. See \`steering_policy\` to learn how steering is affected. */ + /** Controls location-based steering for non-proxied requests. See `steering_policy` to learn how steering is affected. */ export interface legacy$jhs_location_strategy { /** * Determines the authoritative location when ECS is not preferred, does not exist in the request, or its GeoIP lookup is unsuccessful. - * - \`"pop"\`: Use the Cloudflare PoP location. - * - \`"resolver_ip"\`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. + * - `"pop"`: Use the Cloudflare PoP location. + * - `"resolver_ip"`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. */ mode?: "pop" | "resolver_ip"; /** * Whether the EDNS Client Subnet (ECS) GeoIP should be preferred as the authoritative location. - * - \`"always"\`: Always prefer ECS. - * - \`"never"\`: Never prefer ECS. - * - \`"proximity"\`: Prefer ECS only when \`steering_policy="proximity"\`. - * - \`"geo"\`: Prefer ECS only when \`steering_policy="geo"\`. + * - `"always"`: Always prefer ECS. + * - `"never"`: Never prefer ECS. + * - `"proximity"`: Prefer ECS only when `steering_policy="proximity"`. + * - `"geo"`: Prefer ECS only when `steering_policy="geo"`. */ prefer_ecs?: "always" | "never" | "proximity" | "geo"; } @@ -8902,7 +8899,7 @@ export namespace Schemas { } /** The HTTP method used to access the endpoint. */ export type legacy$jhs_method = "GET" | "POST" | "HEAD" | "OPTIONS" | "PUT" | "DELETE" | "CONNECT" | "PATCH" | "TRACE"; - /** The HTTP methods to match. You can specify a subset (for example, \`['POST','PUT']\`) or all methods (\`['_ALL_']\`). This field is optional when creating a rate limit. */ + /** The HTTP methods to match. You can specify a subset (for example, `['POST','PUT']`) or all methods (`['_ALL_']`). This field is optional when creating a rate limit. */ export type legacy$jhs_methods = ("GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "_ALL_")[]; /** Minimum RTT in ms. */ export type legacy$jhs_min_rtt_ms = number; @@ -8910,9 +8907,9 @@ export namespace Schemas { export type legacy$jhs_minimum_origins = number; /** The action to perform. */ export type legacy$jhs_mode = "simulate" | "ban" | "challenge" | "js_challenge" | "managed_challenge"; - /** When set to \`on\`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ + /** When set to `on`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ export type legacy$jhs_mode_allow_traditional = "on" | "off"; - /** When set to \`on\`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ + /** When set to `on`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ export type legacy$jhs_mode_anomaly = "on" | "off"; /** The action that the current WAF rule will perform when triggered. Applies to traditional (deny) WAF rules. */ export type legacy$jhs_mode_deny_traditional = "default" | "disable" | "simulate" | "block" | "challenge"; @@ -9150,7 +9147,7 @@ export namespace Schemas { export type legacy$jhs_package_components$schemas$identifier = string; /** The name of the WAF package. */ export type legacy$jhs_package_components$schemas$name = string; - /** When set to \`active\`, indicates that the WAF package will be applied to the zone. */ + /** When set to `active`, indicates that the WAF package will be applied to the zone. */ export type legacy$jhs_package_components$schemas$status = "active"; export interface legacy$jhs_package_definition { description: Schemas.legacy$jhs_package_components$schemas$description; @@ -9229,16 +9226,16 @@ export namespace Schemas { export type legacy$jhs_pattern = string; /** When true, indicates that the WAF package is currently paused. */ export type legacy$jhs_paused = boolean; - /** The maximum number of bytes to capture. This field only applies to \`full\` packet captures. */ + /** The maximum number of bytes to capture. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_byte_limit = number; export type legacy$jhs_pcaps_collection_response = Schemas.legacy$jhs_api$response$collection & { result?: (Schemas.legacy$jhs_pcaps_response_simple | Schemas.legacy$jhs_pcaps_response_full)[]; }; - /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to \`full\` packet captures. */ + /** The name of the data center used for the packet capture. This can be a specific colo (ord02) or a multi-colo name (ORD). This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_colo_name = string; - /** The full URI for the bucket. This field only applies to \`full\` packet captures. */ + /** The full URI for the bucket. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_destination_conf = string; - /** An error message that describes why the packet capture failed. This field only applies to \`full\` packet captures. */ + /** An error message that describes why the packet capture failed. This field only applies to `full` packet captures. */ export type legacy$jhs_pcaps_error_message = string; /** The packet capture filter. When this field is empty, all packets are captured. */ export interface legacy$jhs_pcaps_filter_v1 { @@ -9308,7 +9305,7 @@ export namespace Schemas { export type legacy$jhs_pcaps_system = "magic-transit"; /** The packet capture duration in seconds. */ export type legacy$jhs_pcaps_time_limit = number; - /** The type of packet capture. \`Simple\` captures sampled packets, and \`full\` captures entire payloads and non-sampled packets. */ + /** The type of packet capture. `Simple` captures sampled packets, and `full` captures entire payloads and non-sampled packets. */ export type legacy$jhs_pcaps_type = "simple" | "full"; /** The time in seconds (an integer value) to count matching traffic. If the count exceeds the configured threshold within this period, Cloudflare will perform the configured action. */ export type legacy$jhs_period = number; @@ -9551,7 +9548,7 @@ export namespace Schemas { export type legacy$jhs_profiles_components$schemas$response_collection = Schemas.legacy$jhs_api$response$collection & { result?: Schemas.legacy$jhs_profiles[]; }; - /** The port configuration at Cloudflare’s edge. May specify a single port, for example \`"tcp/1000"\`, or a range of ports, for example \`"tcp/1000-2000"\`. */ + /** The port configuration at Cloudflare’s edge. May specify a single port, for example `"tcp/1000"`, or a range of ports, for example `"tcp/1000-2000"`. */ export type legacy$jhs_protocol = string; /** Whether the hostname should be gray clouded (false) or orange clouded (true). */ export type legacy$jhs_proxied = boolean; @@ -9883,7 +9880,7 @@ export namespace Schemas { export type legacy$jhs_rule_single_response = Schemas.legacy$jhs_api$response$single & { result?: Schemas.legacy$jhs_rule; }; - /** An object that allows you to override the action of specific WAF rules. Each key of this object must be the ID of a WAF rule, and each value must be a valid WAF action. Unless you are disabling a rule, ensure that you also enable the rule group that this WAF rule belongs to. When creating a new URI-based WAF override, you must provide a \`groups\` object or a \`rules\` object. */ + /** An object that allows you to override the action of specific WAF rules. Each key of this object must be the ID of a WAF rule, and each value must be a valid WAF action. Unless you are disabling a rule, ensure that you also enable the rule group that this WAF rule belongs to. When creating a new URI-based WAF override, you must provide a `groups` object or a `rules` object. */ export interface legacy$jhs_rules { } /** The action to perform when the rule matches. */ @@ -9994,7 +9991,7 @@ export namespace Schemas { attribute_value: string; }; } - /** Polling frequency for the WARP client posture check. Default: \`5m\` (poll every five minutes). Minimum: \`1m\`. */ + /** Polling frequency for the WARP client posture check. Default: `5m` (poll every five minutes). Minimum: `1m`. */ export type legacy$jhs_schedule = string; export type legacy$jhs_schema_response_discovery = Schemas.legacy$jhs_default_response & { result?: { @@ -10073,9 +10070,9 @@ export namespace Schemas { /** The uploaded root CA certificate. */ export type legacy$jhs_schemas$certificates = string; export interface legacy$jhs_schemas$cidr_configuration { - /** The configuration target. You must set the target to \`ip_range\` when specifying an IP address range in the Zone Lockdown rule. */ + /** The configuration target. You must set the target to `ip_range` when specifying an IP address range in the Zone Lockdown rule. */ target?: "ip_range"; - /** The IP address range to match. You can only use prefix lengths \`/16\` and \`/24\`. */ + /** The IP address range to match. You can only use prefix lengths `/16` and `/24`. */ value?: string; } export type legacy$jhs_schemas$collection_invite_response = Schemas.legacy$jhs_api$response$collection & { @@ -10168,11 +10165,11 @@ export namespace Schemas { /** The target to search in existing rules. */ "configuration.target"?: "ip" | "ip_range" | "asn" | "country"; /** - * The target value to search for in existing rules: an IP address, an IP address range, or a country code, depending on the provided \`configuration.target\`. + * The target value to search for in existing rules: an IP address, an IP address range, or a country code, depending on the provided `configuration.target`. * Notes: You can search for a single IPv4 address, an IP address range with a subnet of '/16' or '/24', or a two-letter ISO-3166-1 alpha-2 country code. */ "configuration.value"?: string; - /** When set to \`all\`, all the search requirements must match. When set to \`any\`, only one of the search requirements has to match. */ + /** When set to `all`, all the search requirements must match. When set to `any`, only one of the search requirements has to match. */ match?: "any" | "all"; mode?: Schemas.legacy$jhs_schemas$mode; /** @@ -10219,7 +10216,7 @@ export namespace Schemas { /** The IP address of the authenticating user. */ export type legacy$jhs_schemas$ip = string; export interface legacy$jhs_schemas$ip_configuration { - /** The configuration target. You must set the target to \`ip\` when specifying an IP address in the Zone Lockdown rule. */ + /** The configuration target. You must set the target to `ip` when specifying an IP address in the Zone Lockdown rule. */ target?: "ip"; /** The IP address to match. This address will be compared to the IP address of incoming requests. */ value?: string; @@ -10245,7 +10242,7 @@ export namespace Schemas { export interface legacy$jhs_schemas$operation { /** The RFC 3339 timestamp of when the operation was completed. */ readonly completed?: string; - /** A message describing the error when the status is \`failed\`. */ + /** A message describing the error when the status is `failed`. */ readonly error?: string; id: Schemas.legacy$jhs_operation_id; /** The current status of the asynchronous operation. */ @@ -10395,7 +10392,7 @@ export namespace Schemas { export type legacy$jhs_schemas$updated_at = Date; /** This is the time the certificate was uploaded. */ export type legacy$jhs_schemas$uploaded_on = Date; - /** The URL pattern to match, composed of a host and a path such as \`example.org/path*\`. Normalization is applied before the pattern is matched. \`*\` wildcards are expanded to match applicable traffic. Query strings are not matched. Set the value to \`*\` to match all traffic to your zone. */ + /** The URL pattern to match, composed of a host and a path such as `example.org/path*`. Normalization is applied before the pattern is matched. `*` wildcards are expanded to match applicable traffic. Query strings are not matched. Set the value to `*` to match all traffic to your zone. */ export type legacy$jhs_schemas$url = string; /** The URLs to include in the rule definition. You can use wildcards. Each entered URL will be escaped before use, which means you can only use simple wildcard patterns. */ export type legacy$jhs_schemas$urls = string[]; @@ -10412,7 +10409,7 @@ export namespace Schemas { export interface legacy$jhs_schemas$zone { readonly name?: any; } - /** The HTTP schemes to match. You can specify one scheme (\`['HTTPS']\`), both schemes (\`['HTTP','HTTPS']\`), or all schemes (\`['_ALL_']\`). This field is optional. */ + /** The HTTP schemes to match. You can specify one scheme (`['HTTPS']`), both schemes (`['HTTP','HTTPS']`), or all schemes (`['_ALL_']`). This field is optional. */ export type legacy$jhs_schemes = string[]; export type legacy$jhs_script$response$collection = Schemas.legacy$jhs_api$response$common & { result?: { @@ -10426,7 +10423,7 @@ export namespace Schemas { export type legacy$jhs_script$response$single = Schemas.legacy$jhs_api$response$single & { result?: {}; }; - /** Optional secret that will be passed in the \`cf-webhook-auth\` header when dispatching a webhook notification. Secrets are not returned in any API response body. */ + /** Optional secret that will be passed in the `cf-webhook-auth` header when dispatching a webhook notification. Secrets are not returned in any API response body. */ export type legacy$jhs_secret = string; export interface legacy$jhs_self_hosted_props { allowed_idps?: Schemas.legacy$jhs_allowed_idps; @@ -10480,7 +10477,7 @@ export namespace Schemas { port?: number; } /** The session_affinity specifies the type of session affinity the load balancer should use unless specified as "none" or ""(default). The supported types are "cookie" and "ip_cookie". "cookie" - On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy then a new origin server is calculated and used. "ip_cookie" behaves the same as "cookie" except the initial origin selection is stable and based on the client’s ip address. */ - export type legacy$jhs_session_affinity = "none" | "cookie" | "ip_cookie" | "\\"\\""; + export type legacy$jhs_session_affinity = "none" | "cookie" | "ip_cookie" | "\"\""; /** Configures cookie attributes for session affinity cookie. */ export interface legacy$jhs_session_affinity_attributes { /** Configures the drain duration in seconds. This field is only used when session affinity is enabled on the load balancer. */ @@ -10494,7 +10491,7 @@ export namespace Schemas { } /** Time, in seconds, until this load balancer's session affinity cookie expires after being created. This parameter is ignored unless a supported session affinity policy is set. The current default of 23 hours will be used unless session_affinity_ttl is explicitly set. The accepted range of values is between [1800, 604800]. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. */ export type legacy$jhs_session_affinity_ttl = number; - /** The amount of time that tokens issued for this application will be valid. Must be in the format \`300ms\` or \`2h45m\`. Valid time units are: ns, us (or µs), ms, s, m, h. */ + /** The amount of time that tokens issued for this application will be valid. Must be in the format `300ms` or `2h45m`. Valid time units are: ns, us (or µs), ms, s, m, h. */ export type legacy$jhs_session_duration = string; /** The type of hash used for the certificate. */ export type legacy$jhs_signature = string; @@ -10522,7 +10519,7 @@ export namespace Schemas { }; /** Enables automatic authentication through cloudflared. */ export type legacy$jhs_skip_interstitial = boolean; - /** The sort order for the result set; sort fields must be included in \`metrics\` or \`dimensions\`. */ + /** The sort order for the result set; sort fields must be included in `metrics` or `dimensions`. */ export type legacy$jhs_sort = {}[]; export interface legacy$jhs_split_tunnel { /** The address in CIDR format to exclude from the tunnel. If address is present, host must not be present. */ @@ -10625,14 +10622,14 @@ export namespace Schemas { export type legacy$jhs_std_dev_rtt_ms = number; /** * Steering Policy for this load balancer. - * - \`"off"\`: Use \`default_pools\`. - * - \`"geo"\`: Use \`region_pools\`/\`country_pools\`/\`pop_pools\`. For non-proxied requests, the country for \`country_pools\` is determined by \`location_strategy\`. - * - \`"random"\`: Select a pool randomly. - * - \`"dynamic_latency"\`: Use round trip time to select the closest pool in default_pools (requires pool health checks). - * - \`"proximity"\`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by \`location_strategy\` for non-proxied requests. - * - \`""\`: Will map to \`"geo"\` if you use \`region_pools\`/\`country_pools\`/\`pop_pools\` otherwise \`"off"\`. + * - `"off"`: Use `default_pools`. + * - `"geo"`: Use `region_pools`/`country_pools`/`pop_pools`. For non-proxied requests, the country for `country_pools` is determined by `location_strategy`. + * - `"random"`: Select a pool randomly. + * - `"dynamic_latency"`: Use round trip time to select the closest pool in default_pools (requires pool health checks). + * - `"proximity"`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by `location_strategy` for non-proxied requests. + * - `""`: Will map to `"geo"` if you use `region_pools`/`country_pools`/`pop_pools` otherwise `"off"`. */ - export type legacy$jhs_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "\\"\\""; + export type legacy$jhs_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "\"\""; /** STIX 2.1 identifier: https://docs.oasis-open.org/cti/stix/v2.1/cs02/stix-v2.1-cs02.html#_64yvzeku5a5c */ export type legacy$jhs_stix_identifier = string; export type legacy$jhs_subdomain$response = Schemas.legacy$jhs_api$response$common & { @@ -10693,7 +10690,7 @@ export namespace Schemas { /** The list of key/value pairs where the key is a threat category and the value is the number of requests. */ type?: {}; } - /** The threshold that will trigger the configured mitigation action. Configure this value along with the \`period\` property to establish a threshold per period. */ + /** The threshold that will trigger the configured mitigation action. Configure this value along with the `period` property to establish a threshold per period. */ export type legacy$jhs_threshold = number; export interface legacy$jhs_thresholds { thresholds?: { @@ -10797,7 +10794,7 @@ export namespace Schemas { default_mode?: Schemas.legacy$jhs_default_mode; mode?: Schemas.legacy$jhs_mode_deny_traditional; }; - /** Determines how data travels from the edge to your origin. When set to "direct", Spectrum will send traffic directly to your origin, and the application's type is derived from the \`protocol\`. When set to "http" or "https", Spectrum will apply Cloudflare's HTTP/HTTPS features as it sends traffic to your origin, and the application type matches this property exactly. */ + /** Determines how data travels from the edge to your origin. When set to "direct", Spectrum will send traffic directly to your origin, and the application's type is derived from the `protocol`. When set to "http" or "https", Spectrum will apply Cloudflare's HTTP/HTTPS features as it sends traffic to your origin, and the application type matches this property exactly. */ export type legacy$jhs_traffic_type = "direct" | "http" | "https"; /** Statuses for domain transfers into Cloudflare Registrar. */ export interface legacy$jhs_transfer_in { @@ -10951,7 +10948,7 @@ export namespace Schemas { comment: Schemas.legacy$jhs_schemas$comment; /** Timestamp of when the virtual network was created. */ created_at: any; - /** Timestamp of when the virtual network was deleted. If \`null\`, the virtual network has not been deleted. */ + /** Timestamp of when the virtual network was deleted. If `null`, the virtual network has not been deleted. */ deleted_at?: any; id: Schemas.legacy$jhs_vnet_id; is_default_network: Schemas.legacy$jhs_is_default_network; @@ -11196,7 +11193,7 @@ export namespace Schemas { export interface lists_operation { /** The RFC 3339 timestamp of when the operation was completed. */ readonly completed?: string; - /** A message describing the error when the status is \`failed\`. */ + /** A message describing the error when the status is `failed`. */ readonly error?: string; id: Schemas.lists_operation_id; /** The current status of the asynchronous operation. */ @@ -11208,7 +11205,7 @@ export namespace Schemas { export type load$balancing_Host = string[]; /** Controls features that modify the routing of requests to pools and origins in response to dynamic conditions, such as during the interval between active health monitoring requests. For example, zero-downtime failover occurs immediately when an origin becomes unavailable due to HTTP 521, 522, or 523 response codes. If there is another healthy origin in the same pool, the request is retried once against this alternate origin. */ export interface load$balancing_adaptive_routing { - /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See \`session_affinity_attributes\` for control over when sessions are broken or reassigned. */ + /** Extends zero-downtime failover of requests to healthy origins from alternate pools, when no healthy alternate exists in the same pool, according to the failover order defined by traffic and origin steering. When set false (the default) zero-downtime failover will only occur between origins within the same pool. See `session_affinity_attributes` for control over when sessions are broken or reassigned. */ failover_across_pools?: boolean; } /** The IP address (IPv4 or IPv6) of the origin, or its publicly addressable hostname. Hostnames entered here should resolve directly to the origin, and not be a hostname proxied by Cloudflare. To set an internal/reserved address, virtual_network_id must also be set. */ @@ -11352,20 +11349,20 @@ export namespace Schemas { /** Only the hash policy is supported for existing sessions (to avoid exponential decay). */ session_policy?: "hash"; } - /** Controls location-based steering for non-proxied requests. See \`steering_policy\` to learn how steering is affected. */ + /** Controls location-based steering for non-proxied requests. See `steering_policy` to learn how steering is affected. */ export interface load$balancing_location_strategy { /** * Determines the authoritative location when ECS is not preferred, does not exist in the request, or its GeoIP lookup is unsuccessful. - * - \`"pop"\`: Use the Cloudflare PoP location. - * - \`"resolver_ip"\`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. + * - `"pop"`: Use the Cloudflare PoP location. + * - `"resolver_ip"`: Use the DNS resolver GeoIP location. If the GeoIP lookup is unsuccessful, use the Cloudflare PoP location. */ mode?: "pop" | "resolver_ip"; /** * Whether the EDNS Client Subnet (ECS) GeoIP should be preferred as the authoritative location. - * - \`"always"\`: Always prefer ECS. - * - \`"never"\`: Never prefer ECS. - * - \`"proximity"\`: Prefer ECS only when \`steering_policy="proximity"\`. - * - \`"geo"\`: Prefer ECS only when \`steering_policy="geo"\`. + * - `"always"`: Always prefer ECS. + * - `"never"`: Never prefer ECS. + * - `"proximity"`: Prefer ECS only when `steering_policy="proximity"`. + * - `"geo"`: Prefer ECS only when `steering_policy="geo"`. */ prefer_ecs?: "always" | "never" | "proximity" | "geo"; } @@ -11441,17 +11438,17 @@ export namespace Schemas { export interface load$balancing_origin_steering { /** * The type of origin steering policy to use. - * - \`"random"\`: Select an origin randomly. - * - \`"hash"\`: Select an origin by computing a hash over the CF-Connecting-IP address. - * - \`"least_outstanding_requests"\`: Select an origin by taking into consideration origin weights, as well as each origin's number of outstanding requests. Origins with more pending requests are weighted proportionately less relative to others. - * - \`"least_connections"\`: Select an origin by taking into consideration origin weights, as well as each origin's number of open connections. Origins with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. + * - `"random"`: Select an origin randomly. + * - `"hash"`: Select an origin by computing a hash over the CF-Connecting-IP address. + * - `"least_outstanding_requests"`: Select an origin by taking into consideration origin weights, as well as each origin's number of outstanding requests. Origins with more pending requests are weighted proportionately less relative to others. + * - `"least_connections"`: Select an origin by taking into consideration origin weights, as well as each origin's number of open connections. Origins with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. */ policy?: "random" | "hash" | "least_outstanding_requests" | "least_connections"; } /** The list of origins within this pool. Traffic directed at this pool is balanced across all currently healthy origins, provided the pool itself is healthy. */ export type load$balancing_origins = Schemas.load$balancing_origin[]; - /** The email address to send health status notifications to. This field is now deprecated in favor of Cloudflare Notifications for Load Balancing, so only resetting this field with an empty string \`""\` is accepted. */ - export type load$balancing_patch_pools_notification_email = "\\"\\""; + /** The email address to send health status notifications to. This field is now deprecated in favor of Cloudflare Notifications for Load Balancing, so only resetting this field with an empty string `""` is accepted. */ + export type load$balancing_patch_pools_notification_email = "\"\""; /** The endpoint path you want to conduct a health check against. This parameter is only valid for HTTP and HTTPS monitors. */ export type load$balancing_path = string; export interface load$balancing_pool { @@ -11500,9 +11497,9 @@ export namespace Schemas { export type load$balancing_proxied = boolean; /** * Configures pool weights. - * - \`steering_policy="random"\`: A random pool is selected with probability proportional to pool weights. - * - \`steering_policy="least_outstanding_requests"\`: Use pool weights to scale each pool's outstanding requests. - * - \`steering_policy="least_connections"\`: Use pool weights to scale each pool's open connections. + * - `steering_policy="random"`: A random pool is selected with probability proportional to pool weights. + * - `steering_policy="least_outstanding_requests"`: Use pool weights to scale each pool's outstanding requests. + * - `steering_policy="least_connections"`: Use pool weights to scale each pool's open connections. */ export interface load$balancing_random_steering { /** The default weight for pools in the load balancer that are not specified in the pool_weights map. */ @@ -11639,22 +11636,22 @@ export namespace Schemas { result?: Schemas.load$balancing_search; } /** - * Specifies the type of session affinity the load balancer should use unless specified as \`"none"\` or "" (default). The supported types are: - * - \`"cookie"\`: On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy, then a new origin server is calculated and used. - * - \`"ip_cookie"\`: Behaves the same as \`"cookie"\` except the initial origin selection is stable and based on the client's ip address. - * - \`"header"\`: On the first request to a proxied load balancer, a session key based on the configured HTTP headers (see \`session_affinity_attributes.headers\`) is generated, encoding the request headers used for storing in the load balancer session state which origin the request will be forwarded to. Subsequent requests to the load balancer with the same headers will be sent to the same origin server, for the duration of the session and as long as the origin server remains healthy. If the session has been idle for the duration of \`session_affinity_ttl\` seconds or the origin server is unhealthy, then a new origin server is calculated and used. See \`headers\` in \`session_affinity_attributes\` for additional required configuration. + * Specifies the type of session affinity the load balancer should use unless specified as `"none"` or "" (default). The supported types are: + * - `"cookie"`: On the first request to a proxied load balancer, a cookie is generated, encoding information of which origin the request will be forwarded to. Subsequent requests, by the same client to the same load balancer, will be sent to the origin server the cookie encodes, for the duration of the cookie and as long as the origin server remains healthy. If the cookie has expired or the origin server is unhealthy, then a new origin server is calculated and used. + * - `"ip_cookie"`: Behaves the same as `"cookie"` except the initial origin selection is stable and based on the client's ip address. + * - `"header"`: On the first request to a proxied load balancer, a session key based on the configured HTTP headers (see `session_affinity_attributes.headers`) is generated, encoding the request headers used for storing in the load balancer session state which origin the request will be forwarded to. Subsequent requests to the load balancer with the same headers will be sent to the same origin server, for the duration of the session and as long as the origin server remains healthy. If the session has been idle for the duration of `session_affinity_ttl` seconds or the origin server is unhealthy, then a new origin server is calculated and used. See `headers` in `session_affinity_attributes` for additional required configuration. */ - export type load$balancing_session_affinity = "none" | "cookie" | "ip_cookie" | "header" | "\\"\\""; + export type load$balancing_session_affinity = "none" | "cookie" | "ip_cookie" | "header" | "\"\""; /** Configures attributes for session affinity. */ export interface load$balancing_session_affinity_attributes { /** Configures the drain duration in seconds. This field is only used when session affinity is enabled on the load balancer. */ drain_duration?: number; - /** Configures the names of HTTP headers to base session affinity on when header \`session_affinity\` is enabled. At least one HTTP header name must be provided. To specify the exact cookies to be used, include an item in the following format: \`"cookie:,"\` (example) where everything after the colon is a comma-separated list of cookie names. Providing only \`"cookie"\` will result in all cookies being used. The default max number of HTTP header names that can be provided depends on your plan: 5 for Enterprise, 1 for all other plans. */ + /** Configures the names of HTTP headers to base session affinity on when header `session_affinity` is enabled. At least one HTTP header name must be provided. To specify the exact cookies to be used, include an item in the following format: `"cookie:,"` (example) where everything after the colon is a comma-separated list of cookie names. Providing only `"cookie"` will result in all cookies being used. The default max number of HTTP header names that can be provided depends on your plan: 5 for Enterprise, 1 for all other plans. */ headers?: string[]; /** - * When header \`session_affinity\` is enabled, this option can be used to specify how HTTP headers on load balancing requests will be used. The supported values are: - * - \`"true"\`: Load balancing requests must contain *all* of the HTTP headers specified by the \`headers\` session affinity attribute, otherwise sessions aren't created. - * - \`"false"\`: Load balancing requests must contain *at least one* of the HTTP headers specified by the \`headers\` session affinity attribute, otherwise sessions aren't created. + * When header `session_affinity` is enabled, this option can be used to specify how HTTP headers on load balancing requests will be used. The supported values are: + * - `"true"`: Load balancing requests must contain *all* of the HTTP headers specified by the `headers` session affinity attribute, otherwise sessions aren't created. + * - `"false"`: Load balancing requests must contain *at least one* of the HTTP headers specified by the `headers` session affinity attribute, otherwise sessions aren't created. */ require_all_headers?: boolean; /** Configures the SameSite attribute on session affinity cookie. Value "Auto" will be translated to "Lax" or "None" depending if Always Use HTTPS is enabled. Note: when using value "None", the secure attribute can not be set to "Never". */ @@ -11663,30 +11660,30 @@ export namespace Schemas { secure?: "Auto" | "Always" | "Never"; /** * Configures the zero-downtime failover between origins within a pool when session affinity is enabled. This feature is currently incompatible with Argo, Tiered Cache, and Bandwidth Alliance. The supported values are: - * - \`"none"\`: No failover takes place for sessions pinned to the origin (default). - * - \`"temporary"\`: Traffic will be sent to another other healthy origin until the originally pinned origin is available; note that this can potentially result in heavy origin flapping. - * - \`"sticky"\`: The session affinity cookie is updated and subsequent requests are sent to the new origin. Note: Zero-downtime failover with sticky sessions is currently not supported for session affinity by header. + * - `"none"`: No failover takes place for sessions pinned to the origin (default). + * - `"temporary"`: Traffic will be sent to another other healthy origin until the originally pinned origin is available; note that this can potentially result in heavy origin flapping. + * - `"sticky"`: The session affinity cookie is updated and subsequent requests are sent to the new origin. Note: Zero-downtime failover with sticky sessions is currently not supported for session affinity by header. */ zero_downtime_failover?: "none" | "temporary" | "sticky"; } /** - * Time, in seconds, until a client's session expires after being created. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. The accepted ranges per \`session_affinity\` policy are: - * - \`"cookie"\` / \`"ip_cookie"\`: The current default of 23 hours will be used unless explicitly set. The accepted range of values is between [1800, 604800]. - * - \`"header"\`: The current default of 1800 seconds will be used unless explicitly set. The accepted range of values is between [30, 3600]. Note: With session affinity by header, sessions only expire after they haven't been used for the number of seconds specified. + * Time, in seconds, until a client's session expires after being created. Once the expiry time has been reached, subsequent requests may get sent to a different origin server. The accepted ranges per `session_affinity` policy are: + * - `"cookie"` / `"ip_cookie"`: The current default of 23 hours will be used unless explicitly set. The accepted range of values is between [1800, 604800]. + * - `"header"`: The current default of 1800 seconds will be used unless explicitly set. The accepted range of values is between [30, 3600]. Note: With session affinity by header, sessions only expire after they haven't been used for the number of seconds specified. */ export type load$balancing_session_affinity_ttl = number; /** * Steering Policy for this load balancer. - * - \`"off"\`: Use \`default_pools\`. - * - \`"geo"\`: Use \`region_pools\`/\`country_pools\`/\`pop_pools\`. For non-proxied requests, the country for \`country_pools\` is determined by \`location_strategy\`. - * - \`"random"\`: Select a pool randomly. - * - \`"dynamic_latency"\`: Use round trip time to select the closest pool in default_pools (requires pool health checks). - * - \`"proximity"\`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by \`location_strategy\` for non-proxied requests. - * - \`"least_outstanding_requests"\`: Select a pool by taking into consideration \`random_steering\` weights, as well as each pool's number of outstanding requests. Pools with more pending requests are weighted proportionately less relative to others. - * - \`"least_connections"\`: Select a pool by taking into consideration \`random_steering\` weights, as well as each pool's number of open connections. Pools with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. - * - \`""\`: Will map to \`"geo"\` if you use \`region_pools\`/\`country_pools\`/\`pop_pools\` otherwise \`"off"\`. + * - `"off"`: Use `default_pools`. + * - `"geo"`: Use `region_pools`/`country_pools`/`pop_pools`. For non-proxied requests, the country for `country_pools` is determined by `location_strategy`. + * - `"random"`: Select a pool randomly. + * - `"dynamic_latency"`: Use round trip time to select the closest pool in default_pools (requires pool health checks). + * - `"proximity"`: Use the pools' latitude and longitude to select the closest pool using the Cloudflare PoP location for proxied requests or the location determined by `location_strategy` for non-proxied requests. + * - `"least_outstanding_requests"`: Select a pool by taking into consideration `random_steering` weights, as well as each pool's number of outstanding requests. Pools with more pending requests are weighted proportionately less relative to others. + * - `"least_connections"`: Select a pool by taking into consideration `random_steering` weights, as well as each pool's number of open connections. Pools with more open connections are weighted proportionately less relative to others. Supported for HTTP/1 and HTTP/2 connections. + * - `""`: Will map to `"geo"` if you use `region_pools`/`country_pools`/`pop_pools` otherwise `"off"`. */ - export type load$balancing_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "least_outstanding_requests" | "least_connections" | "\\"\\""; + export type load$balancing_steering_policy = "off" | "geo" | "random" | "dynamic_latency" | "proximity" | "least_outstanding_requests" | "least_connections" | "\"\""; /** Two-letter subdivision code followed in ISO 3166-2. */ export type load$balancing_subdivision_code_a2 = string; /** The timeout (in seconds) before marking the health check as failed. */ @@ -11702,8 +11699,8 @@ export namespace Schemas { export type load$balancing_virtual_network_id = string; /** * The weight of this origin relative to other origins in the pool. Based on the configured weight the total traffic is distributed among origins within the pool. - * - \`origin_steering.policy="least_outstanding_requests"\`: Use weight to scale the origin's outstanding requests. - * - \`origin_steering.policy="least_connections"\`: Use weight to scale the origin's open connections. + * - `origin_steering.policy="least_outstanding_requests"`: Use weight to scale the origin's outstanding requests. + * - `origin_steering.policy="least_connections"`: Use weight to scale the origin's open connections. */ export type load$balancing_weight = number; export type logcontrol_account_identifier = Schemas.logcontrol_identifier; @@ -11802,7 +11799,7 @@ export namespace Schemas { export type logpush_last_complete = (Date) | null; /** Records the last time the job failed. If not null, the job is currently failing. If null, the job has either never failed or has run successfully at least once since last failure. See also the error_message field. */ export type logpush_last_error = (Date) | null; - /** This field is deprecated. Use \`output_options\` instead. Configuration string. It specifies things like requested fields and timestamp formats. If migrating from the logpull api, copy the url (full url or just the query string) of your call here, and logpush will keep on making this call for you, setting start and end times appropriately. */ + /** This field is deprecated. Use `output_options` instead. Configuration string. It specifies things like requested fields and timestamp formats. If migrating from the logpull api, copy the url (full url or just the query string) of your call here, and logpush will keep on making this call for you, setting start and end times appropriately. */ export type logpush_logpull_options = string | null; export type logpush_logpush_field_response_collection = Schemas.logpush_api$response$common & { result?: {}; @@ -11832,19 +11829,19 @@ export namespace Schemas { }[]; /** Optional human readable job name. Not unique. Cloudflare suggests that you set this to a meaningful string, like the domain name, to make it easier to identify your job. */ export type logpush_name = string | null; - /** The structured replacement for \`logpull_options\`. When including this field, the \`logpull_option\` field will be ignored. */ + /** The structured replacement for `logpull_options`. When including this field, the `logpull_option` field will be ignored. */ export type logpush_output_options = { - /** If set to true, will cause all occurrences of \`\${\` in the generated files to be replaced with \`x{\`. */ + /** If set to true, will cause all occurrences of `${` in the generated files to be replaced with `x{`. */ "CVE-2021-4428"?: boolean | null; /** String to be prepended before each batch. */ batch_prefix?: string | null; /** String to be appended after each batch. */ batch_suffix?: string | null; - /** String to join fields. This field be ignored when \`record_template\` is set. */ + /** String to join fields. This field be ignored when `record_template` is set. */ field_delimiter?: string | null; /** List of field names to be included in the Logpush output. For the moment, there is no option to add all fields at once, so you must specify all the fields names you are interested in. */ field_names?: string[]; - /** Specifies the output type, such as \`ndjson\` or \`csv\`. This sets default values for the rest of the settings, depending on the chosen output type. Some formatting rules, like string quoting, are different between output types. */ + /** Specifies the output type, such as `ndjson` or `csv`. This sets default values for the rest of the settings, depending on the chosen output type. Some formatting rules, like string quoting, are different between output types. */ output_type?: "ndjson" | "csv"; /** String to be inserted in-between the records as separator. */ record_delimiter?: string | null; @@ -11852,11 +11849,11 @@ export namespace Schemas { record_prefix?: string | null; /** String to be appended after each record. */ record_suffix?: string | null; - /** String to use as template for each record instead of the default comma-separated list. All fields used in the template must be present in \`field_names\` as well, otherwise they will end up as null. Format as a Go \`text/template\` without any standard functions, like conditionals, loops, sub-templates, etc. */ + /** String to use as template for each record instead of the default comma-separated list. All fields used in the template must be present in `field_names` as well, otherwise they will end up as null. Format as a Go `text/template` without any standard functions, like conditionals, loops, sub-templates, etc. */ record_template?: string | null; - /** Floating number to specify sampling rate. Sampling is applied on top of filtering, and regardless of the current \`sample_interval\` of the data. */ + /** Floating number to specify sampling rate. Sampling is applied on top of filtering, and regardless of the current `sample_interval` of the data. */ sample_rate?: number | null; - /** String to specify the format for timestamps, such as \`unixnano\`, \`unix\`, or \`rfc3339\`. */ + /** String to specify the format for timestamps, such as `unixnano`, `unix`, or `rfc3339`. */ timestamp_format?: "unixnano" | "unix" | "rfc3339"; } | null; /** Ownership challenge token to prove destination ownership. */ @@ -11878,7 +11875,7 @@ export namespace Schemas { valid?: boolean; } | null; }; - /** When \`true\`, the tunnel can use a null-cipher (\`ENCR_NULL\`) in the ESP tunnel (Phase 2). */ + /** When `true`, the tunnel can use a null-cipher (`ENCR_NULL`) in the ESP tunnel (Phase 2). */ export type magic_allow_null_cipher = boolean; export interface magic_api$response$common { errors: Schemas.magic_messages; @@ -11973,11 +11970,11 @@ export namespace Schemas { direction?: "unidirectional" | "bidirectional"; /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } /** Identifier */ @@ -12059,7 +12056,7 @@ export namespace Schemas { export interface magic_psk_metadata { last_generated_on?: Schemas.magic_schemas$modified_on; } - /** If \`true\`, then IPsec replay protection will be supported in the Cloudflare-to-customer direction. */ + /** If `true`, then IPsec replay protection will be supported in the Cloudflare-to-customer direction. */ export type magic_replay_protection = boolean; export interface magic_route { created_on?: Schemas.magic_created_on; @@ -12122,11 +12119,11 @@ export namespace Schemas { export interface magic_schemas$health_check { /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } /** Tunnel identifier tag. */ @@ -12202,11 +12199,11 @@ export namespace Schemas { export interface magic_tunnel_health_check { /** Determines whether to run healthchecks for a tunnel. */ enabled?: boolean; - /** How frequent the health check is run. The default value is \`mid\`. */ + /** How frequent the health check is run. The default value is `mid`. */ rate?: "low" | "mid" | "high"; - /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to \`customer_gre_endpoint address\`. */ + /** The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to `customer_gre_endpoint address`. */ target?: string; - /** The type of healthcheck to run, reply or request. The default value is \`reply\`. */ + /** The type of healthcheck to run, reply or request. The default value is `reply`. */ type?: "reply" | "request"; } export type magic_tunnel_modified_response = Schemas.magic_api$response$single & { @@ -12240,9 +12237,9 @@ export namespace Schemas { /** * Specifies the default nameservers to be used for new zones added to this account. * - * - \`cloudflare.standard\` for Cloudflare-branded nameservers - * - \`custom.account\` for account custom nameservers - * - \`custom.tenant\` for tenant custom nameservers + * - `cloudflare.standard` for Cloudflare-branded nameservers + * - `custom.account` for account custom nameservers + * - `custom.tenant` for tenant custom nameservers * * See [Custom Nameservers](https://developers.cloudflare.com/dns/additional-options/custom-nameservers/) * for more information. @@ -13969,15 +13966,15 @@ export namespace Schemas { code: number; message: string; }[]; - /** Defines rules for fine-grained control over content than signed URL tokens alone. Access rules primarily make tokens conditionally valid based on user information. Access Rules are specified on token payloads as the \`accessRules\` property containing an array of Rule objects. */ + /** Defines rules for fine-grained control over content than signed URL tokens alone. Access rules primarily make tokens conditionally valid based on user information. Access Rules are specified on token payloads as the `accessRules` property containing an array of Rule objects. */ export interface stream_accessRules { - /** The action to take when a request matches a rule. If the action is \`block\`, the signed token blocks views for viewers matching the rule. */ + /** The action to take when a request matches a rule. If the action is `block`, the signed token blocks views for viewers matching the rule. */ action?: "allow" | "block"; /** An array of 2-letter country codes in ISO 3166-1 Alpha-2 format used to match requests. */ country?: string[]; /** An array of IPv4 or IPV6 addresses or CIDRs used to match requests. */ ip?: string[]; - /** Lists available rule types to match for requests. An \`any\` type matches all requests and can be used as a wildcard to apply default actions after other rules. */ + /** Lists available rule types to match for requests. An `any` type matches all requests and can be used as a wildcard to apply default actions after other rules. */ type?: "any" | "ip.src" | "ip.geoip.country"; } /** The account identifier tag. */ @@ -13991,7 +13988,7 @@ export namespace Schemas { status?: Schemas.stream_audio_state; uid?: Schemas.stream_identifier; } - /** Lists the origins allowed to display the video. Enter allowed origin domains in an array and use \`*\` for wildcard subdomains. Empty arrays allow the video to be viewed on any origin. */ + /** Lists the origins allowed to display the video. Enter allowed origin domains in an array and use `*` for wildcard subdomains. Empty arrays allow the video to be viewed on any origin. */ export type stream_allowedOrigins = string[]; export interface stream_api$response$common { errors: Schemas.stream_messages; @@ -14054,7 +14051,7 @@ export namespace Schemas { export type stream_clipping_created = Date; export interface stream_copyAudioTrack { label: Schemas.stream_audio_label; - /** An audio track URL. The server must be publicly routable and support \`HTTP HEAD\` requests and \`HTTP GET\` range requests. The server should respond to \`HTTP HEAD\` requests with a \`content-range\` header that includes the size of the file. */ + /** An audio track URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file. */ url?: string; } export interface stream_create_input_request { @@ -14091,7 +14088,7 @@ export namespace Schemas { result?: { scheduledDeletion?: Schemas.stream_scheduledDeletion; uid?: Schemas.stream_identifier; - /** The URL an unauthenticated upload can use for a single \`HTTP POST multipart/form-data\` request. */ + /** The URL an unauthenticated upload can use for a single `HTTP POST multipart/form-data` request. */ uploadURL?: string; watermark?: Schemas.stream_watermarks; }; @@ -14101,7 +14098,7 @@ export namespace Schemas { export type stream_downloads_response = Schemas.stream_api$response$single & { result?: {}; }; - /** The duration of the video in seconds. A value of \`-1\` means the duration is unknown. The duration becomes available after the upload and before the video is ready. */ + /** The duration of the video in seconds. A value of `-1` means the duration is unknown. The duration becomes available after the upload and before the video is ready. */ export type stream_duration = number; export interface stream_editAudioTrack { default?: Schemas.stream_audio_default; @@ -14111,9 +14108,9 @@ export namespace Schemas { export type stream_end = Date; /** Specifies the end time for the video clip in seconds. */ export type stream_end_time_seconds = number; - /** Specifies why the video failed to encode. This field is empty if the video is not in an \`error\` state. Preferred for programmatic use. */ + /** Specifies why the video failed to encode. This field is empty if the video is not in an `error` state. Preferred for programmatic use. */ export type stream_errorReasonCode = string; - /** Specifies why the video failed to encode using a human readable error message in English. This field is empty if the video is not in an \`error\` state. */ + /** Specifies why the video failed to encode using a human readable error message in English. This field is empty if the video is not in an `error` state. */ export type stream_errorReasonText = string; /** The height of the image in pixels. */ export type stream_height = number; @@ -14122,9 +14119,9 @@ export namespace Schemas { /** Includes the total number of videos associated with the submitted query parameters. */ export type stream_include_counts = boolean; export interface stream_input { - /** The video height in pixels. A value of \`-1\` means the height is unknown. The value becomes available after the upload and before the video is ready. */ + /** The video height in pixels. A value of `-1` means the height is unknown. The value becomes available after the upload and before the video is ready. */ height?: number; - /** The video width in pixels. A value of \`-1\` means the width is unknown. The value becomes available after the upload and before the video is ready. */ + /** The video width in pixels. A value of `-1` means the width is unknown. The value becomes available after the upload and before the video is ready. */ width?: number; } /** Details for streaming to an live input using RTMPS. */ @@ -14218,13 +14215,13 @@ export namespace Schemas { modified?: Schemas.stream_live_input_modified; uid?: Schemas.stream_live_input_identifier; } - /** Lists the origins allowed to display videos created with this input. Enter allowed origin domains in an array and use \`*\` for wildcard subdomains. An empty array allows videos to be viewed on any origin. */ + /** Lists the origins allowed to display videos created with this input. Enter allowed origin domains in an array and use `*` for wildcard subdomains. An empty array allows videos to be viewed on any origin. */ export type stream_live_input_recording_allowedOrigins = string[]; - /** Indicates the number of days after which the live inputs recordings will be deleted. When a stream completes and the recording is ready, the value is used to calculate a scheduled deletion date for that recording. Omit the field to indicate no change, or include with a \`null\` value to remove an existing scheduled deletion. */ + /** Indicates the number of days after which the live inputs recordings will be deleted. When a stream completes and the recording is ready, the value is used to calculate a scheduled deletion date for that recording. Omit the field to indicate no change, or include with a `null` value to remove an existing scheduled deletion. */ export type stream_live_input_recording_deletion = number; - /** Specifies the recording behavior for the live input. Set this value to \`off\` to prevent a recording. Set the value to \`automatic\` to begin a recording and transition to on-demand after Stream Live stops receiving input. */ + /** Specifies the recording behavior for the live input. Set this value to `off` to prevent a recording. Set the value to `automatic` to begin a recording and transition to on-demand after Stream Live stops receiving input. */ export type stream_live_input_recording_mode = "off" | "automatic"; - /** Indicates if a video using the live input has the \`requireSignedURLs\` property set. Also enforces access controls on any video recording of the livestream with the live input. */ + /** Indicates if a video using the live input has the `requireSignedURLs` property set. Also enforces access controls on any video recording of the livestream with the live input. */ export type stream_live_input_recording_requireSignedURLs = boolean; /** Records the input to a Cloudflare Stream video. Behavior depends on the mode. In most cases, the video will initially be viewable as a live video and transition to on-demand after a condition is satisfied. */ export interface stream_live_input_recording_settings { @@ -14233,7 +14230,7 @@ export namespace Schemas { requireSignedURLs?: Schemas.stream_live_input_recording_requireSignedURLs; timeoutSeconds?: Schemas.stream_live_input_recording_timeoutSeconds; } - /** Determines the amount of time a live input configured in \`automatic\` mode should wait before a recording transitions from live to on-demand. \`0\` is recommended for most use cases and indicates the platform default should be used. */ + /** Determines the amount of time a live input configured in `automatic` mode should wait before a recording transitions from live to on-demand. `0` is recommended for most use cases and indicates the platform default should be used. */ export type stream_live_input_recording_timeoutSeconds = number; export type stream_live_input_response_collection = Schemas.stream_api$response$common & { result?: { @@ -14251,14 +14248,14 @@ export namespace Schemas { export type stream_live_input_status = string | null; /** The live input ID used to upload a video with Stream Live. */ export type stream_liveInput = string; - /** The maximum duration in seconds for a video upload. Can be set for a video that is not yet uploaded to limit its duration. Uploads that exceed the specified duration will fail during processing. A value of \`-1\` means the value is unknown. */ + /** The maximum duration in seconds for a video upload. Can be set for a video that is not yet uploaded to limit its duration. Uploads that exceed the specified duration will fail during processing. A value of `-1` means the value is unknown. */ export type stream_maxDurationSeconds = number; /** A user modifiable key-value store used to reference other systems of record for managing videos. */ export interface stream_media_metadata { } /** Specifies the processing status for all quality levels for a video. */ export type stream_media_state = "pendingupload" | "downloading" | "queued" | "inprogress" | "ready" | "error"; - /** Specifies a detailed status for a video. If the \`state\` is \`inprogress\` or \`error\`, the \`step\` field returns \`encoding\` or \`manifest\`. If the \`state\` is \`inprogress\`, \`pctComplete\` returns a number between 0 and 100 to indicate the approximate percent of completion. If the \`state\` is \`error\`, \`errorReasonCode\` and \`errorReasonText\` provide additional details. */ + /** Specifies a detailed status for a video. If the `state` is `inprogress` or `error`, the `step` field returns `encoding` or `manifest`. If the `state` is `inprogress`, `pctComplete` returns a number between 0 and 100 to indicate the approximate percent of completion. If the `state` is `error`, `errorReasonCode` and `errorReasonText` provide additional details. */ export interface stream_media_status { errorReasonCode?: Schemas.stream_errorReasonCode; errorReasonText?: Schemas.stream_errorReasonText; @@ -14277,7 +14274,7 @@ export namespace Schemas { export type stream_notificationUrl = string; /** The date and time when the video upload URL is no longer valid for direct user uploads. */ export type stream_oneTimeUploadExpiry = Date; - /** The translucency of the image. A value of \`0.0\` makes the image completely transparent, and \`1.0\` makes the image completely opaque. Note that if the image is already semi-transparent, setting this to \`1.0\` will not make the image completely opaque. */ + /** The translucency of the image. A value of `0.0` makes the image completely transparent, and `1.0` makes the image completely opaque. Note that if the image is already semi-transparent, setting this to `1.0` will not make the image completely opaque. */ export type stream_opacity = number; export interface stream_output { enabled?: Schemas.stream_output_enabled; @@ -14299,7 +14296,7 @@ export namespace Schemas { export type stream_output_streamKey = string; /** The URL an output uses to restream. */ export type stream_output_url = string; - /** The whitespace between the adjacent edges (determined by position) of the video and the image. \`0.0\` indicates no padding, and \`1.0\` indicates a fully padded video width or length, as determined by the algorithm. */ + /** The whitespace between the adjacent edges (determined by position) of the video and the image. `0.0` indicates no padding, and `1.0` indicates a fully padded video width or length, as determined by the algorithm. */ export type stream_padding = number; /** Indicates the size of the entire upload in bytes. The value must be a non-negative integer. */ export type stream_pctComplete = string; @@ -14338,7 +14335,7 @@ export namespace Schemas { } /** The URL used to play live video over WebRTC. */ export type stream_playback_webrtc_url = string; - /** The location of the image. Valid positions are: \`upperRight\`, \`upperLeft\`, \`lowerLeft\`, \`lowerRight\`, and \`center\`. Note that \`center\` ignores the \`padding\` parameter. */ + /** The location of the image. Valid positions are: `upperRight`, `upperLeft`, `lowerLeft`, `lowerRight`, and `center`. Note that `center` ignores the `padding` parameter. */ export type stream_position = string; /** The video's preview page URI. This field is omitted until encoding is complete. */ export type stream_preview = string; @@ -14346,15 +14343,15 @@ export namespace Schemas { export type stream_readyToStream = boolean; /** Indicates the time at which the video became playable. The field is empty if the video is not ready for viewing or the live stream is still in progress. */ export type stream_readyToStreamAt = Date; - /** Indicates whether the video can be a accessed using the UID. When set to \`true\`, a signed token must be generated with a signing key to view the video. */ + /** Indicates whether the video can be a accessed using the UID. When set to `true`, a signed token must be generated with a signing key to view the video. */ export type stream_requireSignedURLs = boolean; - /** The size of the image relative to the overall size of the video. This parameter will adapt to horizontal and vertical videos automatically. \`0.0\` indicates no scaling (use the size of the image as-is), and \`1.0 \`fills the entire video. */ + /** The size of the image relative to the overall size of the video. This parameter will adapt to horizontal and vertical videos automatically. `0.0` indicates no scaling (use the size of the image as-is), and `1.0 `fills the entire video. */ export type stream_scale = number; - /** Indicates the date and time at which the video will be deleted. Omit the field to indicate no change, or include with a \`null\` value to remove an existing scheduled deletion. If specified, must be at least 30 days from upload time. */ + /** Indicates the date and time at which the video will be deleted. Omit the field to indicate no change, or include with a `null` value to remove an existing scheduled deletion. If specified, must be at least 30 days from upload time. */ export type stream_scheduledDeletion = Date; /** Identifier */ export type stream_schemas$identifier = string; - /** Searches over the \`name\` key in the \`meta\` field. This field can be set with or after the upload request. */ + /** Searches over the `name` key in the `meta` field. This field can be set with or after the upload request. */ export type stream_search = string; export interface stream_signed_token_request { /** The optional list of access rule constraints on the token. Access can be blocked or allowed based on an IP, IP range, or by country. Access rules are evaluated from first to last. If a rule matches, the associated action is applied and no further rules are evaluated. */ @@ -14363,11 +14360,11 @@ export namespace Schemas { downloadable?: boolean; /** The optional unix epoch timestamp that specficies the time after a token is not accepted. The maximum time specification is 24 hours from issuing time. If this field is not set, the default is one hour after issuing. */ exp?: number; - /** The optional ID of a Stream signing key. If present, the \`pem\` field is also required. */ + /** The optional ID of a Stream signing key. If present, the `pem` field is also required. */ id?: string; /** The optional unix epoch timestamp that specifies the time before a the token is not accepted. If this field is not set, the default is one hour before issuing. */ nbf?: number; - /** The optional base64 encoded private key in PEM format associated with a Stream signing key. If present, the \`id\` field is also required. */ + /** The optional base64 encoded private key in PEM format associated with a Stream signing key. If present, the `id` field is also required. */ pem?: string; } export type stream_signed_token_response = Schemas.stream_api$response$single & { @@ -14404,7 +14401,7 @@ export namespace Schemas { * Notes: The only supported version of TUS protocol is 1.0.0. */ export type stream_tus_resumable = "1.0.0"; - /** Specifies whether the video is \`vod\` or \`live\`. */ + /** Specifies whether the video is `vod` or `live`. */ export type stream_type = string; export interface stream_update_input_request { defaultCreator?: Schemas.stream_live_input_default_creator; @@ -14419,7 +14416,7 @@ export namespace Schemas { export type stream_upload_length = number; /** * Comma-separated key-value pairs following the TUS protocol specification. Values are Base-64 encoded. - * Supported keys: \`name\`, \`requiresignedurls\`, \`allowedorigins\`, \`thumbnailtimestamppct\`, \`watermark\`, \`scheduleddeletion\`. + * Supported keys: `name`, `requiresignedurls`, `allowedorigins`, `thumbnailtimestamppct`, `watermark`, `scheduleddeletion`. */ export type stream_upload_metadata = string; /** The date and time the media item was uploaded. */ @@ -14431,7 +14428,7 @@ export namespace Schemas { requireSignedURLs?: Schemas.stream_requireSignedURLs; scheduledDeletion?: Schemas.stream_scheduledDeletion; thumbnailTimestampPct?: Schemas.stream_thumbnailTimestampPct; - /** A video's URL. The server must be publicly routable and support \`HTTP HEAD\` requests and \`HTTP GET\` range requests. The server should respond to \`HTTP HEAD\` requests with a \`content-range\` header that includes the size of the file. */ + /** A video's URL. The server must be publicly routable and support `HTTP HEAD` requests and `HTTP GET` range requests. The server should respond to `HTTP HEAD` requests with a `content-range` header that includes the size of the file. */ url: string; watermark?: Schemas.stream_watermark_at_upload; } @@ -14791,7 +14788,7 @@ export namespace Schemas { export type teams$devices_dex$single_response = Schemas.teams$devices_api$response$single & { result?: Schemas.teams$devices_device$dex$test$schemas$http; }; - /** If the \`dns_server\` field of a fallback domain is not present, the client will fall back to a best guess of the default/system DNS resolvers unless this policy option is set to \`true\`. */ + /** If the `dns_server` field of a fallback domain is not present, the client will fall back to a best guess of the default/system DNS resolvers unless this policy option is set to `true`. */ export type teams$devices_disable_auto_fallback = boolean; export interface teams$devices_disable_for_time { /** Override code that is valid for 1 hour. */ @@ -14861,7 +14858,7 @@ export namespace Schemas { export type teams$devices_identifier = any; export type teams$devices_include = Schemas.teams$devices_split_tunnel_include[]; export type teams$devices_input = Schemas.teams$devices_file_input_request | Schemas.teams$devices_unique_client_id_input_request | Schemas.teams$devices_domain_joined_input_request | Schemas.teams$devices_os_version_input_request | Schemas.teams$devices_firewall_input_request | Schemas.teams$devices_sentinelone_input_request | Schemas.teams$devices_carbonblack_input_request | Schemas.teams$devices_disk_encryption_input_request | Schemas.teams$devices_application_input_request | Schemas.teams$devices_client_certificate_input_request | Schemas.teams$devices_workspace_one_input_request | Schemas.teams$devices_crowdstrike_input_request | Schemas.teams$devices_intune_input_request | Schemas.teams$devices_kolide_input_request | Schemas.teams$devices_tanium_input_request | Schemas.teams$devices_sentinelone_s2s_input_request; - /** The interval between each posture check with the third-party API. Use \`m\` for minutes (e.g. \`5m\`) and \`h\` for hours (e.g. \`12h\`). */ + /** The interval between each posture check with the third-party API. Use `m` for minutes (e.g. `5m`) and `h` for hours (e.g. `12h`). */ export type teams$devices_interval = string; export interface teams$devices_intune_config_request { /** The Intune client ID. */ @@ -14967,7 +14964,7 @@ export namespace Schemas { export type teams$devices_revoke_devices_request = Schemas.teams$devices_schemas$uuid[]; /** When the device was revoked. */ export type teams$devices_revoked_at = Date; - /** Polling frequency for the WARP client posture check. Default: \`5m\` (poll every five minutes). Minimum: \`1m\`. */ + /** Polling frequency for the WARP client posture check. Default: `5m` (poll every five minutes). Minimum: `1m`. */ export type teams$devices_schedule = string; export type teams$devices_schemas$config_request = Schemas.teams$devices_tls_config_request; export type teams$devices_schemas$config_response = Schemas.teams$devices_tls_config_response; @@ -15032,11 +15029,11 @@ export namespace Schemas { result?: Schemas.teams$devices_device$posture$rules; }; export interface teams$devices_split_tunnel { - /** The address in CIDR format to exclude from the tunnel. If \`address\` is present, \`host\` must not be present. */ + /** The address in CIDR format to exclude from the tunnel. If `address` is present, `host` must not be present. */ address: string; /** A description of the Split Tunnel item, displayed in the client UI. */ description: string; - /** The domain name to exclude from the tunnel. If \`host\` is present, \`address\` must not be present. */ + /** The domain name to exclude from the tunnel. If `host` is present, `address` must not be present. */ host?: string; } export interface teams$devices_split_tunnel_include { @@ -15058,9 +15055,9 @@ export namespace Schemas { /** Whether to allow the user to turn off the WARP switch and disconnect the client. */ export type teams$devices_switch_locked = boolean; export interface teams$devices_tanium_config_request { - /** If present, this id will be passed in the \`CF-Access-Client-ID\` header when hitting the \`api_url\` */ + /** If present, this id will be passed in the `CF-Access-Client-ID` header when hitting the `api_url` */ access_client_id?: string; - /** If present, this secret will be passed in the \`CF-Access-Client-Secret\` header when hitting the \`api_url\` */ + /** If present, this secret will be passed in the `CF-Access-Client-Secret` header when hitting the `api_url` */ access_client_secret?: string; /** The Tanium API URL. */ api_url: string; @@ -15252,7 +15249,7 @@ export namespace Schemas { export type tunnel_config_response_single = Schemas.tunnel_api$response$single & { result?: {}; }; - /** Indicates if this is a locally or remotely configured tunnel. If \`local\`, manage the tunnel using a YAML file on the origin machine. If \`cloudflare\`, manage the tunnel on the Zero Trust dashboard or using the [Cloudflare Tunnel configuration](https://api.cloudflare.com/#cloudflare-tunnel-configuration-properties) endpoint. */ + /** Indicates if this is a locally or remotely configured tunnel. If `local`, manage the tunnel using a YAML file on the origin machine. If `cloudflare`, manage the tunnel on the Zero Trust dashboard or using the [Cloudflare Tunnel configuration](https://api.cloudflare.com/#cloudflare-tunnel-configuration-properties) endpoint. */ export type tunnel_config_src = "local" | "cloudflare"; /** The version of the remote tunnel configuration. Used internally to sync cloudflared with the Zero Trust dashboard. */ export type tunnel_config_version = number; @@ -15265,13 +15262,13 @@ export namespace Schemas { export type tunnel_connection_id = string; /** The Cloudflare Tunnel connections between your origin and Cloudflare's edge. */ export type tunnel_connections = Schemas.tunnel_schemas$connection[]; - /** Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If \`null\`, the tunnel is inactive. */ + /** Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If `null`, the tunnel is inactive. */ export type tunnel_conns_active_at = (Date) | null; - /** Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If \`null\`, the tunnel is active. */ + /** Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If `null`, the tunnel is active. */ export type tunnel_conns_inactive_at = (Date) | null; /** Timestamp of when the tunnel was created. */ export type tunnel_created_at = Date; - /** Timestamp of when the tunnel was deleted. If \`null\`, the tunnel has not been deleted. */ + /** Timestamp of when the tunnel was deleted. If `null`, the tunnel has not been deleted. */ export type tunnel_deleted_at = (Date) | null; export type tunnel_empty_response = Schemas.tunnel_api$response$common & { result?: {}; @@ -15299,9 +15296,9 @@ export namespace Schemas { export type tunnel_ip_network = string; /** IP/CIDR range in URL-encoded format */ export type tunnel_ip_network_encoded = string; - /** If \`true\`, this virtual network is the default for the account. */ + /** If `true`, this virtual network is the default for the account. */ export type tunnel_is_default_network = boolean; - /** Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If \`true\`, the connection has disconnected but is still being tracked. If \`false\`, the connection is actively serving traffic. */ + /** Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If `true`, the connection has disconnected but is still being tracked. If `false`, the connection is actively serving traffic. */ export type tunnel_is_pending_reconnect = boolean; export type tunnel_legacy$tunnel$response$collection = Schemas.tunnel_api$response$collection & { result?: Schemas.tunnel_argo$tunnel[]; @@ -15359,7 +15356,7 @@ export namespace Schemas { } /** Number of results to display. */ export type tunnel_per_page = number; - /** If \`true\`, the tunnel can be configured remotely from the Zero Trust dashboard. If \`false\`, the tunnel must be configured locally on the origin machine. */ + /** If `true`, the tunnel can be configured remotely from the Zero Trust dashboard. If `false`, the tunnel must be configured locally on the origin machine. */ export type tunnel_remote_config = boolean; export interface tunnel_result_info { /** Total number of results for the requested service */ @@ -15375,7 +15372,7 @@ export namespace Schemas { comment?: Schemas.tunnel_comment; /** Timestamp of when the route was created. */ created_at?: any; - /** Timestamp of when the route was deleted. If \`null\`, the route has not been deleted. */ + /** Timestamp of when the route was deleted. If `null`, the route has not been deleted. */ readonly deleted_at?: Date; id?: Schemas.tunnel_route_id; network?: Schemas.tunnel_ip_network; @@ -15410,13 +15407,13 @@ export namespace Schemas { origin_ip?: string; uuid?: Schemas.tunnel_connection_id; } - /** The status of the tunnel. Valid values are \`inactive\` (tunnel has never been run), \`degraded\` (tunnel is active and able to serve traffic but in an unhealthy state), \`healthy\` (tunnel is active and able to serve traffic), or \`down\` (tunnel can not serve traffic as it has no connections to the Cloudflare Edge). */ + /** The status of the tunnel. Valid values are `inactive` (tunnel has never been run), `degraded` (tunnel is active and able to serve traffic but in an unhealthy state), `healthy` (tunnel is active and able to serve traffic), or `down` (tunnel can not serve traffic as it has no connections to the Cloudflare Edge). */ export type tunnel_status = string; export interface tunnel_teamnet { comment?: Schemas.tunnel_comment; /** Timestamp of when the route was created. */ created_at?: any; - /** Timestamp of when the route was deleted. If \`null\`, the route has not been deleted. */ + /** Timestamp of when the route was deleted. If `null`, the route has not been deleted. */ readonly deleted_at?: Date; id?: Schemas.tunnel_route_id; network?: Schemas.tunnel_ip_network; @@ -15481,7 +15478,7 @@ export namespace Schemas { comment: Schemas.tunnel_schemas$comment; /** Timestamp of when the virtual network was created. */ created_at: any; - /** Timestamp of when the virtual network was deleted. If \`null\`, the virtual network has not been deleted. */ + /** Timestamp of when the virtual network was deleted. If `null`, the virtual network has not been deleted. */ deleted_at?: any; id: Schemas.tunnel_vnet_id; is_default_network: Schemas.tunnel_is_default_network; @@ -16104,7 +16101,7 @@ export namespace Schemas { }; /** Determines type of delivery mechanism. */ export type w2PBr26F_schemas$type = "email" | "pagerduty" | "webhook"; - /** Optional secret that will be passed in the \`cf-webhook-auth\` header when dispatching generic webhook notifications or formatted for supported destinations. Secrets are not returned in any API response body. */ + /** Optional secret that will be passed in the `cf-webhook-auth` header when dispatching generic webhook notifications or formatted for supported destinations. Secrets are not returned in any API response body. */ export type w2PBr26F_secret = string; /** Timestamp of when the notification was dispatched in ISO 8601 format. */ export type w2PBr26F_sent = Date; @@ -16199,11 +16196,11 @@ export namespace Schemas { code: number; message: string; }[]; - /** The state of the rules contained in the rule group. When \`on\`, the rules in the group are configurable/usable. */ + /** The state of the rules contained in the rule group. When `on`, the rules in the group are configurable/usable. */ export type waf$managed$rules_mode = "on" | "off"; - /** When set to \`on\`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ + /** When set to `on`, the current rule will be used when evaluating the request. Applies to traditional (allow) WAF rules. */ export type waf$managed$rules_mode_allow_traditional = "on" | "off"; - /** When set to \`on\`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ + /** When set to `on`, the current WAF rule will be used when evaluating the request. Applies to anomaly detection WAF rules. */ export type waf$managed$rules_mode_anomaly = "on" | "off"; /** The action that the current WAF rule will perform when triggered. Applies to traditional (deny) WAF rules. */ export type waf$managed$rules_mode_deny_traditional = "default" | "disable" | "simulate" | "block" | "challenge"; @@ -16283,12 +16280,12 @@ export namespace Schemas { }; /** Configures cookie attributes for the waiting room cookie. This encrypted cookie stores a user's status in the waiting room, such as queue position. */ export interface waitingroom_cookie_attributes { - /** Configures the SameSite attribute on the waiting room cookie. Value \`auto\` will be translated to \`lax\` or \`none\` depending if **Always Use HTTPS** is enabled. Note that when using value \`none\`, the secure attribute cannot be set to \`never\`. */ + /** Configures the SameSite attribute on the waiting room cookie. Value `auto` will be translated to `lax` or `none` depending if **Always Use HTTPS** is enabled. Note that when using value `none`, the secure attribute cannot be set to `never`. */ samesite?: "auto" | "lax" | "none" | "strict"; - /** Configures the Secure attribute on the waiting room cookie. Value \`always\` indicates that the Secure attribute will be set in the Set-Cookie header, \`never\` indicates that the Secure attribute will not be set, and \`auto\` will set the Secure attribute depending if **Always Use HTTPS** is enabled. */ + /** Configures the Secure attribute on the waiting room cookie. Value `always` indicates that the Secure attribute will be set in the Set-Cookie header, `never` indicates that the Secure attribute will not be set, and `auto` will set the Secure attribute depending if **Always Use HTTPS** is enabled. */ secure?: "auto" | "always" | "never"; } - /** Appends a '_' + a custom suffix to the end of Cloudflare Waiting Room's cookie name(__cf_waitingroom). If \`cookie_suffix\` is "abcd", the cookie name will be \`__cf_waitingroom_abcd\`. This field is required if using \`additional_routes\`. */ + /** Appends a '_' + a custom suffix to the end of Cloudflare Waiting Room's cookie name(__cf_waitingroom). If `cookie_suffix` is "abcd", the cookie name will be `__cf_waitingroom_abcd`. This field is required if using `additional_routes`. */ export type waitingroom_cookie_suffix = string; export interface waitingroom_create_rule { action: Schemas.waitingroom_rule_action; @@ -16298,25 +16295,25 @@ export namespace Schemas { } /** * Only available for the Waiting Room Advanced subscription. This is a template html file that will be rendered at the edge. If no custom_page_html is provided, the default waiting room will be used. The template is based on mustache ( https://mustache.github.io/ ). There are several variables that are evaluated by the Cloudflare edge: - * 1. {{\`waitTimeKnown\`}} Acts like a boolean value that indicates the behavior to take when wait time is not available, for instance when queue_all is **true**. - * 2. {{\`waitTimeFormatted\`}} Estimated wait time for the user. For example, five minutes. Alternatively, you can use: - * 3. {{\`waitTime\`}} Number of minutes of estimated wait for a user. - * 4. {{\`waitTimeHours\`}} Number of hours of estimated wait for a user (\`Math.floor(waitTime/60)\`). - * 5. {{\`waitTimeHourMinutes\`}} Number of minutes above the \`waitTimeHours\` value (\`waitTime%60\`). - * 6. {{\`queueIsFull\`}} Changes to **true** when no more people can be added to the queue. + * 1. {{`waitTimeKnown`}} Acts like a boolean value that indicates the behavior to take when wait time is not available, for instance when queue_all is **true**. + * 2. {{`waitTimeFormatted`}} Estimated wait time for the user. For example, five minutes. Alternatively, you can use: + * 3. {{`waitTime`}} Number of minutes of estimated wait for a user. + * 4. {{`waitTimeHours`}} Number of hours of estimated wait for a user (`Math.floor(waitTime/60)`). + * 5. {{`waitTimeHourMinutes`}} Number of minutes above the `waitTimeHours` value (`waitTime%60`). + * 6. {{`queueIsFull`}} Changes to **true** when no more people can be added to the queue. * - * To view the full list of variables, look at the \`cfWaitingRoom\` object described under the \`json_response_enabled\` property in other Waiting Room API calls. + * To view the full list of variables, look at the `cfWaitingRoom` object described under the `json_response_enabled` property in other Waiting Room API calls. */ export type waitingroom_custom_page_html = string; - /** The language of the default page template. If no default_template_language is provided, then \`en-US\` (English) will be used. */ + /** The language of the default page template. If no default_template_language is provided, then `en-US` (English) will be used. */ export type waitingroom_default_template_language = "en-US" | "es-ES" | "de-DE" | "fr-FR" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW" | "nl-NL" | "pl-PL" | "id-ID" | "tr-TR" | "ar-EG" | "ru-RU" | "fa-IR"; /** A note that you can use to add more details about the waiting room. */ export type waitingroom_description = string; - /** Only available for the Waiting Room Advanced subscription. Disables automatic renewal of session cookies. If \`true\`, an accepted user will have session_duration minutes to browse the site. After that, they will have to go through the waiting room again. If \`false\`, a user's session cookie will be automatically renewed on every request. */ + /** Only available for the Waiting Room Advanced subscription. Disables automatic renewal of session cookies. If `true`, an accepted user will have session_duration minutes to browse the site. After that, they will have to go through the waiting room again. If `false`, a user's session cookie will be automatically renewed on every request. */ export type waitingroom_disable_session_renewal = boolean; export type waitingroom_estimated_queued_users = number; export type waitingroom_estimated_total_active_users = number; - /** If set, the event will override the waiting room's \`custom_page_html\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `custom_page_html` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_custom_page_html = string | null; /** A note that you can use to add more details about the event. */ export type waitingroom_event_description = string; @@ -16347,7 +16344,7 @@ export namespace Schemas { } export type waitingroom_event_details_session_duration = number; export type waitingroom_event_details_total_active_users = number; - /** If set, the event will override the waiting room's \`disable_session_renewal\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `disable_session_renewal` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_disable_session_renewal = boolean | null; /** An ISO 8601 timestamp that marks the end of the event. */ export type waitingroom_event_end_time = string; @@ -16359,11 +16356,11 @@ export namespace Schemas { }; /** A unique name to identify the event. Only alphanumeric characters, hyphens and underscores are allowed. */ export type waitingroom_event_name = string; - /** If set, the event will override the waiting room's \`new_users_per_minute\` property while it is active. If null, the event will inherit it. This can only be set if the event's \`total_active_users\` property is also set. */ + /** If set, the event will override the waiting room's `new_users_per_minute` property while it is active. If null, the event will inherit it. This can only be set if the event's `total_active_users` property is also set. */ export type waitingroom_event_new_users_per_minute = number | null; - /** An ISO 8601 timestamp that marks when to begin queueing all users before the event starts. The prequeue must start at least five minutes before \`event_start_time\`. */ + /** An ISO 8601 timestamp that marks when to begin queueing all users before the event starts. The prequeue must start at least five minutes before `event_start_time`. */ export type waitingroom_event_prequeue_start_time = string | null; - /** If set, the event will override the waiting room's \`queueing_method\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `queueing_method` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_queueing_method = string | null; export type waitingroom_event_response = Schemas.waitingroom_api$response$single & { result?: Schemas.waitingroom_event_result; @@ -16389,52 +16386,52 @@ export namespace Schemas { suspended?: Schemas.waitingroom_event_suspended; total_active_users?: Schemas.waitingroom_event_total_active_users; } - /** If set, the event will override the waiting room's \`session_duration\` property while it is active. If null, the event will inherit it. */ + /** If set, the event will override the waiting room's `session_duration` property while it is active. If null, the event will inherit it. */ export type waitingroom_event_session_duration = number | null; - /** If enabled, users in the prequeue will be shuffled randomly at the \`event_start_time\`. Requires that \`prequeue_start_time\` is not null. This is useful for situations when many users will join the event prequeue at the same time and you want to shuffle them to ensure fairness. Naturally, it makes the most sense to enable this feature when the \`queueing_method\` during the event respects ordering such as **fifo**, or else the shuffling may be unnecessary. */ + /** If enabled, users in the prequeue will be shuffled randomly at the `event_start_time`. Requires that `prequeue_start_time` is not null. This is useful for situations when many users will join the event prequeue at the same time and you want to shuffle them to ensure fairness. Naturally, it makes the most sense to enable this feature when the `queueing_method` during the event respects ordering such as **fifo**, or else the shuffling may be unnecessary. */ export type waitingroom_event_shuffle_at_event_start = boolean; - /** An ISO 8601 timestamp that marks the start of the event. At this time, queued users will be processed with the event's configuration. The start time must be at least one minute before \`event_end_time\`. */ + /** An ISO 8601 timestamp that marks the start of the event. At this time, queued users will be processed with the event's configuration. The start time must be at least one minute before `event_end_time`. */ export type waitingroom_event_start_time = string; - /** Suspends or allows an event. If set to \`true\`, the event is ignored and traffic will be handled based on the waiting room configuration. */ + /** Suspends or allows an event. If set to `true`, the event is ignored and traffic will be handled based on the waiting room configuration. */ export type waitingroom_event_suspended = boolean; - /** If set, the event will override the waiting room's \`total_active_users\` property while it is active. If null, the event will inherit it. This can only be set if the event's \`new_users_per_minute\` property is also set. */ + /** If set, the event will override the waiting room's `total_active_users` property while it is active. If null, the event will inherit it. This can only be set if the event's `new_users_per_minute` property is also set. */ export type waitingroom_event_total_active_users = number | null; /** The host name to which the waiting room will be applied (no wildcards). Please do not include the scheme (http:// or https://). The host and path combination must be unique. */ export type waitingroom_host = string; /** Identifier */ export type waitingroom_identifier = string; /** - * Only available for the Waiting Room Advanced subscription. If \`true\`, requests to the waiting room with the header \`Accept: application/json\` will receive a JSON response object with information on the user's status in the waiting room as opposed to the configured static HTML page. This JSON response object has one property \`cfWaitingRoom\` which is an object containing the following fields: - * 1. \`inWaitingRoom\`: Boolean indicating if the user is in the waiting room (always **true**). - * 2. \`waitTimeKnown\`: Boolean indicating if the current estimated wait times are accurate. If **false**, they are not available. - * 3. \`waitTime\`: Valid only when \`waitTimeKnown\` is **true**. Integer indicating the current estimated time in minutes the user will wait in the waiting room. When \`queueingMethod\` is **random**, this is set to \`waitTime50Percentile\`. - * 4. \`waitTime25Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 25% of users that gain entry the fastest (25th percentile). - * 5. \`waitTime50Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 50% of users that gain entry the fastest (50th percentile). In other words, half of the queued users are expected to let into the origin website before \`waitTime50Percentile\` and half are expected to be let in after it. - * 6. \`waitTime75Percentile\`: Valid only when \`queueingMethod\` is **random** and \`waitTimeKnown\` is **true**. Integer indicating the current estimated maximum wait time for the 75% of users that gain entry the fastest (75th percentile). - * 7. \`waitTimeFormatted\`: String displaying the \`waitTime\` formatted in English for users. If \`waitTimeKnown\` is **false**, \`waitTimeFormatted\` will display **unavailable**. - * 8. \`queueIsFull\`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. - * 9. \`queueAll\`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website. - * 10. \`lastUpdated\`: String displaying the timestamp as an ISO 8601 string of the user's last attempt to leave the waiting room and be let into the origin website. The user is able to make another attempt after \`refreshIntervalSeconds\` past this time. If the user makes a request too soon, it will be ignored and \`lastUpdated\` will not change. - * 11. \`refreshIntervalSeconds\`: Integer indicating the number of seconds after \`lastUpdated\` until the user is able to make another attempt to leave the waiting room and be let into the origin website. When the \`queueingMethod\` is \`reject\`, there is no specified refresh time — it will always be **zero**. - * 12. \`queueingMethod\`: The queueing method currently used by the waiting room. It is either **fifo**, **random**, **passthrough**, or **reject**. - * 13. \`isFIFOQueue\`: Boolean indicating if the waiting room uses a FIFO (First-In-First-Out) queue. - * 14. \`isRandomQueue\`: Boolean indicating if the waiting room uses a Random queue where users gain access randomly. - * 15. \`isPassthroughQueue\`: Boolean indicating if the waiting room uses a passthrough queue. Keep in mind that when passthrough is enabled, this JSON response will only exist when \`queueAll\` is **true** or \`isEventPrequeueing\` is **true** because in all other cases requests will go directly to the origin. - * 16. \`isRejectQueue\`: Boolean indicating if the waiting room uses a reject queue. - * 17. \`isEventActive\`: Boolean indicating if an event is currently occurring. Events are able to change a waiting room's behavior during a specified period of time. For additional information, look at the event properties \`prequeue_start_time\`, \`event_start_time\`, and \`event_end_time\` in the documentation for creating waiting room events. Events are considered active between these start and end times, as well as during the prequeueing period if it exists. - * 18. \`isEventPrequeueing\`: Valid only when \`isEventActive\` is **true**. Boolean indicating if an event is currently prequeueing users before it starts. - * 19. \`timeUntilEventStart\`: Valid only when \`isEventPrequeueing\` is **true**. Integer indicating the number of minutes until the event starts. - * 20. \`timeUntilEventStartFormatted\`: String displaying the \`timeUntilEventStart\` formatted in English for users. If \`isEventPrequeueing\` is **false**, \`timeUntilEventStartFormatted\` will display **unavailable**. - * 21. \`timeUntilEventEnd\`: Valid only when \`isEventActive\` is **true**. Integer indicating the number of minutes until the event ends. - * 22. \`timeUntilEventEndFormatted\`: String displaying the \`timeUntilEventEnd\` formatted in English for users. If \`isEventActive\` is **false**, \`timeUntilEventEndFormatted\` will display **unavailable**. - * 23. \`shuffleAtEventStart\`: Valid only when \`isEventActive\` is **true**. Boolean indicating if the users in the prequeue are shuffled randomly when the event starts. + * Only available for the Waiting Room Advanced subscription. If `true`, requests to the waiting room with the header `Accept: application/json` will receive a JSON response object with information on the user's status in the waiting room as opposed to the configured static HTML page. This JSON response object has one property `cfWaitingRoom` which is an object containing the following fields: + * 1. `inWaitingRoom`: Boolean indicating if the user is in the waiting room (always **true**). + * 2. `waitTimeKnown`: Boolean indicating if the current estimated wait times are accurate. If **false**, they are not available. + * 3. `waitTime`: Valid only when `waitTimeKnown` is **true**. Integer indicating the current estimated time in minutes the user will wait in the waiting room. When `queueingMethod` is **random**, this is set to `waitTime50Percentile`. + * 4. `waitTime25Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 25% of users that gain entry the fastest (25th percentile). + * 5. `waitTime50Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 50% of users that gain entry the fastest (50th percentile). In other words, half of the queued users are expected to let into the origin website before `waitTime50Percentile` and half are expected to be let in after it. + * 6. `waitTime75Percentile`: Valid only when `queueingMethod` is **random** and `waitTimeKnown` is **true**. Integer indicating the current estimated maximum wait time for the 75% of users that gain entry the fastest (75th percentile). + * 7. `waitTimeFormatted`: String displaying the `waitTime` formatted in English for users. If `waitTimeKnown` is **false**, `waitTimeFormatted` will display **unavailable**. + * 8. `queueIsFull`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. + * 9. `queueAll`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website. + * 10. `lastUpdated`: String displaying the timestamp as an ISO 8601 string of the user's last attempt to leave the waiting room and be let into the origin website. The user is able to make another attempt after `refreshIntervalSeconds` past this time. If the user makes a request too soon, it will be ignored and `lastUpdated` will not change. + * 11. `refreshIntervalSeconds`: Integer indicating the number of seconds after `lastUpdated` until the user is able to make another attempt to leave the waiting room and be let into the origin website. When the `queueingMethod` is `reject`, there is no specified refresh time — it will always be **zero**. + * 12. `queueingMethod`: The queueing method currently used by the waiting room. It is either **fifo**, **random**, **passthrough**, or **reject**. + * 13. `isFIFOQueue`: Boolean indicating if the waiting room uses a FIFO (First-In-First-Out) queue. + * 14. `isRandomQueue`: Boolean indicating if the waiting room uses a Random queue where users gain access randomly. + * 15. `isPassthroughQueue`: Boolean indicating if the waiting room uses a passthrough queue. Keep in mind that when passthrough is enabled, this JSON response will only exist when `queueAll` is **true** or `isEventPrequeueing` is **true** because in all other cases requests will go directly to the origin. + * 16. `isRejectQueue`: Boolean indicating if the waiting room uses a reject queue. + * 17. `isEventActive`: Boolean indicating if an event is currently occurring. Events are able to change a waiting room's behavior during a specified period of time. For additional information, look at the event properties `prequeue_start_time`, `event_start_time`, and `event_end_time` in the documentation for creating waiting room events. Events are considered active between these start and end times, as well as during the prequeueing period if it exists. + * 18. `isEventPrequeueing`: Valid only when `isEventActive` is **true**. Boolean indicating if an event is currently prequeueing users before it starts. + * 19. `timeUntilEventStart`: Valid only when `isEventPrequeueing` is **true**. Integer indicating the number of minutes until the event starts. + * 20. `timeUntilEventStartFormatted`: String displaying the `timeUntilEventStart` formatted in English for users. If `isEventPrequeueing` is **false**, `timeUntilEventStartFormatted` will display **unavailable**. + * 21. `timeUntilEventEnd`: Valid only when `isEventActive` is **true**. Integer indicating the number of minutes until the event ends. + * 22. `timeUntilEventEndFormatted`: String displaying the `timeUntilEventEnd` formatted in English for users. If `isEventActive` is **false**, `timeUntilEventEndFormatted` will display **unavailable**. + * 23. `shuffleAtEventStart`: Valid only when `isEventActive` is **true**. Boolean indicating if the users in the prequeue are shuffled randomly when the event starts. * * An example cURL to a waiting room could be: * - * curl -X GET "https://example.com/waitingroom" \\ + * curl -X GET "https://example.com/waitingroom" \ * -H "Accept: application/json" * - * If \`json_response_enabled\` is **true** and the request hits the waiting room, an example JSON response when \`queueingMethod\` is **fifo** and no event is active could be: + * If `json_response_enabled` is **true** and the request hits the waiting room, an example JSON response when `queueingMethod` is **fifo** and no event is active could be: * * { * "cfWaitingRoom": { @@ -16464,7 +16461,7 @@ export namespace Schemas { * } * } * - * If \`json_response_enabled\` is **true** and the request hits the waiting room, an example JSON response when \`queueingMethod\` is **random** and an event is active could be: + * If `json_response_enabled` is **true** and the request hits the waiting room, an example JSON response when `queueingMethod` is **random** and an event is active could be: * * { * "cfWaitingRoom": { @@ -16562,14 +16559,14 @@ export namespace Schemas { suspended?: Schemas.waitingroom_suspended; total_active_users: Schemas.waitingroom_total_active_users; } - /** If queue_all is \`true\`, all the traffic that is coming to a route will be sent to the waiting room. No new traffic can get to the route once this field is set and estimated time will become unavailable. */ + /** If queue_all is `true`, all the traffic that is coming to a route will be sent to the waiting room. No new traffic can get to the route once this field is set and estimated time will become unavailable. */ export type waitingroom_queue_all = boolean; /** - * Sets the queueing method used by the waiting room. Changing this parameter from the **default** queueing method is only available for the Waiting Room Advanced subscription. Regardless of the queueing method, if \`queue_all\` is enabled or an event is prequeueing, users in the waiting room will not be accepted to the origin. These users will always see a waiting room page that refreshes automatically. The valid queueing methods are: - * 1. \`fifo\` **(default)**: First-In-First-Out queue where customers gain access in the order they arrived. - * 2. \`random\`: Random queue where customers gain access randomly, regardless of arrival time. - * 3. \`passthrough\`: Users will pass directly through the waiting room and into the origin website. As a result, any configured limits will not be respected while this is enabled. This method can be used as an alternative to disabling a waiting room (with \`suspended\`) so that analytics are still reported. This can be used if you wish to allow all traffic normally, but want to restrict traffic during a waiting room event, or vice versa. - * 4. \`reject\`: Users will be immediately rejected from the waiting room. As a result, no users will reach the origin website while this is enabled. This can be used if you wish to reject all traffic while performing maintenance, block traffic during a specified period of time (an event), or block traffic while events are not occurring. Consider a waiting room used for vaccine distribution that only allows traffic during sign-up events, and otherwise blocks all traffic. For this case, the waiting room uses \`reject\`, and its events override this with \`fifo\`, \`random\`, or \`passthrough\`. When this queueing method is enabled and neither \`queueAll\` is enabled nor an event is prequeueing, the waiting room page **will not refresh automatically**. + * Sets the queueing method used by the waiting room. Changing this parameter from the **default** queueing method is only available for the Waiting Room Advanced subscription. Regardless of the queueing method, if `queue_all` is enabled or an event is prequeueing, users in the waiting room will not be accepted to the origin. These users will always see a waiting room page that refreshes automatically. The valid queueing methods are: + * 1. `fifo` **(default)**: First-In-First-Out queue where customers gain access in the order they arrived. + * 2. `random`: Random queue where customers gain access randomly, regardless of arrival time. + * 3. `passthrough`: Users will pass directly through the waiting room and into the origin website. As a result, any configured limits will not be respected while this is enabled. This method can be used as an alternative to disabling a waiting room (with `suspended`) so that analytics are still reported. This can be used if you wish to allow all traffic normally, but want to restrict traffic during a waiting room event, or vice versa. + * 4. `reject`: Users will be immediately rejected from the waiting room. As a result, no users will reach the origin website while this is enabled. This can be used if you wish to reject all traffic while performing maintenance, block traffic during a specified period of time (an event), or block traffic while events are not occurring. Consider a waiting room used for vaccine distribution that only allows traffic during sign-up events, and otherwise blocks all traffic. For this case, the waiting room uses `reject`, and its events override this with `fifo`, `random`, or `passthrough`. When this queueing method is enabled and neither `queueAll` is enabled nor an event is prequeueing, the waiting room page **will not refresh automatically**. */ export type waitingroom_queueing_method = "fifo" | "random" | "passthrough" | "reject"; /** HTTP status code returned to a user while in the queue. */ @@ -16650,7 +16647,7 @@ export namespace Schemas { status?: Schemas.waitingroom_status; }; }; - /** Suspends or allows traffic going to the waiting room. If set to \`true\`, the traffic will not go to the waiting room. */ + /** Suspends or allows traffic going to the waiting room. If set to `true`, the traffic will not go to the waiting room. */ export type waitingroom_suspended = boolean; export type waitingroom_timestamp = Date; /** Sets the total number of active user sessions on the route at a point in time. A route is a combination of host and path on which a waiting room is available. This value is used as a baseline for the total number of active user sessions on the route. It is possible to have a situation where there are more or less active users sessions on the route based on the traffic patterns at that time around the world. */ @@ -17111,7 +17108,7 @@ export namespace Schemas { /** Deprecated. Deployment metadata for internal usage. */ export type workers_pipeline_hash = string; export interface workers_placement_config { - /** Enables [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Only \`"smart"\` is currently supported */ + /** Enables [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Only `"smart"` is currently supported */ mode?: "smart"; } /** Specifies the placement mode for the Worker (e.g. 'smart'). */ @@ -17529,7 +17526,7 @@ export namespace Schemas { result?: Schemas.zaraz_zaraz$workflow; }; export type zaraz_zone$identifier = Schemas.zaraz_identifier; - /** The action to preform when the associated traffic, identity, and device posture expressions are either absent or evaluate to \`true\`. */ + /** The action to preform when the associated traffic, identity, and device posture expressions are either absent or evaluate to `true`. */ export type zero$trust$gateway_action = "on" | "off" | "allow" | "block" | "scan" | "noscan" | "safesearch" | "ytrestricted" | "isolate" | "noisolate" | "override" | "l4_override" | "egress" | "audit_ssh"; /** Activity log settings. */ export interface zero$trust$gateway_activity$log$settings { @@ -17572,7 +17569,7 @@ export namespace Schemas { }; /** The identifier for this application. There is only one application per ID. */ export type zero$trust$gateway_app_id = number; - /** The identifier for the type of this application. There can be many applications with the same type. This refers to the \`id\` of a returned application type. */ + /** The identifier for the type of this application. There can be many applications with the same type. This refers to the `id` of a returned application type. */ export type zero$trust$gateway_app_type_id = number; export interface zero$trust$gateway_application { application_type_id?: Schemas.zero$trust$gateway_app_type_id; @@ -17617,7 +17614,7 @@ export namespace Schemas { } /** DLP body scanning settings. */ export interface zero$trust$gateway_body$scanning$settings { - /** Set the inspection mode to either \`deep\` or \`shallow\`. */ + /** Set the inspection mode to either `deep` or `shallow`. */ inspection_mode?: string; } /** Browser isolation settings. */ @@ -17643,7 +17640,7 @@ export namespace Schemas { }; /** Cloudflare account ID. */ export type zero$trust$gateway_cf_account_id = string; - /** Which account types are allowed to create policies based on this category. \`blocked\` categories are blocked unconditionally for all accounts. \`removalPending\` categories can be removed from policies but not added. \`noBlock\` categories cannot be blocked. */ + /** Which account types are allowed to create policies based on this category. `blocked` categories are blocked unconditionally for all accounts. `removalPending` categories can be removed from policies but not added. `noBlock` categories cannot be blocked. */ export type zero$trust$gateway_class = "free" | "premium" | "blocked" | "removalPending" | "noBlock"; /** True if the location is the default location. */ export type zero$trust$gateway_client$default = boolean; @@ -18240,7 +18237,7 @@ export namespace Schemas { }; /** * Value of the zone setting. - * Notes: Setting a TTL of 0 is equivalent to selecting \`Respect Existing Headers\` + * Notes: Setting a TTL of 0 is equivalent to selecting `Respect Existing Headers` */ export type zones_browser_cache_ttl_value = 0 | 30 | 60 | 120 | 300 | 1200 | 1800 | 3600 | 7200 | 10800 | 14400 | 18000 | 28800 | 43200 | 57600 | 72000 | 86400 | 172800 | 259200 | 345600 | 432000 | 691200 | 1382400 | 2073600 | 2678400 | 5356800 | 16070400 | 31536000; export type zones_browser_check = Schemas.zones_base & { @@ -18351,7 +18348,7 @@ export namespace Schemas { id?: "image_resizing"; value?: Schemas.zones_image_resizing_value; }; - /** Whether the feature is enabled, disabled, or enabled in \`open proxy\` mode. */ + /** Whether the feature is enabled, disabled, or enabled in `open proxy` mode. */ export type zones_image_resizing_value = "on" | "off" | "open"; export type zones_ip_geolocation = Schemas.zones_base & { /** ID of the zone setting. */ @@ -18506,7 +18503,7 @@ export namespace Schemas { }; /** Value of the zone setting. */ export type zones_prefetch_preload_value = "on" | "off"; - /** The priority of the rule, used to define which Page Rule is processed over another. A higher number indicates a higher priority. For example, if you have a catch-all Page Rule (rule A: \`/images/\\\\*\`) but want a more specific Page Rule to take precedence (rule B: \`/images/special/*\`), specify a higher priority for rule B so it overrides rule A. */ + /** The priority of the rule, used to define which Page Rule is processed over another. A higher number indicates a higher priority. For example, if you have a catch-all Page Rule (rule A: `/images/\\*`) but want a more specific Page Rule to take precedence (rule B: `/images/special/*`), specify a higher priority for rule B so it overrides rule A. */ export type zones_priority = number; export type zones_proxy_read_timeout = Schemas.zones_base & { /** ID of the zone setting. */ @@ -18559,7 +18556,7 @@ export namespace Schemas { type?: "temporary" | "permanent"; /** * The URL to redirect the request to. - * Notes: \${num} refers to the position of '*' in the constraint value. + * Notes: ${num} refers to the position of '*' in the constraint value. */ url?: string; }; @@ -18827,15 +18824,15 @@ export namespace Responses { export namespace Parameters { /** * Filter results to only include discovery results sourced from a particular discovery engine - * * \`ML\` - Discovered operations that were sourced using ML API Discovery - * * \`SessionIdentifier\` - Discovered operations that were sourced using Session Identifier API Discovery + * * `ML` - Discovered operations that were sourced using ML API Discovery + * * `SessionIdentifier` - Discovered operations that were sourced using Session Identifier API Discovery */ export type api$shield_api_discovery_origin_parameter = Schemas.api$shield_api_discovery_origin; /** * Filter results to only include discovery results in a particular state. States are as follows - * * \`review\` - Discovered operations that are not saved into API Shield Endpoint Management - * * \`saved\` - Discovered operations that are already saved into API Shield Endpoint Management - * * \`ignored\` - Discovered operations that have been marked as ignored + * * `review` - Discovered operations that are not saved into API Shield Endpoint Management + * * `saved` - Discovered operations that are already saved into API Shield Endpoint Management + * * `ignored` - Discovered operations that have been marked as ignored */ export type api$shield_api_discovery_state_parameter = Schemas.api$shield_api_discovery_state; export type api$shield_diff_parameter = boolean; @@ -18866,22 +18863,22 @@ export namespace RequestBodies { /** Raw javascript content comprising a Worker. Must be in service worker syntax. */ "application/javascript": string; "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present and referenced in the metadata as \`main_module\` or \`body_part\` by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present and referenced in the metadata as `main_module` or `body_part` by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { /** List of bindings available to the worker. */ bindings?: {}[]; - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; /** Date indicating targeted support in the Workers runtime. Backwards incompatible fixes to the runtime following this date will not affect this Worker. */ compatibility_date?: string; - /** Flags that enable or disable certain features in the Workers runtime. Used to enable upcoming features or opt in or out of specific changes not included in a \`compatibility_date\`. */ + /** Flags that enable or disable certain features in the Workers runtime. Used to enable upcoming features or opt in or out of specific changes not included in a `compatibility_date`. */ compatibility_flags?: string[]; /** List of binding types to keep from previous_upload. */ keep_bindings?: string[]; logpush?: Schemas.workers_logpush; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; /** Migrations to apply for Durable Objects associated with this Worker. */ migrations?: Schemas.workers_single_step_migrations | Schemas.workers_stepped_migrations; @@ -18895,7 +18892,7 @@ export namespace RequestBodies { version_tags?: {}; }; } | { - /** Rollback message to be associated with this deployment. Only parsed when query param \`"rollback_to"\` is present. */ + /** Rollback message to be associated with this deployment. Only parsed when query param `"rollback_to"` is present. */ message?: string; }; /** Raw javascript content comprising a Worker. Must be in service worker syntax. */ @@ -20892,7 +20889,7 @@ export interface Parameter$pages$deployment$create$deployment { } export interface RequestBody$pages$deployment$create$deployment { "multipart/form-data": { - /** The branch to build the new deployment from. The \`HEAD\` of the branch will be used. If omitted, the production branch will be used by default. */ + /** The branch to build the new deployment from. The `HEAD` of the branch will be used. If omitted, the production branch will be used by default. */ branch?: string; }; } @@ -22338,13 +22335,13 @@ export interface Parameter$namespace$worker$put$script$content { } export interface RequestBody$namespace$worker$put$script$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -22706,13 +22703,13 @@ export interface Parameter$worker$script$put$content { } export interface RequestBody$worker$script$put$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -22857,13 +22854,13 @@ export interface Parameter$worker$environment$put$script$content { } export interface RequestBody$worker$environment$put$script$content { "multipart/form-data": { - /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as \`main_module\` (esm)/\`body_part\` (service worker) or as a header \`CF-WORKER-MAIN-MODULE-PART\` (esm) /\`CF-WORKER-BODY-PART\` (service worker) by part name. */ + /** A module comprising a Worker script, often a javascript file. Multiple modules may be provided as separate named parts, but at least one module must be present. This should be referenced either in the metadata as `main_module` (esm)/`body_part` (service worker) or as a header `CF-WORKER-MAIN-MODULE-PART` (esm) /`CF-WORKER-BODY-PART` (service worker) by part name. */ ""?: (Blob)[]; /** JSON encoded metadata about the uploaded parts and Worker configuration. */ metadata?: { - /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the \`fetch\` event). Indicates a \`service worker syntax\` Worker. */ + /** Name of the part in the multipart request that contains the script (e.g. the file adding a listener to the `fetch` event). Indicates a `service worker syntax` Worker. */ body_part?: string; - /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a \`fetch\` handler). Indicates a \`module syntax\` Worker. */ + /** Name of the part in the multipart request that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker. */ main_module?: string; }; }; @@ -25575,7 +25572,7 @@ export interface RequestBody$urlscanner$create$scan { /** Take multiple screenshots targeting different device types */ screenshotsResolutions?: ("desktop" | "mobile" | "tablet")[]; url: string; - /** The option \`Public\` means it will be included in listings like recent scans and search results. \`Unlisted\` means it will not be included in the aforementioned listings, users will need to have the scan's ID to access it. A a scan will be automatically marked as unlisted if it fails, if it contains potential PII or other sensitive material. */ + /** The option `Public` means it will be included in listings like recent scans and search results. `Unlisted` means it will not be included in the aforementioned listings, users will need to have the scan's ID to access it. A a scan will be automatically marked as unlisted if it fails, if it contains potential PII or other sensitive material. */ visibility?: "Public" | "Unlisted"; }; } @@ -27646,7 +27643,7 @@ export interface Response$origin$ca$revoke$certificate$Status$4XX { "application/json": Schemas.ApQU2qAj_certificate_response_single_id & Schemas.ApQU2qAj_api$response$common$failure; } export interface Parameter$cloudflare$i$ps$cloudflare$ip$details { - /** Specified as \`jdcloud\` to list IPs used by JD Cloud data centers. */ + /** Specified as `jdcloud` to list IPs used by JD Cloud data centers. */ networks?: string; } export interface Response$cloudflare$i$ps$cloudflare$ip$details$Status$200 { @@ -36709,7 +36706,7 @@ export interface RequestBody$zones$0$patch { "application/json": { paused?: Schemas.zones_paused; /** - * (Deprecated) Please use the \`/zones/{zone_id}/subscription\` API + * (Deprecated) Please use the `/zones/{zone_id}/subscription` API * to update a zone's plan. Changing this value will create/cancel * associated subscriptions. To view available plans for this zone, * see Zone Plans. @@ -36813,15 +36810,15 @@ export interface Parameter$api$shield$api$discovery$retrieve$discovered$operatio diff?: Parameters.api$shield_diff_parameter; /** * Filter results to only include discovery results sourced from a particular discovery engine - * * \`ML\` - Discovered operations that were sourced using ML API Discovery - * * \`SessionIdentifier\` - Discovered operations that were sourced using Session Identifier API Discovery + * * `ML` - Discovered operations that were sourced using ML API Discovery + * * `SessionIdentifier` - Discovered operations that were sourced using Session Identifier API Discovery */ origin?: Parameters.api$shield_api_discovery_origin_parameter; /** * Filter results to only include discovery results in a particular state. States are as follows - * * \`review\` - Discovered operations that are not saved into API Shield Endpoint Management - * * \`saved\` - Discovered operations that are already saved into API Shield Endpoint Management - * * \`ignored\` - Discovered operations that have been marked as ignored + * * `review` - Discovered operations that are not saved into API Shield Endpoint Management + * * `saved` - Discovered operations that are already saved into API Shield Endpoint Management + * * `ignored` - Discovered operations that have been marked as ignored */ state?: Parameters.api$shield_api_discovery_state_parameter; } @@ -37098,7 +37095,7 @@ export interface Parameter$api$shield$schema$validation$extract$operations$from$ page?: Parameters.api$shield_page; /** Maximum number of results per page. */ per_page?: Parameters.api$shield_per_page; - /** Filter results by whether operations exist in API Shield Endpoint Management or not. \`new\` will just return operations from the schema that do not exist in API Shield Endpoint Management. \`existing\` will just return operations from the schema that already exist in API Shield Endpoint Management. */ + /** Filter results by whether operations exist in API Shield Endpoint Management or not. `new` will just return operations from the schema that do not exist in API Shield Endpoint Management. `existing` will just return operations from the schema that already exist in API Shield Endpoint Management. */ operation_status?: "new" | "existing"; } export interface Response$api$shield$schema$validation$extract$operations$from$schema$Status$200 { @@ -37466,13 +37463,13 @@ export interface RequestBody$dns$records$for$a$zone$import$dns$records { /** * BIND config to import. * - * **Tip:** When using cURL, a file can be uploaded using \`--form 'file=@bind_config.txt'\`. + * **Tip:** When using cURL, a file can be uploaded using `--form 'file=@bind_config.txt'`. */ file: string; /** * Whether or not proxiable records should receive the performance and security benefits of Cloudflare. * - * The value should be either \`true\` or \`false\`. + * The value should be either `true` or `false`. */ proxied?: string; }; @@ -37564,7 +37561,7 @@ export interface Parameter$ip$access$rules$for$a$zone$delete$an$ip$access$rule { } export interface RequestBody$ip$access$rules$for$a$zone$delete$an$ip$access$rule { "application/json": { - /** The level to attempt to delete similar rules defined for other zones with the same owner. The default value is \`none\`, which will only delete the current rule. Using \`basic\` will delete rules that match the same action (mode) and configuration, while using \`aggressive\` will delete rules that match the same configuration. */ + /** The level to attempt to delete similar rules defined for other zones with the same owner. The default value is `none`, which will only delete the current rule. Using `basic` will delete rules that match the same action (mode) and configuration, while using `aggressive` will delete rules that match the same configuration. */ cascade?: "none" | "basic" | "aggressive"; }; } @@ -37672,7 +37669,7 @@ export interface Parameter$waf$rules$update$a$waf$rule { } export interface RequestBody$waf$rules$update$a$waf$rule { "application/json": { - /** The mode/action of the rule when triggered. You must use a value from the \`allowed_modes\` array of the current rule. */ + /** The mode/action of the rule when triggered. You must use a value from the `allowed_modes` array of the current rule. */ mode?: "default" | "disable" | "simulate" | "block" | "challenge" | "on" | "off"; }; } @@ -37727,7 +37724,7 @@ export interface Response$zones$0$hold$post$Status$4XX { } export interface Parameter$zones$0$hold$delete { /** - * If \`hold_after\` is provided, the hold will be temporarily disabled, + * If `hold_after` is provided, the hold will be temporarily disabled, * then automatically re-enabled by the system at the time specified * in this RFC3339-formatted timestamp. Otherwise, the hold will be * disabled indefinitely. @@ -50317,14 +50314,14 @@ export interface ApiClient { request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; } export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); + const _baseUrl = baseUrl.replace(/\/$/, ""); return { /** * List Accounts * List all accounts you have ownership or verified access to. */ accounts$list$accounts: (params: Params$accounts$list$accounts, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts\`; + const url = _baseUrl + `/accounts`; const headers = { Accept: "application/json" }; @@ -50346,7 +50343,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of all alert types for which an account is eligible. */ notification$alert$types$get$alert$types: (params: Params$notification$alert$types$get$alert$types, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/available_alerts\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/available_alerts`; const headers = { Accept: "application/json" }; @@ -50361,7 +50358,7 @@ export const createClient = (apiClient: ApiClient, * Get a list of all delivery mechanism types for which an account is eligible. */ notification$mechanism$eligibility$get$delivery$mechanism$eligibility: (params: Params$notification$mechanism$eligibility$get$delivery$mechanism$eligibility, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/eligible\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/eligible`; const headers = { Accept: "application/json" }; @@ -50376,7 +50373,7 @@ export const createClient = (apiClient: ApiClient, * Get a list of all configured PagerDuty services. */ notification$destinations$with$pager$duty$list$pager$duty$services: (params: Params$notification$destinations$with$pager$duty$list$pager$duty$services, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty`; const headers = { Accept: "application/json" }; @@ -50391,7 +50388,7 @@ export const createClient = (apiClient: ApiClient, * Deletes all the PagerDuty Services connected to the account. */ notification$destinations$with$pager$duty$delete$pager$duty$services: (params: Params$notification$destinations$with$pager$duty$delete$pager$duty$services, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty`; const headers = { Accept: "application/json" }; @@ -50406,7 +50403,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new token for integrating with PagerDuty. */ notification$destinations$with$pager$duty$connect$pager$duty: (params: Params$notification$destinations$with$pager$duty$connect$pager$duty, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect`; const headers = { Accept: "application/json" }; @@ -50421,7 +50418,7 @@ export const createClient = (apiClient: ApiClient, * Links PagerDuty with the account using the integration token. */ notification$destinations$with$pager$duty$connect$pager$duty$token: (params: Params$notification$destinations$with$pager$duty$connect$pager$duty$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect/\${encodeURIComponent(params.parameter.token_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/pagerduty/connect/${encodeURIComponent(params.parameter.token_id)}`; const headers = { Accept: "application/json" }; @@ -50436,7 +50433,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of all configured webhook destinations. */ notification$webhooks$list$webhooks: (params: Params$notification$webhooks$list$webhooks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks`; const headers = { Accept: "application/json" }; @@ -50451,7 +50448,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new webhook destination. */ notification$webhooks$create$a$webhook: (params: Params$notification$webhooks$create$a$webhook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50468,7 +50465,7 @@ export const createClient = (apiClient: ApiClient, * Get details for a single webhooks destination. */ notification$webhooks$get$a$webhook: (params: Params$notification$webhooks$get$a$webhook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { Accept: "application/json" }; @@ -50483,7 +50480,7 @@ export const createClient = (apiClient: ApiClient, * Update a webhook destination. */ notification$webhooks$update$a$webhook: (params: Params$notification$webhooks$update$a$webhook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50500,7 +50497,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured webhook destination. */ notification$webhooks$delete$a$webhook: (params: Params$notification$webhooks$delete$a$webhook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/\${encodeURIComponent(params.parameter.webhook_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/destinations/webhooks/${encodeURIComponent(params.parameter.webhook_id)}`; const headers = { Accept: "application/json" }; @@ -50512,10 +50509,10 @@ export const createClient = (apiClient: ApiClient, }, /** * List History - * Gets a list of history records for notifications sent to an account. The records are displayed for last \`x\` number of days based on the zone plan (free = 30, pro = 30, biz = 30, ent = 90). + * Gets a list of history records for notifications sent to an account. The records are displayed for last `x` number of days based on the zone plan (free = 30, pro = 30, biz = 30, ent = 90). */ notification$history$list$history: (params: Params$notification$history$list$history, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/history\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/history`; const headers = { Accept: "application/json" }; @@ -50537,7 +50534,7 @@ export const createClient = (apiClient: ApiClient, * Get a list of all Notification policies. */ notification$policies$list$notification$policies: (params: Params$notification$policies$list$notification$policies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies`; const headers = { Accept: "application/json" }; @@ -50552,7 +50549,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Notification policy. */ notification$policies$create$a$notification$policy: (params: Params$notification$policies$create$a$notification$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50569,7 +50566,7 @@ export const createClient = (apiClient: ApiClient, * Get details for a single policy. */ notification$policies$get$a$notification$policy: (params: Params$notification$policies$get$a$notification$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -50584,7 +50581,7 @@ export const createClient = (apiClient: ApiClient, * Update a Notification policy. */ notification$policies$update$a$notification$policy: (params: Params$notification$policies$update$a$notification$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50601,7 +50598,7 @@ export const createClient = (apiClient: ApiClient, * Delete a Notification policy. */ notification$policies$delete$a$notification$policy: (params: Params$notification$policies$delete$a$notification$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/alerting/v3/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -50613,7 +50610,7 @@ export const createClient = (apiClient: ApiClient, }, /** Submit suspicious URL for scanning */ phishing$url$scanner$submit$suspicious$url$for$scanning: (params: Params$phishing$url$scanner$submit$suspicious$url$for$scanning, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/brand-protection/submit\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/brand-protection/submit`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50627,7 +50624,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get results for a URL scan */ phishing$url$information$get$results$for$a$url$scan: (params: Params$phishing$url$information$get$results$for$a$url$scan, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/brand-protection/url-info\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/brand-protection/url-info`; const headers = { Accept: "application/json" }; @@ -50647,7 +50644,7 @@ export const createClient = (apiClient: ApiClient, * Lists and filters Cloudflare Tunnels in an account. */ cloudflare$tunnel$list$cloudflare$tunnels: (params: Params$cloudflare$tunnel$list$cloudflare$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel`; const headers = { Accept: "application/json" }; @@ -50675,7 +50672,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Cloudflare Tunnel in an account. */ cloudflare$tunnel$create$a$cloudflare$tunnel: (params: Params$cloudflare$tunnel$create$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50692,7 +50689,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Cloudflare Tunnel. */ cloudflare$tunnel$get$a$cloudflare$tunnel: (params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -50707,7 +50704,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a Cloudflare Tunnel from an account. */ cloudflare$tunnel$delete$a$cloudflare$tunnel: (params: Params$cloudflare$tunnel$delete$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50724,7 +50721,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing Cloudflare Tunnel. */ cloudflare$tunnel$update$a$cloudflare$tunnel: (params: Params$cloudflare$tunnel$update$a$cloudflare$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50741,7 +50738,7 @@ export const createClient = (apiClient: ApiClient, * Gets the configuration for a remotely-managed tunnel */ cloudflare$tunnel$configuration$get$configuration: (params: Params$cloudflare$tunnel$configuration$get$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/configurations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/configurations`; const headers = { Accept: "application/json" }; @@ -50756,7 +50753,7 @@ export const createClient = (apiClient: ApiClient, * Adds or updates the configuration for a remotely-managed tunnel. */ cloudflare$tunnel$configuration$put$configuration: (params: Params$cloudflare$tunnel$configuration$put$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/configurations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/configurations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50773,7 +50770,7 @@ export const createClient = (apiClient: ApiClient, * Fetches connection details for a Cloudflare Tunnel. */ cloudflare$tunnel$list$cloudflare$tunnel$connections: (params: Params$cloudflare$tunnel$list$cloudflare$tunnel$connections, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { Accept: "application/json" }; @@ -50788,7 +50785,7 @@ export const createClient = (apiClient: ApiClient, * Removes a connection (aka Cloudflare Tunnel Connector) from a Cloudflare Tunnel independently of its current state. If no connector id (client_id) is provided all connectors will be removed. We recommend running this command after rotating tokens. */ cloudflare$tunnel$clean$up$cloudflare$tunnel$connections: (params: Params$cloudflare$tunnel$clean$up$cloudflare$tunnel$connections, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50809,7 +50806,7 @@ export const createClient = (apiClient: ApiClient, * Fetches connector and connection details for a Cloudflare Tunnel. */ cloudflare$tunnel$get$cloudflare$tunnel$connector: (params: Params$cloudflare$tunnel$get$cloudflare$tunnel$connector, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/connectors/\${encodeURIComponent(params.parameter.connector_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/connectors/${encodeURIComponent(params.parameter.connector_id)}`; const headers = { Accept: "application/json" }; @@ -50824,7 +50821,7 @@ export const createClient = (apiClient: ApiClient, * Gets a management token used to access the management resources (i.e. Streaming Logs) of a tunnel. */ cloudflare$tunnel$get$a$cloudflare$tunnel$management$token: (params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel$management$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/management\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/management`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50841,7 +50838,7 @@ export const createClient = (apiClient: ApiClient, * Gets the token used to associate cloudflared with a specific tunnel. */ cloudflare$tunnel$get$a$cloudflare$tunnel$token: (params: Params$cloudflare$tunnel$get$a$cloudflare$tunnel$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/\${encodeURIComponent(params.parameter.tunnel_id)}/token\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/cfd_tunnel/${encodeURIComponent(params.parameter.tunnel_id)}/token`; const headers = { Accept: "application/json" }; @@ -50856,7 +50853,7 @@ export const createClient = (apiClient: ApiClient, * List an account's custom nameservers. */ account$level$custom$nameservers$list$account$custom$nameservers: (params: Params$account$level$custom$nameservers$list$account$custom$nameservers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns`; const headers = { Accept: "application/json" }; @@ -50868,7 +50865,7 @@ export const createClient = (apiClient: ApiClient, }, /** Add Account Custom Nameserver */ account$level$custom$nameservers$add$account$custom$nameserver: (params: Params$account$level$custom$nameservers$add$account$custom$nameserver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50882,7 +50879,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Account Custom Nameserver */ account$level$custom$nameservers$delete$account$custom$nameserver: (params: Params$account$level$custom$nameservers$delete$account$custom$nameserver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/\${encodeURIComponent(params.parameter.custom_ns_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/${encodeURIComponent(params.parameter.custom_ns_id)}`; const headers = { Accept: "application/json" }; @@ -50894,7 +50891,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Eligible Zones for Account Custom Nameservers */ account$level$custom$nameservers$get$eligible$zones$for$account$custom$nameservers: (params: Params$account$level$custom$nameservers$get$eligible$zones$for$account$custom$nameservers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/availability\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/availability`; const headers = { Accept: "application/json" }; @@ -50906,7 +50903,7 @@ export const createClient = (apiClient: ApiClient, }, /** Verify Account Custom Nameserver Glue Records */ account$level$custom$nameservers$verify$account$custom$nameserver$glue$records: (params: Params$account$level$custom$nameservers$verify$account$custom$nameserver$glue$records, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/custom_ns/verify\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/custom_ns/verify`; const headers = { Accept: "application/json" }; @@ -50921,7 +50918,7 @@ export const createClient = (apiClient: ApiClient, * Returns a list of D1 databases. */ cloudflare$d1$list$databases: (params: Params$cloudflare$d1$list$databases, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/d1/database\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/d1/database`; const headers = { Accept: "application/json" }; @@ -50942,7 +50939,7 @@ export const createClient = (apiClient: ApiClient, * Returns the created D1 database. */ cloudflare$d1$create$database: (params: Params$cloudflare$d1$create$database, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/d1/database\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/d1/database`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -50959,7 +50956,7 @@ export const createClient = (apiClient: ApiClient, * List Cloudflare colos that account's devices were connected to during a time period, sorted by usage starting from the most used colo. Colos without traffic are also returned and sorted alphabetically. */ dex$endpoints$list$colos: (params: Params$dex$endpoints$list$colos, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/colos\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/colos`; const headers = { Accept: "application/json" }; @@ -50980,7 +50977,7 @@ export const createClient = (apiClient: ApiClient, * List details for devices using WARP */ dex$fleet$status$devices: (params: Params$dex$fleet$status$devices, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/devices\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/devices`; const headers = { Accept: "application/json" }; @@ -51009,7 +51006,7 @@ export const createClient = (apiClient: ApiClient, * List details for live (up to 60 minutes) devices using WARP */ dex$fleet$status$live: (params: Params$dex$fleet$status$live, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/live\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/live`; const headers = { Accept: "application/json" }; @@ -51028,7 +51025,7 @@ export const createClient = (apiClient: ApiClient, * List details for devices using WARP, up to 7 days */ dex$fleet$status$over$time: (params: Params$dex$fleet$status$over$time, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/over-time\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/fleet-status/over-time`; const headers = {}; const queryParameters: QueryParameters = { time_end: { value: params.parameter.time_end, explode: false }, @@ -51048,7 +51045,7 @@ export const createClient = (apiClient: ApiClient, * Get test details and aggregate performance metrics for an http test for a given time period between 1 hour and 7 days. */ dex$endpoints$http$test$details: (params: Params$dex$endpoints$http$test$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -51071,7 +51068,7 @@ export const createClient = (apiClient: ApiClient, * Get percentiles for an http test for a given time period between 1 hour and 7 days. */ dex$endpoints$http$test$percentiles: (params: Params$dex$endpoints$http$test$percentiles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/\${encodeURIComponent(params.parameter.test_id)}/percentiles\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/http-tests/${encodeURIComponent(params.parameter.test_id)}/percentiles`; const headers = { Accept: "application/json" }; @@ -51093,7 +51090,7 @@ export const createClient = (apiClient: ApiClient, * List DEX tests */ dex$endpoints$list$tests: (params: Params$dex$endpoints$list$tests, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/tests\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/tests`; const headers = { Accept: "application/json" }; @@ -51116,7 +51113,7 @@ export const createClient = (apiClient: ApiClient, * Returns unique count of devices that have run synthetic application monitoring tests in the past 7 days. */ dex$endpoints$tests$unique$devices: (params: Params$dex$endpoints$tests$unique$devices, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/tests/unique-devices\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/tests/unique-devices`; const headers = { Accept: "application/json" }; @@ -51136,7 +51133,7 @@ export const createClient = (apiClient: ApiClient, * Get a breakdown of hops and performance metrics for a specific traceroute test run */ dex$endpoints$traceroute$test$result$network$path: (params: Params$dex$endpoints$traceroute$test$result$network$path, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-test-results/\${encodeURIComponent(params.parameter.test_result_id)}/network-path\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-test-results/${encodeURIComponent(params.parameter.test_result_id)}/network-path`; const headers = { Accept: "application/json" }; @@ -51151,7 +51148,7 @@ export const createClient = (apiClient: ApiClient, * Get test details and aggregate performance metrics for an traceroute test for a given time period between 1 hour and 7 days. */ dex$endpoints$traceroute$test$details: (params: Params$dex$endpoints$traceroute$test$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -51174,7 +51171,7 @@ export const createClient = (apiClient: ApiClient, * Get a breakdown of metrics by hop for individual traceroute test runs */ dex$endpoints$traceroute$test$network$path: (params: Params$dex$endpoints$traceroute$test$network$path, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}/network-path\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}/network-path`; const headers = { Accept: "application/json" }; @@ -51196,7 +51193,7 @@ export const createClient = (apiClient: ApiClient, * Get percentiles for a traceroute test for a given time period between 1 hour and 7 days. */ dex$endpoints$traceroute$test$percentiles: (params: Params$dex$endpoints$traceroute$test$percentiles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/\${encodeURIComponent(params.parameter.test_id)}/percentiles\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dex/traceroute-tests/${encodeURIComponent(params.parameter.test_id)}/percentiles`; const headers = { Accept: "application/json" }; @@ -51218,7 +51215,7 @@ export const createClient = (apiClient: ApiClient, * Fetch all datasets with information about available versions. */ dlp$datasets$read$all: (params: Params$dlp$datasets$read$all, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets`; const headers = { Accept: "application/json" }; @@ -51233,7 +51230,7 @@ export const createClient = (apiClient: ApiClient, * Create a new dataset. */ dlp$datasets$create: (params: Params$dlp$datasets$create, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51250,7 +51247,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a specific dataset with information about available versions. */ dlp$datasets$read: (params: Params$dlp$datasets$read, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = { Accept: "application/json" }; @@ -51265,7 +51262,7 @@ export const createClient = (apiClient: ApiClient, * Update details about a dataset. */ dlp$datasets$update: (params: Params$dlp$datasets$update, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51284,7 +51281,7 @@ export const createClient = (apiClient: ApiClient, * This deletes all versions of the dataset. */ dlp$datasets$delete: (params: Params$dlp$datasets$delete, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -51297,7 +51294,7 @@ export const createClient = (apiClient: ApiClient, * Prepare to upload a new version of a dataset. */ dlp$datasets$create$version: (params: Params$dlp$datasets$create$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/upload\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}/upload`; const headers = { Accept: "application/json" }; @@ -51312,7 +51309,7 @@ export const createClient = (apiClient: ApiClient, * Upload a new version of a dataset. */ dlp$datasets$upload$version: (params: Params$dlp$datasets$upload$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/upload/\${encodeURIComponent(params.parameter.version)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/datasets/${encodeURIComponent(params.parameter.dataset_id)}/upload/${encodeURIComponent(params.parameter.version)}`; const headers = { "Content-Type": "application/octet-stream", Accept: "application/json" @@ -51329,7 +51326,7 @@ export const createClient = (apiClient: ApiClient, * Validates whether this pattern is a valid regular expression. Rejects it if the regular expression is too complex or can match an unbounded-length string. Your regex will be rejected if it uses the Kleene Star -- be sure to bound the maximum number of characters that can be matched. */ dlp$pattern$validation$validate$pattern: (params: Params$dlp$pattern$validation$validate$pattern, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/patterns/validate\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/patterns/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51346,7 +51343,7 @@ export const createClient = (apiClient: ApiClient, * Gets the current DLP payload log settings for this account. */ dlp$payload$log$settings$get$settings: (params: Params$dlp$payload$log$settings$get$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log`; const headers = { Accept: "application/json" }; @@ -51361,7 +51358,7 @@ export const createClient = (apiClient: ApiClient, * Updates the DLP payload log settings for this account. */ dlp$payload$log$settings$update$settings: (params: Params$dlp$payload$log$settings$update$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/payload_log`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51378,7 +51375,7 @@ export const createClient = (apiClient: ApiClient, * Lists all DLP profiles in an account. */ dlp$profiles$list$all$profiles: (params: Params$dlp$profiles$list$all$profiles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles`; const headers = { Accept: "application/json" }; @@ -51393,7 +51390,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a DLP profile by ID. Supports both predefined and custom profiles */ dlp$profiles$get$dlp$profile: (params: Params$dlp$profiles$get$dlp$profile, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51408,7 +51405,7 @@ export const createClient = (apiClient: ApiClient, * Creates a set of DLP custom profiles. */ dlp$profiles$create$custom$profiles: (params: Params$dlp$profiles$create$custom$profiles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51425,7 +51422,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a custom DLP profile. */ dlp$profiles$get$custom$profile: (params: Params$dlp$profiles$get$custom$profile, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51440,7 +51437,7 @@ export const createClient = (apiClient: ApiClient, * Updates a DLP custom profile. */ dlp$profiles$update$custom$profile: (params: Params$dlp$profiles$update$custom$profile, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51457,7 +51454,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a DLP custom profile. */ dlp$profiles$delete$custom$profile: (params: Params$dlp$profiles$delete$custom$profile, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/custom/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51472,7 +51469,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a predefined DLP profile. */ dlp$profiles$get$predefined$profile: (params: Params$dlp$profiles$get$predefined$profile, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { Accept: "application/json" }; @@ -51487,7 +51484,7 @@ export const createClient = (apiClient: ApiClient, * Updates a DLP predefined profile. Only supports enabling/disabling entries. */ dlp$profiles$update$predefined$profile: (params: Params$dlp$profiles$update$predefined$profile, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/\${encodeURIComponent(params.parameter.profile_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dlp/profiles/predefined/${encodeURIComponent(params.parameter.profile_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51504,7 +51501,7 @@ export const createClient = (apiClient: ApiClient, * List configured DNS Firewall clusters for an account. */ dns$firewall$list$dns$firewall$clusters: (params: Params$dns$firewall$list$dns$firewall$clusters, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall`; const headers = { Accept: "application/json" }; @@ -51524,7 +51521,7 @@ export const createClient = (apiClient: ApiClient, * Create a configured DNS Firewall Cluster. */ dns$firewall$create$dns$firewall$cluster: (params: Params$dns$firewall$create$dns$firewall$cluster, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51541,7 +51538,7 @@ export const createClient = (apiClient: ApiClient, * Show a single configured DNS Firewall cluster for an account. */ dns$firewall$dns$firewall$cluster$details: (params: Params$dns$firewall$dns$firewall$cluster$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { Accept: "application/json" }; @@ -51556,7 +51553,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured DNS Firewall Cluster. */ dns$firewall$delete$dns$firewall$cluster: (params: Params$dns$firewall$delete$dns$firewall$cluster, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { Accept: "application/json" }; @@ -51571,7 +51568,7 @@ export const createClient = (apiClient: ApiClient, * Modify a DNS Firewall Cluster configuration. */ dns$firewall$update$dns$firewall$cluster: (params: Params$dns$firewall$update$dns$firewall$cluster, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/dns_firewall/\${encodeURIComponent(params.parameter.dns_firewall_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/dns_firewall/${encodeURIComponent(params.parameter.dns_firewall_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51588,7 +51585,7 @@ export const createClient = (apiClient: ApiClient, * Gets information about the current Zero Trust account. */ zero$trust$accounts$get$zero$trust$account$information: (params: Params$zero$trust$accounts$get$zero$trust$account$information, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway`; const headers = { Accept: "application/json" }; @@ -51603,7 +51600,7 @@ export const createClient = (apiClient: ApiClient, * Creates a Zero Trust account with an existing Cloudflare account. */ zero$trust$accounts$create$zero$trust$account: (params: Params$zero$trust$accounts$create$zero$trust$account, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway`; const headers = { Accept: "application/json" }; @@ -51618,7 +51615,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all application and application type mappings. */ zero$trust$gateway$application$and$application$type$mappings$list$application$and$application$type$mappings: (params: Params$zero$trust$gateway$application$and$application$type$mappings$list$application$and$application$type$mappings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/app_types\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/app_types`; const headers = { Accept: "application/json" }; @@ -51633,7 +51630,7 @@ export const createClient = (apiClient: ApiClient, * Get all Zero Trust Audit SSH settings for an account. */ zero$trust$get$audit$ssh$settings: (params: Params$zero$trust$get$audit$ssh$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings`; const headers = { Accept: "application/json" }; @@ -51648,7 +51645,7 @@ export const createClient = (apiClient: ApiClient, * Updates Zero Trust Audit SSH settings. */ zero$trust$update$audit$ssh$settings: (params: Params$zero$trust$update$audit$ssh$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/audit_ssh_settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51665,7 +51662,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a list of all categories. */ zero$trust$gateway$categories$list$categories: (params: Params$zero$trust$gateway$categories$list$categories, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/categories\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/categories`; const headers = { Accept: "application/json" }; @@ -51680,7 +51677,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the current Zero Trust account configuration. */ zero$trust$accounts$get$zero$trust$account$configuration: (params: Params$zero$trust$accounts$get$zero$trust$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { Accept: "application/json" }; @@ -51695,7 +51692,7 @@ export const createClient = (apiClient: ApiClient, * Updates the current Zero Trust account configuration. */ zero$trust$accounts$update$zero$trust$account$configuration: (params: Params$zero$trust$accounts$update$zero$trust$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51709,10 +51706,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Patch Zero Trust account configuration - * Patches the current Zero Trust account configuration. This endpoint can update a single subcollection of settings such as \`antivirus\`, \`tls_decrypt\`, \`activity_log\`, \`block_page\`, \`browser_isolation\`, \`fips\`, \`body_scanning\`, or \`custom_certificate\`, without updating the entire configuration object. Returns an error if any collection of settings is not properly configured. + * Patches the current Zero Trust account configuration. This endpoint can update a single subcollection of settings such as `antivirus`, `tls_decrypt`, `activity_log`, `block_page`, `browser_isolation`, `fips`, `body_scanning`, or `custom_certificate`, without updating the entire configuration object. Returns an error if any collection of settings is not properly configured. */ zero$trust$accounts$patch$zero$trust$account$configuration: (params: Params$zero$trust$accounts$patch$zero$trust$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/configuration\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51729,7 +51726,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all Zero Trust lists for an account. */ zero$trust$lists$list$zero$trust$lists: (params: Params$zero$trust$lists$list$zero$trust$lists, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists`; const headers = { Accept: "application/json" }; @@ -51744,7 +51741,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Zero Trust list. */ zero$trust$lists$create$zero$trust$list: (params: Params$zero$trust$lists$create$zero$trust$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51761,7 +51758,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Zero Trust list. */ zero$trust$lists$zero$trust$list$details: (params: Params$zero$trust$lists$zero$trust$list$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -51776,7 +51773,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured Zero Trust list. */ zero$trust$lists$update$zero$trust$list: (params: Params$zero$trust$lists$update$zero$trust$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51793,7 +51790,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a Zero Trust list. */ zero$trust$lists$delete$zero$trust$list: (params: Params$zero$trust$lists$delete$zero$trust$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -51808,7 +51805,7 @@ export const createClient = (apiClient: ApiClient, * Appends or removes an item from a configured Zero Trust list. */ zero$trust$lists$patch$zero$trust$list: (params: Params$zero$trust$lists$patch$zero$trust$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51825,7 +51822,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all items in a single Zero Trust list. */ zero$trust$lists$zero$trust$list$items: (params: Params$zero$trust$lists$zero$trust$list$items, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { Accept: "application/json" }; @@ -51840,7 +51837,7 @@ export const createClient = (apiClient: ApiClient, * Fetches Zero Trust Gateway locations for an account. */ zero$trust$gateway$locations$list$zero$trust$gateway$locations: (params: Params$zero$trust$gateway$locations$list$zero$trust$gateway$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations`; const headers = { Accept: "application/json" }; @@ -51855,7 +51852,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Zero Trust Gateway location. */ zero$trust$gateway$locations$create$zero$trust$gateway$location: (params: Params$zero$trust$gateway$locations$create$zero$trust$gateway$location, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51872,7 +51869,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Zero Trust Gateway location. */ zero$trust$gateway$locations$zero$trust$gateway$location$details: (params: Params$zero$trust$gateway$locations$zero$trust$gateway$location$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { Accept: "application/json" }; @@ -51887,7 +51884,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured Zero Trust Gateway location. */ zero$trust$gateway$locations$update$zero$trust$gateway$location: (params: Params$zero$trust$gateway$locations$update$zero$trust$gateway$location, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51904,7 +51901,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a configured Zero Trust Gateway location. */ zero$trust$gateway$locations$delete$zero$trust$gateway$location: (params: Params$zero$trust$gateway$locations$delete$zero$trust$gateway$location, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/locations/\${encodeURIComponent(params.parameter.location_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/locations/${encodeURIComponent(params.parameter.location_id)}`; const headers = { Accept: "application/json" }; @@ -51919,7 +51916,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the current logging settings for Zero Trust account. */ zero$trust$accounts$get$logging$settings$for$the$zero$trust$account: (params: Params$zero$trust$accounts$get$logging$settings$for$the$zero$trust$account, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/logging\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/logging`; const headers = { Accept: "application/json" }; @@ -51934,7 +51931,7 @@ export const createClient = (apiClient: ApiClient, * Updates logging settings for the current Zero Trust account. */ zero$trust$accounts$update$logging$settings$for$the$zero$trust$account: (params: Params$zero$trust$accounts$update$logging$settings$for$the$zero$trust$account, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/logging\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/logging`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51951,7 +51948,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Zero Trust Gateway proxy endpoint. */ zero$trust$gateway$proxy$endpoints$list$proxy$endpoints: (params: Params$zero$trust$gateway$proxy$endpoints$list$proxy$endpoints, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints`; const headers = { Accept: "application/json" }; @@ -51966,7 +51963,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Zero Trust Gateway proxy endpoint. */ zero$trust$gateway$proxy$endpoints$create$proxy$endpoint: (params: Params$zero$trust$gateway$proxy$endpoints$create$proxy$endpoint, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -51983,7 +51980,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all Zero Trust Gateway proxy endpoints for an account. */ zero$trust$gateway$proxy$endpoints$proxy$endpoint$details: (params: Params$zero$trust$gateway$proxy$endpoints$proxy$endpoint$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { Accept: "application/json" }; @@ -51998,7 +51995,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a configured Zero Trust Gateway proxy endpoint. */ zero$trust$gateway$proxy$endpoints$delete$proxy$endpoint: (params: Params$zero$trust$gateway$proxy$endpoints$delete$proxy$endpoint, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { Accept: "application/json" }; @@ -52013,7 +52010,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured Zero Trust Gateway proxy endpoint. */ zero$trust$gateway$proxy$endpoints$update$proxy$endpoint: (params: Params$zero$trust$gateway$proxy$endpoints$update$proxy$endpoint, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/\${encodeURIComponent(params.parameter.proxy_endpoint_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/proxy_endpoints/${encodeURIComponent(params.parameter.proxy_endpoint_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52030,7 +52027,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the Zero Trust Gateway rules for an account. */ zero$trust$gateway$rules$list$zero$trust$gateway$rules: (params: Params$zero$trust$gateway$rules$list$zero$trust$gateway$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules`; const headers = { Accept: "application/json" }; @@ -52045,7 +52042,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Zero Trust Gateway rule. */ zero$trust$gateway$rules$create$zero$trust$gateway$rule: (params: Params$zero$trust$gateway$rules$create$zero$trust$gateway$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52062,7 +52059,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Zero Trust Gateway rule. */ zero$trust$gateway$rules$zero$trust$gateway$rule$details: (params: Params$zero$trust$gateway$rules$zero$trust$gateway$rule$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -52077,7 +52074,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured Zero Trust Gateway rule. */ zero$trust$gateway$rules$update$zero$trust$gateway$rule: (params: Params$zero$trust$gateway$rules$update$zero$trust$gateway$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52094,7 +52091,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a Zero Trust Gateway rule. */ zero$trust$gateway$rules$delete$zero$trust$gateway$rule: (params: Params$zero$trust$gateway$rules$delete$zero$trust$gateway$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/gateway/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/gateway/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -52109,7 +52106,7 @@ export const createClient = (apiClient: ApiClient, * Returns a list of Hyperdrives */ list$hyperdrive: (params: Params$list$hyperdrive, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs`; const headers = { Accept: "application/json" }; @@ -52124,7 +52121,7 @@ export const createClient = (apiClient: ApiClient, * Creates and returns a new Hyperdrive configuration. */ create$hyperdrive: (params: Params$create$hyperdrive, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52141,7 +52138,7 @@ export const createClient = (apiClient: ApiClient, * Returns the specified Hyperdrive configuration. */ get$hyperdrive: (params: Params$get$hyperdrive, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { Accept: "application/json" }; @@ -52156,7 +52153,7 @@ export const createClient = (apiClient: ApiClient, * Updates and returns the specified Hyperdrive configuration. */ update$hyperdrive: (params: Params$update$hyperdrive, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52173,7 +52170,7 @@ export const createClient = (apiClient: ApiClient, * Deletes the specified Hyperdrive. */ delete$hyperdrive: (params: Params$delete$hyperdrive, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/\${encodeURIComponent(params.parameter.hyperdrive_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/hyperdrive/configs/${encodeURIComponent(params.parameter.hyperdrive_id)}`; const headers = { Accept: "application/json" }; @@ -52188,7 +52185,7 @@ export const createClient = (apiClient: ApiClient, * List up to 100 images with one request. Use the optional parameters below to get a specific range of images. */ cloudflare$images$list$images: (params: Params$cloudflare$images$list$images, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1`; const headers = { Accept: "application/json" }; @@ -52209,7 +52206,7 @@ export const createClient = (apiClient: ApiClient, * An image can be uploaded by sending an image file or passing an accessible to an API url. */ cloudflare$images$upload$an$image$via$url: (params: Params$cloudflare$images$upload$an$image$via$url, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52226,7 +52223,7 @@ export const createClient = (apiClient: ApiClient, * Fetch details for a single image. */ cloudflare$images$image$details: (params: Params$cloudflare$images$image$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { Accept: "application/json" }; @@ -52241,7 +52238,7 @@ export const createClient = (apiClient: ApiClient, * Delete an image on Cloudflare Images. On success, all copies of the image are deleted and purged from cache. */ cloudflare$images$delete$image: (params: Params$cloudflare$images$delete$image, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { Accept: "application/json" }; @@ -52256,7 +52253,7 @@ export const createClient = (apiClient: ApiClient, * Update image access control. On access control change, all copies of the image are purged from cache. */ cloudflare$images$update$image: (params: Params$cloudflare$images$update$image, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52273,7 +52270,7 @@ export const createClient = (apiClient: ApiClient, * Fetch base image. For most images this will be the originally uploaded file. For larger images it can be a near-lossless version of the original. */ cloudflare$images$base$image: (params: Params$cloudflare$images$base$image, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/\${encodeURIComponent(params.parameter.image_id)}/blob\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/${encodeURIComponent(params.parameter.image_id)}/blob`; const headers = { Accept: "image/*" }; @@ -52288,7 +52285,7 @@ export const createClient = (apiClient: ApiClient, * Lists your signing keys. These can be found on your Cloudflare Images dashboard. */ cloudflare$images$keys$list$signing$keys: (params: Params$cloudflare$images$keys$list$signing$keys, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/keys\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/keys`; const headers = { Accept: "application/json" }; @@ -52303,7 +52300,7 @@ export const createClient = (apiClient: ApiClient, * Fetch usage statistics details for Cloudflare Images. */ cloudflare$images$images$usage$statistics: (params: Params$cloudflare$images$images$usage$statistics, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/stats\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/stats`; const headers = { Accept: "application/json" }; @@ -52318,7 +52315,7 @@ export const createClient = (apiClient: ApiClient, * Lists existing variants. */ cloudflare$images$variants$list$variants: (params: Params$cloudflare$images$variants$list$variants, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants`; const headers = { Accept: "application/json" }; @@ -52333,7 +52330,7 @@ export const createClient = (apiClient: ApiClient, * Specify variants that allow you to resize images for different use cases. */ cloudflare$images$variants$create$a$variant: (params: Params$cloudflare$images$variants$create$a$variant, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52350,7 +52347,7 @@ export const createClient = (apiClient: ApiClient, * Fetch details for a single variant. */ cloudflare$images$variants$variant$details: (params: Params$cloudflare$images$variants$variant$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { Accept: "application/json" }; @@ -52365,7 +52362,7 @@ export const createClient = (apiClient: ApiClient, * Deleting a variant purges the cache for all images associated with the variant. */ cloudflare$images$variants$delete$a$variant: (params: Params$cloudflare$images$variants$delete$a$variant, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { Accept: "application/json" }; @@ -52380,7 +52377,7 @@ export const createClient = (apiClient: ApiClient, * Updating a variant purges the cache for all images associated with the variant. */ cloudflare$images$variants$update$a$variant: (params: Params$cloudflare$images$variants$update$a$variant, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/\${encodeURIComponent(params.parameter.variant_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v1/variants/${encodeURIComponent(params.parameter.variant_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52398,7 +52395,7 @@ export const createClient = (apiClient: ApiClient, * Endpoint returns continuation_token if more images are present. */ cloudflare$images$list$images$v2: (params: Params$cloudflare$images$list$images$v2, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v2\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v2`; const headers = { Accept: "application/json" }; @@ -52416,10 +52413,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Create authenticated direct upload URL V2 - * Direct uploads allow users to upload images without API keys. A common use case are web apps, client-side applications, or mobile devices where users upload content directly to Cloudflare Images. This method creates a draft record for a future image. It returns an upload URL and an image identifier. To verify if the image itself has been uploaded, send an image details request (accounts/:account_identifier/images/v1/:identifier), and check that the \`draft: true\` property is not present. + * Direct uploads allow users to upload images without API keys. A common use case are web apps, client-side applications, or mobile devices where users upload content directly to Cloudflare Images. This method creates a draft record for a future image. It returns an upload URL and an image identifier. To verify if the image itself has been uploaded, send an image details request (accounts/:account_identifier/images/v1/:identifier), and check that the `draft: true` property is not present. */ cloudflare$images$create$authenticated$direct$upload$url$v$2: (params: Params$cloudflare$images$create$authenticated$direct$upload$url$v$2, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/images/v2/direct_upload\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/images/v2/direct_upload`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52433,7 +52430,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get ASN Overview */ asn$intelligence$get$asn$overview: (params: Params$asn$intelligence$get$asn$overview, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/asn/\${encodeURIComponent(params.parameter.asn)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/asn/${encodeURIComponent(params.parameter.asn)}`; const headers = { Accept: "application/json" }; @@ -52445,7 +52442,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get ASN Subnets */ asn$intelligence$get$asn$subnets: (params: Params$asn$intelligence$get$asn$subnets, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/asn/\${encodeURIComponent(params.parameter.asn)}/subnets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/asn/${encodeURIComponent(params.parameter.asn)}/subnets`; const headers = { Accept: "application/json" }; @@ -52457,7 +52454,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Passive DNS by IP */ passive$dns$by$ip$get$passive$dns$by$ip: (params: Params$passive$dns$by$ip$get$passive$dns$by$ip, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/dns\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/dns`; const headers = { Accept: "application/json" }; @@ -52476,7 +52473,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Domain Details */ domain$intelligence$get$domain$details: (params: Params$domain$intelligence$get$domain$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain`; const headers = { Accept: "application/json" }; @@ -52492,7 +52489,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Domain History */ domain$history$get$domain$history: (params: Params$domain$history$get$domain$history, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain-history\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain-history`; const headers = { Accept: "application/json" }; @@ -52508,7 +52505,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Multiple Domain Details */ domain$intelligence$get$multiple$domain$details: (params: Params$domain$intelligence$get$multiple$domain$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/domain/bulk\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/domain/bulk`; const headers = { Accept: "application/json" }; @@ -52524,7 +52521,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get IP Overview */ ip$intelligence$get$ip$overview: (params: Params$ip$intelligence$get$ip$overview, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/ip\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/ip`; const headers = { Accept: "application/json" }; @@ -52541,7 +52538,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get IP Lists */ ip$list$get$ip$lists: (params: Params$ip$list$get$ip$lists, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/ip-list\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/ip-list`; const headers = { Accept: "application/json" }; @@ -52553,7 +52550,7 @@ export const createClient = (apiClient: ApiClient, }, /** Create Miscategorization */ miscategorization$create$miscategorization: (params: Params$miscategorization$create$miscategorization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/miscategorization\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/miscategorization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52567,7 +52564,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get WHOIS Record */ whois$record$get$whois$record: (params: Params$whois$record$get$whois$record, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/intel/whois\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/intel/whois`; const headers = { Accept: "application/json" }; @@ -52586,7 +52583,7 @@ export const createClient = (apiClient: ApiClient, * Lists all fields available for a dataset. The response result is an object with key-value pairs, where keys are field names, and values are descriptions. */ get$accounts$account_identifier$logpush$datasets$dataset$fields: (params: Params$get$accounts$account_identifier$logpush$datasets$dataset$fields, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/fields\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/fields`; const headers = { Accept: "application/json" }; @@ -52601,7 +52598,7 @@ export const createClient = (apiClient: ApiClient, * Lists Logpush jobs for an account for a dataset. */ get$accounts$account_identifier$logpush$datasets$dataset$jobs: (params: Params$get$accounts$account_identifier$logpush$datasets$dataset$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/jobs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/jobs`; const headers = { Accept: "application/json" }; @@ -52616,7 +52613,7 @@ export const createClient = (apiClient: ApiClient, * Lists Logpush jobs for an account. */ get$accounts$account_identifier$logpush$jobs: (params: Params$get$accounts$account_identifier$logpush$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs`; const headers = { Accept: "application/json" }; @@ -52631,7 +52628,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Logpush job for an account. */ post$accounts$account_identifier$logpush$jobs: (params: Params$post$accounts$account_identifier$logpush$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52648,7 +52645,7 @@ export const createClient = (apiClient: ApiClient, * Gets the details of a Logpush job. */ get$accounts$account_identifier$logpush$jobs$job_identifier: (params: Params$get$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -52663,7 +52660,7 @@ export const createClient = (apiClient: ApiClient, * Updates a Logpush job. */ put$accounts$account_identifier$logpush$jobs$job_identifier: (params: Params$put$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52680,7 +52677,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a Logpush job. */ delete$accounts$account_identifier$logpush$jobs$job_identifier: (params: Params$delete$accounts$account_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -52695,7 +52692,7 @@ export const createClient = (apiClient: ApiClient, * Gets a new ownership challenge sent to your destination. */ post$accounts$account_identifier$logpush$ownership: (params: Params$post$accounts$account_identifier$logpush$ownership, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/ownership\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52712,7 +52709,7 @@ export const createClient = (apiClient: ApiClient, * Validates ownership challenge of the destination. */ post$accounts$account_identifier$logpush$ownership$validate: (params: Params$post$accounts$account_identifier$logpush$ownership$validate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/ownership/validate\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52729,7 +52726,7 @@ export const createClient = (apiClient: ApiClient, * Checks if there is an existing job with a destination. */ delete$accounts$account_identifier$logpush$validate$destination$exists: (params: Params$delete$accounts$account_identifier$logpush$validate$destination$exists, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/validate/destination/exists\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/validate/destination/exists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52746,7 +52743,7 @@ export const createClient = (apiClient: ApiClient, * Validates logpull origin with logpull_options. */ post$accounts$account_identifier$logpush$validate$origin: (params: Params$post$accounts$account_identifier$logpush$validate$origin, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logpush/validate/origin\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logpush/validate/origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52763,7 +52760,7 @@ export const createClient = (apiClient: ApiClient, * Gets CMB config. */ get$accounts$account_identifier$logs$control$cmb$config: (params: Params$get$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { Accept: "application/json" }; @@ -52778,7 +52775,7 @@ export const createClient = (apiClient: ApiClient, * Updates CMB config. */ put$accounts$account_identifier$logs$control$cmb$config: (params: Params$put$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52795,7 +52792,7 @@ export const createClient = (apiClient: ApiClient, * Deletes CMB config. */ delete$accounts$account_identifier$logs$control$cmb$config: (params: Params$delete$accounts$account_identifier$logs$control$cmb$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/logs/control/cmb/config`; const headers = { Accept: "application/json" }; @@ -52810,7 +52807,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a list of all user projects. */ pages$project$get$projects: (params: Params$pages$project$get$projects, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects`; const headers = { Accept: "application/json" }; @@ -52825,7 +52822,7 @@ export const createClient = (apiClient: ApiClient, * Create a new project. */ pages$project$create$project: (params: Params$pages$project$create$project, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52842,7 +52839,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a project by name. */ pages$project$get$project: (params: Params$pages$project$get$project, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { Accept: "application/json" }; @@ -52857,7 +52854,7 @@ export const createClient = (apiClient: ApiClient, * Delete a project by name. */ pages$project$delete$project: (params: Params$pages$project$delete$project, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { Accept: "application/json" }; @@ -52872,7 +52869,7 @@ export const createClient = (apiClient: ApiClient, * Set new attributes for an existing project. Modify environment variables. To delete an environment variable, set the key to null. */ pages$project$update$project: (params: Params$pages$project$update$project, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -52889,7 +52886,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a list of project deployments. */ pages$deployment$get$deployments: (params: Params$pages$deployment$get$deployments, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments`; const headers = { Accept: "application/json" }; @@ -52904,7 +52901,7 @@ export const createClient = (apiClient: ApiClient, * Start a new deployment from production. The repository and account must have already been authorized on the Cloudflare Pages dashboard. */ pages$deployment$create$deployment: (params: Params$pages$deployment$create$deployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -52921,7 +52918,7 @@ export const createClient = (apiClient: ApiClient, * Fetch information about a deployment. */ pages$deployment$get$deployment$info: (params: Params$pages$deployment$get$deployment$info, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -52936,7 +52933,7 @@ export const createClient = (apiClient: ApiClient, * Delete a deployment. */ pages$deployment$delete$deployment: (params: Params$pages$deployment$delete$deployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -52951,7 +52948,7 @@ export const createClient = (apiClient: ApiClient, * Fetch deployment logs for a project. */ pages$deployment$get$deployment$logs: (params: Params$pages$deployment$get$deployment$logs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/history/logs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/history/logs`; const headers = { Accept: "application/json" }; @@ -52966,7 +52963,7 @@ export const createClient = (apiClient: ApiClient, * Retry a previous deployment. */ pages$deployment$retry$deployment: (params: Params$pages$deployment$retry$deployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/retry\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/retry`; const headers = { Accept: "application/json" }; @@ -52981,7 +52978,7 @@ export const createClient = (apiClient: ApiClient, * Rollback the production deployment to a previous deployment. You can only rollback to succesful builds on production. */ pages$deployment$rollback$deployment: (params: Params$pages$deployment$rollback$deployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/deployments/\${encodeURIComponent(params.parameter.deployment_id)}/rollback\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/deployments/${encodeURIComponent(params.parameter.deployment_id)}/rollback`; const headers = { Accept: "application/json" }; @@ -52996,7 +52993,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a list of all domains associated with a Pages project. */ pages$domains$get$domains: (params: Params$pages$domains$get$domains, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains`; const headers = { Accept: "application/json" }; @@ -53011,7 +53008,7 @@ export const createClient = (apiClient: ApiClient, * Add a new domain for the Pages project. */ pages$domains$add$domain: (params: Params$pages$domains$add$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53028,7 +53025,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single domain. */ pages$domains$get$domain: (params: Params$pages$domains$get$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53043,7 +53040,7 @@ export const createClient = (apiClient: ApiClient, * Delete a Pages project's domain. */ pages$domains$delete$domain: (params: Params$pages$domains$delete$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53058,7 +53055,7 @@ export const createClient = (apiClient: ApiClient, * Retry the validation status of a single domain. */ pages$domains$patch$domain: (params: Params$pages$domains$patch$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53073,7 +53070,7 @@ export const createClient = (apiClient: ApiClient, * Purge all cached build artifacts for a Pages project */ pages$purge$build$cache: (params: Params$pages$purge$build$cache, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/pages/projects/\${encodeURIComponent(params.parameter.project_name)}/purge_build_cache\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/pages/projects/${encodeURIComponent(params.parameter.project_name)}/purge_build_cache`; const headers = { Accept: "application/json" }; @@ -53088,7 +53085,7 @@ export const createClient = (apiClient: ApiClient, * Lists all R2 buckets on your account */ r2$list$buckets: (params: Params$r2$list$buckets, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets`; const headers = { Accept: "application/json" }; @@ -53112,7 +53109,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new R2 bucket. */ r2$create$bucket: (params: Params$r2$create$bucket, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53129,7 +53126,7 @@ export const createClient = (apiClient: ApiClient, * Gets metadata for an existing R2 bucket. */ r2$get$bucket: (params: Params$r2$get$bucket, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}`; const headers = { Accept: "application/json" }; @@ -53144,7 +53141,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing R2 bucket. */ r2$delete$bucket: (params: Params$r2$delete$bucket, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}`; const headers = { Accept: "application/json" }; @@ -53159,7 +53156,7 @@ export const createClient = (apiClient: ApiClient, * Gets configuration for Sippy for an existing R2 bucket. */ r2$get$bucket$sippy$config: (params: Params$r2$get$bucket$sippy$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { Accept: "application/json" }; @@ -53174,7 +53171,7 @@ export const createClient = (apiClient: ApiClient, * Sets configuration for Sippy for an existing R2 bucket. */ r2$put$bucket$sippy$config: (params: Params$r2$put$bucket$sippy$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53191,7 +53188,7 @@ export const createClient = (apiClient: ApiClient, * Disables Sippy on this bucket */ r2$delete$bucket$sippy$config: (params: Params$r2$delete$bucket$sippy$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/r2/buckets/\${encodeURIComponent(params.parameter.bucket_name)}/sippy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/r2/buckets/${encodeURIComponent(params.parameter.bucket_name)}/sippy`; const headers = { Accept: "application/json" }; @@ -53206,7 +53203,7 @@ export const createClient = (apiClient: ApiClient, * List domains handled by Registrar. */ registrar$domains$list$domains: (params: Params$registrar$domains$list$domains, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains`; const headers = { Accept: "application/json" }; @@ -53221,7 +53218,7 @@ export const createClient = (apiClient: ApiClient, * Show individual domain. */ registrar$domains$get$domain: (params: Params$registrar$domains$get$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { Accept: "application/json" }; @@ -53236,7 +53233,7 @@ export const createClient = (apiClient: ApiClient, * Update individual domain. */ registrar$domains$update$domain: (params: Params$registrar$domains$update$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/registrar/domains/\${encodeURIComponent(params.parameter.domain_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/registrar/domains/${encodeURIComponent(params.parameter.domain_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53253,7 +53250,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all lists in the account. */ lists$get$lists: (params: Params$lists$get$lists, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists`; const headers = { Accept: "application/json" }; @@ -53268,7 +53265,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new list of the specified type. */ lists$create$a$list: (params: Params$lists$create$a$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53285,7 +53282,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a list. */ lists$get$a$list: (params: Params$lists$get$a$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -53300,7 +53297,7 @@ export const createClient = (apiClient: ApiClient, * Updates the description of a list. */ lists$update$a$list: (params: Params$lists$update$a$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53317,7 +53314,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a specific list and all its items. */ lists$delete$a$list: (params: Params$lists$delete$a$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}`; const headers = { Accept: "application/json" }; @@ -53332,7 +53329,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all the items in the list. */ lists$get$list$items: (params: Params$lists$get$list$items, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { Accept: "application/json" }; @@ -53352,10 +53349,10 @@ export const createClient = (apiClient: ApiClient, * Update all list items * Removes all existing items from the list and adds the provided items to the list. * - * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned \`operation_id\`. + * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned `operation_id`. */ lists$update$all$list$items: (params: Params$lists$update$all$list$items, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53371,10 +53368,10 @@ export const createClient = (apiClient: ApiClient, * Create list items * Appends new items to the list. * - * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned \`operation_id\`. + * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned `operation_id`. */ lists$create$list$items: (params: Params$lists$create$list$items, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53390,10 +53387,10 @@ export const createClient = (apiClient: ApiClient, * Delete list items * Removes one or more items from a list. * - * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned \`operation_id\`. + * This operation is asynchronous. To get current the operation status, invoke the [Get bulk operation status](/operations/lists-get-bulk-operation-status) endpoint with the returned `operation_id`. */ lists$delete$list$items: (params: Params$lists$delete$list$items, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53410,7 +53407,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all rulesets at the account level. */ listAccountRulesets: (params: Params$listAccountRulesets, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets`; const headers = { Accept: "application/json" }; @@ -53425,7 +53422,7 @@ export const createClient = (apiClient: ApiClient, * Creates a ruleset at the account level. */ createAccountRuleset: (params: Params$createAccountRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53442,7 +53439,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the latest version of an account ruleset. */ getAccountRuleset: (params: Params$getAccountRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { Accept: "application/json" }; @@ -53457,7 +53454,7 @@ export const createClient = (apiClient: ApiClient, * Updates an account ruleset, creating a new version. */ updateAccountRuleset: (params: Params$updateAccountRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53474,7 +53471,7 @@ export const createClient = (apiClient: ApiClient, * Deletes all versions of an existing account ruleset. */ deleteAccountRuleset: (params: Params$deleteAccountRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -53487,7 +53484,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new rule to an account ruleset. The rule will be added to the end of the existing list of rules in the ruleset by default. */ createAccountRulesetRule: (params: Params$createAccountRulesetRule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53504,7 +53501,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing rule from an account ruleset. */ deleteAccountRulesetRule: (params: Params$deleteAccountRulesetRule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -53519,7 +53516,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing rule in an account ruleset. */ updateAccountRulesetRule: (params: Params$updateAccountRulesetRule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53536,7 +53533,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the versions of an account ruleset. */ listAccountRulesetVersions: (params: Params$listAccountRulesetVersions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions`; const headers = { Accept: "application/json" }; @@ -53551,7 +53548,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a specific version of an account ruleset. */ getAccountRulesetVersion: (params: Params$getAccountRulesetVersion, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -53566,7 +53563,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing version of an account ruleset. */ deleteAccountRulesetVersion: (params: Params$deleteAccountRulesetVersion, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -53579,7 +53576,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the rules of a managed account ruleset version for a given tag. */ listAccountRulesetVersionRulesByTag: (params: Params$listAccountRulesetVersionRulesByTag, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}/by_tag/\${encodeURIComponent(params.parameter.rule_tag)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}/by_tag/${encodeURIComponent(params.parameter.rule_tag)}`; const headers = { Accept: "application/json" }; @@ -53594,7 +53591,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the latest version of the account entry point ruleset for a given phase. */ getAccountEntrypointRuleset: (params: Params$getAccountEntrypointRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { Accept: "application/json" }; @@ -53609,7 +53606,7 @@ export const createClient = (apiClient: ApiClient, * Updates an account entry point ruleset, creating a new version. */ updateAccountEntrypointRuleset: (params: Params$updateAccountEntrypointRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53626,7 +53623,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the versions of an account entry point ruleset. */ listAccountEntrypointRulesetVersions: (params: Params$listAccountEntrypointRulesetVersions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions`; const headers = { Accept: "application/json" }; @@ -53641,7 +53638,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a specific version of an account entry point ruleset. */ getAccountEntrypointRulesetVersion: (params: Params$getAccountEntrypointRulesetVersion, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -53656,7 +53653,7 @@ export const createClient = (apiClient: ApiClient, * Lists up to 1000 videos from a single request. For a specific range, refer to the optional parameters. */ stream$videos$list$videos: (params: Params$stream$videos$list$videos, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream`; const headers = { Accept: "application/json" }; @@ -53679,10 +53676,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Initiate video uploads using TUS - * Initiates a video upload using the TUS protocol. On success, the server responds with a status code 201 (created) and includes a \`location\` header to indicate where the content should be uploaded. Refer to https://tus.io for protocol details. + * Initiates a video upload using the TUS protocol. On success, the server responds with a status code 201 (created) and includes a `location` header to indicate where the content should be uploaded. Refer to https://tus.io for protocol details. */ stream$videos$initiate$video$uploads$using$tus: (params: Params$stream$videos$initiate$video$uploads$using$tus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream`; const headers = { "Tus-Resumable": params.parameter["Tus-Resumable"], "Upload-Creator": params.parameter["Upload-Creator"], @@ -53700,7 +53697,7 @@ export const createClient = (apiClient: ApiClient, * Fetches details for a single video. */ stream$videos$retrieve$video$details: (params: Params$stream$videos$retrieve$video$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -53715,7 +53712,7 @@ export const createClient = (apiClient: ApiClient, * Edit details for a single video. */ stream$videos$update$video$details: (params: Params$stream$videos$update$video$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53732,7 +53729,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a video and its copies from Cloudflare Stream. */ stream$videos$delete$video: (params: Params$stream$videos$delete$video, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -53745,7 +53742,7 @@ export const createClient = (apiClient: ApiClient, * Lists additional audio tracks on a video. Note this API will not return information for audio attached to the video upload. */ list$audio$tracks: (params: Params$list$audio$tracks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio`; const headers = { Accept: "application/json" }; @@ -53760,7 +53757,7 @@ export const createClient = (apiClient: ApiClient, * Deletes additional audio tracks on a video. Deleting a default audio track is not allowed. You must assign another audio track as default prior to deletion. */ delete$audio$tracks: (params: Params$delete$audio$tracks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/\${encodeURIComponent(params.parameter.audio_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/${encodeURIComponent(params.parameter.audio_identifier)}`; const headers = { Accept: "application/json" }; @@ -53772,10 +53769,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Edit additional audio tracks on a video - * Edits additional audio tracks on a video. Editing the default status of an audio track to \`true\` will mark all other audio tracks on the video default status to \`false\`. + * Edits additional audio tracks on a video. Editing the default status of an audio track to `true` will mark all other audio tracks on the video default status to `false`. */ edit$audio$tracks: (params: Params$edit$audio$tracks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/\${encodeURIComponent(params.parameter.audio_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/${encodeURIComponent(params.parameter.audio_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53792,7 +53789,7 @@ export const createClient = (apiClient: ApiClient, * Adds an additional audio track to a video using the provided audio track URL. */ add$audio$track: (params: Params$add$audio$track, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/audio/copy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/audio/copy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53809,7 +53806,7 @@ export const createClient = (apiClient: ApiClient, * Lists the available captions or subtitles for a specific video. */ stream$subtitles$$captions$list$captions$or$subtitles: (params: Params$stream$subtitles$$captions$list$captions$or$subtitles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions`; const headers = { Accept: "application/json" }; @@ -53824,7 +53821,7 @@ export const createClient = (apiClient: ApiClient, * Uploads the caption or subtitle file to the endpoint for a specific BCP47 language. One caption or subtitle file per language is allowed. */ stream$subtitles$$captions$upload$captions$or$subtitles: (params: Params$stream$subtitles$$captions$upload$captions$or$subtitles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions/\${encodeURIComponent(params.parameter.language)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions/${encodeURIComponent(params.parameter.language)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -53841,7 +53838,7 @@ export const createClient = (apiClient: ApiClient, * Removes the captions or subtitles from a video. */ stream$subtitles$$captions$delete$captions$or$subtitles: (params: Params$stream$subtitles$$captions$delete$captions$or$subtitles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/captions/\${encodeURIComponent(params.parameter.language)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/captions/${encodeURIComponent(params.parameter.language)}`; const headers = { Accept: "application/json" }; @@ -53856,7 +53853,7 @@ export const createClient = (apiClient: ApiClient, * Lists the downloads created for a video. */ stream$m$p$4$downloads$list$downloads: (params: Params$stream$m$p$4$downloads$list$downloads, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53871,7 +53868,7 @@ export const createClient = (apiClient: ApiClient, * Creates a download for a video when a video is ready to view. */ stream$m$p$4$downloads$create$downloads: (params: Params$stream$m$p$4$downloads$create$downloads, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53886,7 +53883,7 @@ export const createClient = (apiClient: ApiClient, * Delete the downloads for a video. */ stream$m$p$4$downloads$delete$downloads: (params: Params$stream$m$p$4$downloads$delete$downloads, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/downloads\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/downloads`; const headers = { Accept: "application/json" }; @@ -53901,7 +53898,7 @@ export const createClient = (apiClient: ApiClient, * Fetches an HTML code snippet to embed a video in a web page delivered through Cloudflare. On success, returns an HTML fragment for use on web pages to display a video. On failure, returns a JSON response body. */ stream$videos$retreieve$embed$code$html: (params: Params$stream$videos$retreieve$embed$code$html, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/embed\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/embed`; const headers = { Accept: "application/json" }; @@ -53916,7 +53913,7 @@ export const createClient = (apiClient: ApiClient, * Creates a signed URL token for a video. If a body is not provided in the request, a token is created with default values. */ stream$videos$create$signed$url$tokens$for$videos: (params: Params$stream$videos$create$signed$url$tokens$for$videos, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/\${encodeURIComponent(params.parameter.identifier)}/token\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/${encodeURIComponent(params.parameter.identifier)}/token`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53933,7 +53930,7 @@ export const createClient = (apiClient: ApiClient, * Clips a video based on the specified start and end times provided in seconds. */ stream$video$clipping$clip$videos$given$a$start$and$end$time: (params: Params$stream$video$clipping$clip$videos$given$a$start$and$end$time, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/clip\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/clip`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -53950,7 +53947,7 @@ export const createClient = (apiClient: ApiClient, * Uploads a video to Stream from a provided URL. */ stream$videos$upload$videos$from$a$url: (params: Params$stream$videos$upload$videos$from$a$url, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/copy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/copy`; const headers = { "Content-Type": "application/json", Accept: "application/json", @@ -53969,7 +53966,7 @@ export const createClient = (apiClient: ApiClient, * Creates a direct upload that allows video uploads without an API key. */ stream$videos$upload$videos$via$direct$upload$ur$ls: (params: Params$stream$videos$upload$videos$via$direct$upload$ur$ls, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/direct_upload\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/direct_upload`; const headers = { "Content-Type": "application/json", Accept: "application/json", @@ -53987,7 +53984,7 @@ export const createClient = (apiClient: ApiClient, * Lists the video ID and creation date and time when a signing key was created. */ stream$signing$keys$list$signing$keys: (params: Params$stream$signing$keys$list$signing$keys, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys`; const headers = { Accept: "application/json" }; @@ -54002,7 +53999,7 @@ export const createClient = (apiClient: ApiClient, * Creates an RSA private key in PEM and JWK formats. Key files are only displayed once after creation. Keys are created, used, and deleted independently of videos, and every key can sign any video. */ stream$signing$keys$create$signing$keys: (params: Params$stream$signing$keys$create$signing$keys, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys`; const headers = { Accept: "application/json" }; @@ -54017,7 +54014,7 @@ export const createClient = (apiClient: ApiClient, * Deletes signing keys and revokes all signed URLs generated with the key. */ stream$signing$keys$delete$signing$keys: (params: Params$stream$signing$keys$delete$signing$keys, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/keys/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/keys/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54032,7 +54029,7 @@ export const createClient = (apiClient: ApiClient, * Lists the live inputs created for an account. To get the credentials needed to stream to a specific live input, request a single live input. */ stream$live$inputs$list$live$inputs: (params: Params$stream$live$inputs$list$live$inputs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs`; const headers = { Accept: "application/json" }; @@ -54051,7 +54048,7 @@ export const createClient = (apiClient: ApiClient, * Creates a live input, and returns credentials that you or your users can use to stream live video to Cloudflare Stream. */ stream$live$inputs$create$a$live$input: (params: Params$stream$live$inputs$create$a$live$input, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54068,7 +54065,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves details of an existing live input. */ stream$live$inputs$retrieve$a$live$input: (params: Params$stream$live$inputs$retrieve$a$live$input, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = { Accept: "application/json" }; @@ -54083,7 +54080,7 @@ export const createClient = (apiClient: ApiClient, * Updates a specified live input. */ stream$live$inputs$update$a$live$input: (params: Params$stream$live$inputs$update$a$live$input, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54100,7 +54097,7 @@ export const createClient = (apiClient: ApiClient, * Prevents a live input from being streamed to and makes the live input inaccessible to any future API calls. */ stream$live$inputs$delete$a$live$input: (params: Params$stream$live$inputs$delete$a$live$input, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -54113,7 +54110,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves all outputs associated with a specified live input. */ stream$live$inputs$list$all$outputs$associated$with$a$specified$live$input: (params: Params$stream$live$inputs$list$all$outputs$associated$with$a$specified$live$input, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs`; const headers = { Accept: "application/json" }; @@ -54128,7 +54125,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new output that can be used to simulcast or restream live video to other RTMP or SRT destinations. Outputs are always linked to a specific live input — one live input can have many outputs. */ stream$live$inputs$create$a$new$output$$connected$to$a$live$input: (params: Params$stream$live$inputs$create$a$new$output$$connected$to$a$live$input, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54145,7 +54142,7 @@ export const createClient = (apiClient: ApiClient, * Updates the state of an output. */ stream$live$inputs$update$an$output: (params: Params$stream$live$inputs$update$an$output, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/\${encodeURIComponent(params.parameter.output_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/${encodeURIComponent(params.parameter.output_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54162,7 +54159,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an output and removes it from the associated live input. */ stream$live$inputs$delete$an$output: (params: Params$stream$live$inputs$delete$an$output, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/\${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/\${encodeURIComponent(params.parameter.output_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/live_inputs/${encodeURIComponent(params.parameter.live_input_identifier)}/outputs/${encodeURIComponent(params.parameter.output_identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -54175,7 +54172,7 @@ export const createClient = (apiClient: ApiClient, * Returns information about an account's storage use. */ stream$videos$storage$usage: (params: Params$stream$videos$storage$usage, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/storage-usage\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/storage-usage`; const headers = { Accept: "application/json" }; @@ -54194,7 +54191,7 @@ export const createClient = (apiClient: ApiClient, * Lists all watermark profiles for an account. */ stream$watermark$profile$list$watermark$profiles: (params: Params$stream$watermark$profile$list$watermark$profiles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks`; const headers = { Accept: "application/json" }; @@ -54206,10 +54203,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Create watermark profiles via basic upload - * Creates watermark profiles using a single \`HTTP POST multipart/form-data\` request. + * Creates watermark profiles using a single `HTTP POST multipart/form-data` request. */ stream$watermark$profile$create$watermark$profiles$via$basic$upload: (params: Params$stream$watermark$profile$create$watermark$profiles$via$basic$upload, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -54226,7 +54223,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves details for a single watermark profile. */ stream$watermark$profile$watermark$profile$details: (params: Params$stream$watermark$profile$watermark$profile$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54241,7 +54238,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a watermark profile. */ stream$watermark$profile$delete$watermark$profiles: (params: Params$stream$watermark$profile$delete$watermark$profiles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/watermarks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -54256,7 +54253,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves a list of webhooks. */ stream$webhook$view$webhooks: (params: Params$stream$webhook$view$webhooks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { Accept: "application/json" }; @@ -54271,7 +54268,7 @@ export const createClient = (apiClient: ApiClient, * Creates a webhook notification. */ stream$webhook$create$webhooks: (params: Params$stream$webhook$create$webhooks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54288,7 +54285,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a webhook. */ stream$webhook$delete$webhooks: (params: Params$stream$webhook$delete$webhooks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/stream/webhook\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/stream/webhook`; const headers = { Accept: "application/json" }; @@ -54303,7 +54300,7 @@ export const createClient = (apiClient: ApiClient, * Lists and filters private network routes in an account. */ tunnel$route$list$tunnel$routes: (params: Params$tunnel$route$list$tunnel$routes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes`; const headers = { Accept: "application/json" }; @@ -54332,7 +54329,7 @@ export const createClient = (apiClient: ApiClient, * Routes a private network through a Cloudflare Tunnel. */ tunnel$route$create$a$tunnel$route: (params: Params$tunnel$route$create$a$tunnel$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54349,7 +54346,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a private network route from an account. */ tunnel$route$delete$a$tunnel$route: (params: Params$tunnel$route$delete$a$tunnel$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -54364,7 +54361,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing private network route in an account. The fields that are meant to be updated should be provided in the body of the request. */ tunnel$route$update$a$tunnel$route: (params: Params$tunnel$route$update$a$tunnel$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54381,7 +54378,7 @@ export const createClient = (apiClient: ApiClient, * Fetches routes that contain the given IP address. */ tunnel$route$get$tunnel$route$by$ip: (params: Params$tunnel$route$get$tunnel$route$by$ip, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/ip/\${encodeURIComponent(params.parameter.ip)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/ip/${encodeURIComponent(params.parameter.ip)}`; const headers = { Accept: "application/json" }; @@ -54397,10 +54394,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Create a tunnel route (CIDR Endpoint) - * Routes a private network through a Cloudflare Tunnel. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. + * Routes a private network through a Cloudflare Tunnel. The CIDR in `ip_network_encoded` must be written in URL-encoded format. */ tunnel$route$create$a$tunnel$route$with$cidr: (params: Params$tunnel$route$create$a$tunnel$route$with$cidr, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54414,10 +54411,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Delete a tunnel route (CIDR Endpoint) - * Deletes a private network route from an account. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. If no virtual_network_id is provided it will delete the route from the default vnet. If no tun_type is provided it will fetch the type from the tunnel_id or if that is missing it will assume Cloudflare Tunnel as default. If tunnel_id is provided it will delete the route from that tunnel, otherwise it will delete the route based on the vnet and tun_type. + * Deletes a private network route from an account. The CIDR in `ip_network_encoded` must be written in URL-encoded format. If no virtual_network_id is provided it will delete the route from the default vnet. If no tun_type is provided it will fetch the type from the tunnel_id or if that is missing it will assume Cloudflare Tunnel as default. If tunnel_id is provided it will delete the route from that tunnel, otherwise it will delete the route based on the vnet and tun_type. */ tunnel$route$delete$a$tunnel$route$with$cidr: (params: Params$tunnel$route$delete$a$tunnel$route$with$cidr, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { Accept: "application/json" }; @@ -54435,10 +54432,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update a tunnel route (CIDR Endpoint) - * Updates an existing private network route in an account. The CIDR in \`ip_network_encoded\` must be written in URL-encoded format. + * Updates an existing private network route in an account. The CIDR in `ip_network_encoded` must be written in URL-encoded format. */ tunnel$route$update$a$tunnel$route$with$cidr: (params: Params$tunnel$route$update$a$tunnel$route$with$cidr, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/\${encodeURIComponent(params.parameter.ip_network_encoded)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/routes/network/${encodeURIComponent(params.parameter.ip_network_encoded)}`; const headers = { Accept: "application/json" }; @@ -54453,7 +54450,7 @@ export const createClient = (apiClient: ApiClient, * Lists and filters virtual networks in an account. */ tunnel$virtual$network$list$virtual$networks: (params: Params$tunnel$virtual$network$list$virtual$networks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks`; const headers = { Accept: "application/json" }; @@ -54476,7 +54473,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new virtual network to an account. */ tunnel$virtual$network$create$a$virtual$network: (params: Params$tunnel$virtual$network$create$a$virtual$network, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54493,7 +54490,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing virtual network. */ tunnel$virtual$network$delete$a$virtual$network: (params: Params$tunnel$virtual$network$delete$a$virtual$network, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/\${encodeURIComponent(params.parameter.virtual_network_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/${encodeURIComponent(params.parameter.virtual_network_id)}`; const headers = { Accept: "application/json" }; @@ -54508,7 +54505,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing virtual network. */ tunnel$virtual$network$update$a$virtual$network: (params: Params$tunnel$virtual$network$update$a$virtual$network, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/\${encodeURIComponent(params.parameter.virtual_network_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/teamnet/virtual_networks/${encodeURIComponent(params.parameter.virtual_network_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54525,7 +54522,7 @@ export const createClient = (apiClient: ApiClient, * Lists and filters all types of Tunnels in an account. */ cloudflare$tunnel$list$all$tunnels: (params: Params$cloudflare$tunnel$list$all$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels`; const headers = { Accept: "application/json" }; @@ -54554,7 +54551,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Argo Tunnel in an account. */ argo$tunnel$create$an$argo$tunnel: (params: Params$argo$tunnel$create$an$argo$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54571,7 +54568,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Argo Tunnel. */ argo$tunnel$get$an$argo$tunnel: (params: Params$argo$tunnel$get$an$argo$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -54586,7 +54583,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an Argo Tunnel from an account. */ argo$tunnel$delete$an$argo$tunnel: (params: Params$argo$tunnel$delete$an$argo$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54603,7 +54600,7 @@ export const createClient = (apiClient: ApiClient, * Removes connections that are in a disconnected or pending reconnect state. We recommend running this command after shutting down a tunnel. */ argo$tunnel$clean$up$argo$tunnel$connections: (params: Params$argo$tunnel$clean$up$argo$tunnel$connections, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/tunnels/\${encodeURIComponent(params.parameter.tunnel_id)}/connections\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/tunnels/${encodeURIComponent(params.parameter.tunnel_id)}/connections`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54620,7 +54617,7 @@ export const createClient = (apiClient: ApiClient, * Lists and filters Warp Connector Tunnels in an account. */ cloudflare$tunnel$list$warp$connector$tunnels: (params: Params$cloudflare$tunnel$list$warp$connector$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector`; const headers = { Accept: "application/json" }; @@ -54648,7 +54645,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Warp Connector Tunnel in an account. */ cloudflare$tunnel$create$a$warp$connector$tunnel: (params: Params$cloudflare$tunnel$create$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54665,7 +54662,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Warp Connector Tunnel. */ cloudflare$tunnel$get$a$warp$connector$tunnel: (params: Params$cloudflare$tunnel$get$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { Accept: "application/json" }; @@ -54680,7 +54677,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a Warp Connector Tunnel from an account. */ cloudflare$tunnel$delete$a$warp$connector$tunnel: (params: Params$cloudflare$tunnel$delete$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54697,7 +54694,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing Warp Connector Tunnel. */ cloudflare$tunnel$update$a$warp$connector$tunnel: (params: Params$cloudflare$tunnel$update$a$warp$connector$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54714,7 +54711,7 @@ export const createClient = (apiClient: ApiClient, * Gets the token used to associate warp device with a specific Warp Connector tunnel. */ cloudflare$tunnel$get$a$warp$connector$tunnel$token: (params: Params$cloudflare$tunnel$get$a$warp$connector$tunnel$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/warp_connector/\${encodeURIComponent(params.parameter.tunnel_id)}/token\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/warp_connector/${encodeURIComponent(params.parameter.tunnel_id)}/token`; const headers = { Accept: "application/json" }; @@ -54729,7 +54726,7 @@ export const createClient = (apiClient: ApiClient, * Fetches Worker account settings for an account. */ worker$account$settings$fetch$worker$account$settings: (params: Params$worker$account$settings$fetch$worker$account$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/account-settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/account-settings`; const headers = { Accept: "application/json" }; @@ -54744,7 +54741,7 @@ export const createClient = (apiClient: ApiClient, * Creates Worker account settings for an account. */ worker$account$settings$create$worker$account$settings: (params: Params$worker$account$settings$create$worker$account$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/account-settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/account-settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54758,7 +54755,7 @@ export const createClient = (apiClient: ApiClient, }, /** List Deployments */ worker$deployments$list$deployments: (params: Params$worker$deployments$list$deployments, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/\${encodeURIComponent(params.parameter.script_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/${encodeURIComponent(params.parameter.script_id)}`; const headers = { Accept: "application/json" }; @@ -54770,7 +54767,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Deployment Detail */ worker$deployments$get$deployment$detail: (params: Params$worker$deployments$get$deployment$detail, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/\${encodeURIComponent(params.parameter.script_id)}/detail/\${encodeURIComponent(params.parameter.deployment_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/deployments/by-script/${encodeURIComponent(params.parameter.script_id)}/detail/${encodeURIComponent(params.parameter.deployment_id)}`; const headers = { Accept: "application/json" }; @@ -54785,7 +54782,7 @@ export const createClient = (apiClient: ApiClient, * Fetch information about a script uploaded to a Workers for Platforms namespace. */ namespace$worker$script$worker$details: (params: Params$namespace$worker$script$worker$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { Accept: "application/json" }; @@ -54800,7 +54797,7 @@ export const createClient = (apiClient: ApiClient, * Upload a worker module to a Workers for Platforms namespace. */ namespace$worker$script$upload$worker$module: (params: Params$namespace$worker$script$upload$worker$module, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -54825,7 +54822,7 @@ export const createClient = (apiClient: ApiClient, * Delete a worker from a Workers for Platforms namespace. This call has no response body on a successful delete. */ namespace$worker$script$delete$worker: (params: Params$namespace$worker$script$delete$worker, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = {}; const queryParameters: QueryParameters = { force: { value: params.parameter.force, explode: false } @@ -54842,7 +54839,7 @@ export const createClient = (apiClient: ApiClient, * Fetch script content from a script uploaded to a Workers for Platforms namespace. */ namespace$worker$get$script$content: (params: Params$namespace$worker$get$script$content, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { Accept: "string" }; @@ -54857,7 +54854,7 @@ export const createClient = (apiClient: ApiClient, * Put script content for a script uploaded to a Workers for Platforms namespace. */ namespace$worker$put$script$content: (params: Params$namespace$worker$put$script$content, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -54884,7 +54881,7 @@ export const createClient = (apiClient: ApiClient, * Get script settings from a script uploaded to a Workers for Platforms namespace. */ namespace$worker$get$script$settings: (params: Params$namespace$worker$get$script$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { Accept: "application/json" }; @@ -54899,7 +54896,7 @@ export const createClient = (apiClient: ApiClient, * Patch script metadata, such as bindings */ namespace$worker$patch$script$settings: (params: Params$namespace$worker$patch$script$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/\${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/dispatch/namespaces/${encodeURIComponent(params.parameter.dispatch_namespace)}/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54916,7 +54913,7 @@ export const createClient = (apiClient: ApiClient, * Lists all Worker Domains for an account. */ worker$domain$list$domains: (params: Params$worker$domain$list$domains, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains`; const headers = { Accept: "application/json" }; @@ -54939,7 +54936,7 @@ export const createClient = (apiClient: ApiClient, * Attaches a Worker to a zone and hostname. */ worker$domain$attach$to$domain: (params: Params$worker$domain$attach$to$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -54956,7 +54953,7 @@ export const createClient = (apiClient: ApiClient, * Gets a Worker domain. */ worker$domain$get$a$domain: (params: Params$worker$domain$get$a$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains/\${encodeURIComponent(params.parameter.domain_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains/${encodeURIComponent(params.parameter.domain_id)}`; const headers = { Accept: "application/json" }; @@ -54971,7 +54968,7 @@ export const createClient = (apiClient: ApiClient, * Detaches a Worker from a zone and hostname. */ worker$domain$detach$from$domain: (params: Params$worker$domain$detach$from$domain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/domains/\${encodeURIComponent(params.parameter.domain_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/domains/${encodeURIComponent(params.parameter.domain_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -54984,7 +54981,7 @@ export const createClient = (apiClient: ApiClient, * Returns the Durable Object namespaces owned by an account. */ durable$objects$namespace$list$namespaces: (params: Params$durable$objects$namespace$list$namespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces`; const headers = { Accept: "application/json" }; @@ -54999,7 +54996,7 @@ export const createClient = (apiClient: ApiClient, * Returns the Durable Objects in a given namespace. */ durable$objects$namespace$list$objects: (params: Params$durable$objects$namespace$list$objects, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces/\${encodeURIComponent(params.parameter.id)}/objects\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/durable_objects/namespaces/${encodeURIComponent(params.parameter.id)}/objects`; const headers = { Accept: "application/json" }; @@ -55019,7 +55016,7 @@ export const createClient = (apiClient: ApiClient, * Returns the queues owned by an account. */ queue$list$queues: (params: Params$queue$list$queues, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues`; const headers = { Accept: "application/json" }; @@ -55034,7 +55031,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new queue. */ queue$create$queue: (params: Params$queue$create$queue, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55051,7 +55048,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific queue. */ queue$queue$details: (params: Params$queue$queue$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -55066,7 +55063,7 @@ export const createClient = (apiClient: ApiClient, * Updates a queue. */ queue$update$queue: (params: Params$queue$update$queue, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55083,7 +55080,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a queue. */ queue$delete$queue: (params: Params$queue$delete$queue, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -55098,7 +55095,7 @@ export const createClient = (apiClient: ApiClient, * Returns the consumers for a queue. */ queue$list$queue$consumers: (params: Params$queue$list$queue$consumers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers`; const headers = { Accept: "application/json" }; @@ -55113,7 +55110,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new consumer for a queue. */ queue$create$queue$consumer: (params: Params$queue$create$queue$consumer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55130,7 +55127,7 @@ export const createClient = (apiClient: ApiClient, * Updates the consumer for a queue, or creates one if it does not exist. */ queue$update$queue$consumer: (params: Params$queue$update$queue$consumer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers/\${encodeURIComponent(params.parameter.consumer_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers/${encodeURIComponent(params.parameter.consumer_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55147,7 +55144,7 @@ export const createClient = (apiClient: ApiClient, * Deletes the consumer for a queue. */ queue$delete$queue$consumer: (params: Params$queue$delete$queue$consumer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/queues/\${encodeURIComponent(params.parameter.name)}/consumers/\${encodeURIComponent(params.parameter.consumer_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/queues/${encodeURIComponent(params.parameter.name)}/consumers/${encodeURIComponent(params.parameter.consumer_name)}`; const headers = { Accept: "application/json" }; @@ -55162,7 +55159,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a list of uploaded workers. */ worker$script$list$workers: (params: Params$worker$script$list$workers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts`; const headers = { Accept: "application/json" }; @@ -55177,7 +55174,7 @@ export const createClient = (apiClient: ApiClient, * Fetch raw script content for your worker. Note this is the original script content, not JSON encoded. */ worker$script$download$worker: (params: Params$worker$script$download$worker, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { Accept: "undefined" }; @@ -55192,7 +55189,7 @@ export const createClient = (apiClient: ApiClient, * Upload a worker module. */ worker$script$upload$worker$module: (params: Params$worker$script$upload$worker$module, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -55221,7 +55218,7 @@ export const createClient = (apiClient: ApiClient, * Delete your worker. This call has no response body on a successful delete. */ worker$script$delete$worker: (params: Params$worker$script$delete$worker, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}`; const headers = {}; const queryParameters: QueryParameters = { force: { value: params.parameter.force, explode: false } @@ -55238,7 +55235,7 @@ export const createClient = (apiClient: ApiClient, * Put script content without touching config or metadata */ worker$script$put$content: (params: Params$worker$script$put$content, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/content\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -55265,7 +55262,7 @@ export const createClient = (apiClient: ApiClient, * Fetch script content only */ worker$script$get$content: (params: Params$worker$script$get$content, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/content/v2\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/content/v2`; const headers = { Accept: "string" }; @@ -55280,7 +55277,7 @@ export const createClient = (apiClient: ApiClient, * Fetches Cron Triggers for a Worker. */ worker$cron$trigger$get$cron$triggers: (params: Params$worker$cron$trigger$get$cron$triggers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/schedules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/schedules`; const headers = { Accept: "application/json" }; @@ -55295,7 +55292,7 @@ export const createClient = (apiClient: ApiClient, * Updates Cron Triggers for a Worker. */ worker$cron$trigger$update$cron$triggers: (params: Params$worker$cron$trigger$update$cron$triggers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/schedules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/schedules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55312,7 +55309,7 @@ export const createClient = (apiClient: ApiClient, * Get script metadata and config, such as bindings or usage model */ worker$script$get$settings: (params: Params$worker$script$get$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { Accept: "application/json" }; @@ -55327,7 +55324,7 @@ export const createClient = (apiClient: ApiClient, * Patch script metadata or config, such as bindings or usage model */ worker$script$patch$settings: (params: Params$worker$script$patch$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/settings`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -55344,7 +55341,7 @@ export const createClient = (apiClient: ApiClient, * Get list of tails currently deployed on a Worker. */ worker$tail$logs$list$tails: (params: Params$worker$tail$logs$list$tails, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails`; const headers = { Accept: "application/json" }; @@ -55359,7 +55356,7 @@ export const createClient = (apiClient: ApiClient, * Starts a tail that receives logs and exception from a Worker. */ worker$tail$logs$start$tail: (params: Params$worker$tail$logs$start$tail, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails`; const headers = { Accept: "application/json" }; @@ -55374,7 +55371,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a tail from a Worker. */ worker$tail$logs$delete$tail: (params: Params$worker$tail$logs$delete$tail, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/tails/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/tails/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -55389,7 +55386,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the Usage Model for a given Worker. */ worker$script$fetch$usage$model: (params: Params$worker$script$fetch$usage$model, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/usage-model\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/usage-model`; const headers = { Accept: "application/json" }; @@ -55404,7 +55401,7 @@ export const createClient = (apiClient: ApiClient, * Updates the Usage Model for a given Worker. Requires a Workers Paid subscription. */ worker$script$update$usage$model: (params: Params$worker$script$update$usage$model, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/scripts/\${encodeURIComponent(params.parameter.script_name)}/usage-model\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/scripts/${encodeURIComponent(params.parameter.script_name)}/usage-model`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55421,7 +55418,7 @@ export const createClient = (apiClient: ApiClient, * Get script content from a worker with an environment */ worker$environment$get$script$content: (params: Params$worker$environment$get$script$content, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/content\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/content`; const headers = { Accept: "string" }; @@ -55436,7 +55433,7 @@ export const createClient = (apiClient: ApiClient, * Put script content from a worker with an environment */ worker$environment$put$script$content: (params: Params$worker$environment$put$script$content, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/content\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/content`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json", @@ -55463,7 +55460,7 @@ export const createClient = (apiClient: ApiClient, * Get script settings from a worker with an environment */ worker$script$environment$get$settings: (params: Params$worker$script$environment$get$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/settings`; const headers = { Accept: "application/json" }; @@ -55478,7 +55475,7 @@ export const createClient = (apiClient: ApiClient, * Patch script metadata, such as bindings */ worker$script$environment$patch$settings: (params: Params$worker$script$environment$patch$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/services/\${encodeURIComponent(params.parameter.service_name)}/environments/\${encodeURIComponent(params.parameter.environment_name)}/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/services/${encodeURIComponent(params.parameter.service_name)}/environments/${encodeURIComponent(params.parameter.environment_name)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55495,7 +55492,7 @@ export const createClient = (apiClient: ApiClient, * Returns a Workers subdomain for an account. */ worker$subdomain$get$subdomain: (params: Params$worker$subdomain$get$subdomain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/subdomain\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/subdomain`; const headers = { Accept: "application/json" }; @@ -55510,7 +55507,7 @@ export const createClient = (apiClient: ApiClient, * Creates a Workers subdomain for an account. */ worker$subdomain$create$subdomain: (params: Params$worker$subdomain$create$subdomain, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/workers/subdomain\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/workers/subdomain`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55527,7 +55524,7 @@ export const createClient = (apiClient: ApiClient, * Gets the Zero Trust Connectivity Settings for the given account. */ zero$trust$accounts$get$connectivity$settings: (params: Params$zero$trust$accounts$get$connectivity$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings`; const headers = { Accept: "application/json" }; @@ -55542,7 +55539,7 @@ export const createClient = (apiClient: ApiClient, * Updates the Zero Trust Connectivity Settings for the given account. */ zero$trust$accounts$patch$connectivity$settings: (params: Params$zero$trust$accounts$patch$connectivity$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_id)}/zerotrust/connectivity_settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55559,7 +55556,7 @@ export const createClient = (apiClient: ApiClient, * List all address maps owned by the account. */ ip$address$management$address$maps$list$address$maps: (params: Params$ip$address$management$address$maps$list$address$maps, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps`; const headers = { Accept: "application/json" }; @@ -55574,7 +55571,7 @@ export const createClient = (apiClient: ApiClient, * Create a new address map under the account. */ ip$address$management$address$maps$create$address$map: (params: Params$ip$address$management$address$maps$create$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55591,7 +55588,7 @@ export const createClient = (apiClient: ApiClient, * Show a particular address map owned by the account. */ ip$address$management$address$maps$address$map$details: (params: Params$ip$address$management$address$maps$address$map$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { Accept: "application/json" }; @@ -55606,7 +55603,7 @@ export const createClient = (apiClient: ApiClient, * Delete a particular address map owned by the account. An Address Map must be disabled before it can be deleted. */ ip$address$management$address$maps$delete$address$map: (params: Params$ip$address$management$address$maps$delete$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { Accept: "application/json" }; @@ -55621,7 +55618,7 @@ export const createClient = (apiClient: ApiClient, * Modify properties of an address map owned by the account. */ ip$address$management$address$maps$update$address$map: (params: Params$ip$address$management$address$maps$update$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55638,7 +55635,7 @@ export const createClient = (apiClient: ApiClient, * Add an IP from a prefix owned by the account to a particular address map. */ ip$address$management$address$maps$add$an$ip$to$an$address$map: (params: Params$ip$address$management$address$maps$add$an$ip$to$an$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/ips/\${encodeURIComponent(params.parameter.ip_address)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/ips/${encodeURIComponent(params.parameter.ip_address)}`; const headers = { Accept: "application/json" }; @@ -55653,7 +55650,7 @@ export const createClient = (apiClient: ApiClient, * Remove an IP from a particular address map. */ ip$address$management$address$maps$remove$an$ip$from$an$address$map: (params: Params$ip$address$management$address$maps$remove$an$ip$from$an$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/ips/\${encodeURIComponent(params.parameter.ip_address)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/ips/${encodeURIComponent(params.parameter.ip_address)}`; const headers = { Accept: "application/json" }; @@ -55668,7 +55665,7 @@ export const createClient = (apiClient: ApiClient, * Add a zone as a member of a particular address map. */ ip$address$management$address$maps$add$a$zone$membership$to$an$address$map: (params: Params$ip$address$management$address$maps$add$a$zone$membership$to$an$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/zones/\${encodeURIComponent(params.parameter.zone_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/zones/${encodeURIComponent(params.parameter.zone_identifier)}`; const headers = { Accept: "application/json" }; @@ -55683,7 +55680,7 @@ export const createClient = (apiClient: ApiClient, * Remove a zone as a member of a particular address map. */ ip$address$management$address$maps$remove$a$zone$membership$from$an$address$map: (params: Params$ip$address$management$address$maps$remove$a$zone$membership$from$an$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/zones/\${encodeURIComponent(params.parameter.zone_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/zones/${encodeURIComponent(params.parameter.zone_identifier)}`; const headers = { Accept: "application/json" }; @@ -55698,7 +55695,7 @@ export const createClient = (apiClient: ApiClient, * Submit LOA document (pdf format) under the account. */ ip$address$management$prefixes$upload$loa$document: (params: Params$ip$address$management$prefixes$upload$loa$document, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -55715,7 +55712,7 @@ export const createClient = (apiClient: ApiClient, * Download specified LOA document under the account. */ ip$address$management$prefixes$download$loa$document: (params: Params$ip$address$management$prefixes$download$loa$document, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents/\${encodeURIComponent(params.parameter.loa_document_identifier)}/download\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/loa_documents/${encodeURIComponent(params.parameter.loa_document_identifier)}/download`; const headers = { Accept: "application/json" }; @@ -55730,7 +55727,7 @@ export const createClient = (apiClient: ApiClient, * List all prefixes owned by the account. */ ip$address$management$prefixes$list$prefixes: (params: Params$ip$address$management$prefixes$list$prefixes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes`; const headers = { Accept: "application/json" }; @@ -55745,7 +55742,7 @@ export const createClient = (apiClient: ApiClient, * Add a new prefix under the account. */ ip$address$management$prefixes$add$prefix: (params: Params$ip$address$management$prefixes$add$prefix, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55762,7 +55759,7 @@ export const createClient = (apiClient: ApiClient, * List a particular prefix owned by the account. */ ip$address$management$prefixes$prefix$details: (params: Params$ip$address$management$prefixes$prefix$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55777,7 +55774,7 @@ export const createClient = (apiClient: ApiClient, * Delete an unapproved prefix owned by the account. */ ip$address$management$prefixes$delete$prefix: (params: Params$ip$address$management$prefixes$delete$prefix, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55792,7 +55789,7 @@ export const createClient = (apiClient: ApiClient, * Modify the description for a prefix owned by the account. */ ip$address$management$prefixes$update$prefix$description: (params: Params$ip$address$management$prefixes$update$prefix$description, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55809,7 +55806,7 @@ export const createClient = (apiClient: ApiClient, * List all BGP Prefixes within the specified IP Prefix. BGP Prefixes are used to control which specific subnets are advertised to the Internet. It is possible to advertise subnets more specific than an IP Prefix by creating more specific BGP Prefixes. */ ip$address$management$prefixes$list$bgp$prefixes: (params: Params$ip$address$management$prefixes$list$bgp$prefixes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes`; const headers = { Accept: "application/json" }; @@ -55824,7 +55821,7 @@ export const createClient = (apiClient: ApiClient, * Retrieve a single BGP Prefix according to its identifier */ ip$address$management$prefixes$fetch$bgp$prefix: (params: Params$ip$address$management$prefixes$fetch$bgp$prefix, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/\${encodeURIComponent(params.parameter.bgp_prefix_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/${encodeURIComponent(params.parameter.bgp_prefix_identifier)}`; const headers = { Accept: "application/json" }; @@ -55839,7 +55836,7 @@ export const createClient = (apiClient: ApiClient, * Update the properties of a BGP Prefix, such as the on demand advertisement status (advertised or withdrawn). */ ip$address$management$prefixes$update$bgp$prefix: (params: Params$ip$address$management$prefixes$update$bgp$prefix, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/\${encodeURIComponent(params.parameter.bgp_prefix_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/prefixes/${encodeURIComponent(params.parameter.bgp_prefix_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55856,7 +55853,7 @@ export const createClient = (apiClient: ApiClient, * List the current advertisement state for a prefix. */ ip$address$management$dynamic$advertisement$get$advertisement$status: (params: Params$ip$address$management$dynamic$advertisement$get$advertisement$status, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status`; const headers = { Accept: "application/json" }; @@ -55871,7 +55868,7 @@ export const createClient = (apiClient: ApiClient, * Advertise or withdraw BGP route for a prefix. */ ip$address$management$dynamic$advertisement$update$prefix$dynamic$advertisement$status: (params: Params$ip$address$management$dynamic$advertisement$update$prefix$dynamic$advertisement$status, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bgp/status`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55886,10 +55883,10 @@ export const createClient = (apiClient: ApiClient, /** * List Service Bindings * List the Cloudflare services this prefix is currently bound to. Traffic sent to an address within an IP prefix will be routed to the Cloudflare service of the most-specific Service Binding matching the address. - * **Example:** binding \`192.0.2.0/24\` to Cloudflare Magic Transit and \`192.0.2.1/32\` to the Cloudflare CDN would route traffic for \`192.0.2.1\` to the CDN, and traffic for all other IPs in the prefix to Cloudflare Magic Transit. + * **Example:** binding `192.0.2.0/24` to Cloudflare Magic Transit and `192.0.2.1/32` to the Cloudflare CDN would route traffic for `192.0.2.1` to the CDN, and traffic for all other IPs in the prefix to Cloudflare Magic Transit. */ ip$address$management$service$bindings$list$service$bindings: (params: Params$ip$address$management$service$bindings$list$service$bindings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings`; const headers = { Accept: "application/json" }; @@ -55905,7 +55902,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** This API may only be used on prefixes currently configured with a Magic Transit service binding, and only allows creating service bindings for the Cloudflare CDN or Cloudflare Spectrum. */ ip$address$management$service$bindings$create$service$binding: (params: Params$ip$address$management$service$bindings$create$service$binding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55922,7 +55919,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single Service Binding */ ip$address$management$service$bindings$get$service$binding: (params: Params$ip$address$management$service$bindings$get$service$binding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/\${encodeURIComponent(params.parameter.binding_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/${encodeURIComponent(params.parameter.binding_identifier)}`; const headers = { Accept: "application/json" }; @@ -55937,7 +55934,7 @@ export const createClient = (apiClient: ApiClient, * Delete a Service Binding */ ip$address$management$service$bindings$delete$service$binding: (params: Params$ip$address$management$service$bindings$delete$service$binding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/\${encodeURIComponent(params.parameter.binding_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/bindings/${encodeURIComponent(params.parameter.binding_identifier)}`; const headers = { Accept: "application/json" }; @@ -55952,7 +55949,7 @@ export const createClient = (apiClient: ApiClient, * List all delegations for a given account IP prefix. */ ip$address$management$prefix$delegation$list$prefix$delegations: (params: Params$ip$address$management$prefix$delegation$list$prefix$delegations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations`; const headers = { Accept: "application/json" }; @@ -55967,7 +55964,7 @@ export const createClient = (apiClient: ApiClient, * Create a new account delegation for a given IP prefix. */ ip$address$management$prefix$delegation$create$prefix$delegation: (params: Params$ip$address$management$prefix$delegation$create$prefix$delegation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -55984,7 +55981,7 @@ export const createClient = (apiClient: ApiClient, * Delete an account delegation for a given IP prefix. */ ip$address$management$prefix$delegation$delete$prefix$delegation: (params: Params$ip$address$management$prefix$delegation$delete$prefix$delegation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/\${encodeURIComponent(params.parameter.prefix_identifier)}/delegations/\${encodeURIComponent(params.parameter.delegation_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/prefixes/${encodeURIComponent(params.parameter.prefix_identifier)}/delegations/${encodeURIComponent(params.parameter.delegation_identifier)}`; const headers = { Accept: "application/json" }; @@ -55999,7 +55996,7 @@ export const createClient = (apiClient: ApiClient, * Bring-Your-Own IP (BYOIP) prefixes onboarded to Cloudflare must be bound to a service running on the Cloudflare network to enable a Cloudflare product on the IP addresses. This endpoint can be used as a reference of available services on the Cloudflare network, and their service IDs. */ ip$address$management$service$bindings$list$services: (params: Params$ip$address$management$service$bindings$list$services, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/addressing/services\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/addressing/services`; const headers = { Accept: "application/json" }; @@ -56017,7 +56014,7 @@ export const createClient = (apiClient: ApiClient, * model. The endpoint supports various AI model types, ensuring flexibility and adaptability for diverse use cases. */ workers$ai$post$run$model: (params: Params$workers$ai$post$run$model, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/ai/run/\${encodeURIComponent(params.parameter.model_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/ai/run/${encodeURIComponent(params.parameter.model_name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json" @@ -56034,7 +56031,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of audit logs for an account. Can be filtered by who made the change, on which zone, and the timeframe of the change. */ audit$logs$get$account$audit$logs: (params: Params$audit$logs$get$account$audit$logs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/audit_logs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/audit_logs`; const headers = { Accept: "application/json" }; @@ -56064,7 +56061,7 @@ export const createClient = (apiClient: ApiClient, * Gets the current billing profile for the account. */ account$billing$profile$$$deprecated$$billing$profile$details: (params: Params$account$billing$profile$$$deprecated$$billing$profile$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/billing/profile\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/billing/profile`; const headers = { Accept: "application/json" }; @@ -56079,7 +56076,7 @@ export const createClient = (apiClient: ApiClient, * Lists all turnstile widgets of an account. */ accounts$turnstile$widgets$list: (params: Params$accounts$turnstile$widgets$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets`; const headers = { Accept: "application/json" }; @@ -56101,7 +56098,7 @@ export const createClient = (apiClient: ApiClient, * Lists challenge widgets. */ accounts$turnstile$widget$create: (params: Params$accounts$turnstile$widget$create, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56125,7 +56122,7 @@ export const createClient = (apiClient: ApiClient, * Show a single challenge widget configuration. */ accounts$turnstile$widget$get: (params: Params$accounts$turnstile$widget$get, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { Accept: "application/json" }; @@ -56140,7 +56137,7 @@ export const createClient = (apiClient: ApiClient, * Update the configuration of a widget. */ accounts$turnstile$widget$update: (params: Params$accounts$turnstile$widget$update, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56157,7 +56154,7 @@ export const createClient = (apiClient: ApiClient, * Destroy a Turnstile Widget. */ accounts$turnstile$widget$delete: (params: Params$accounts$turnstile$widget$delete, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}`; const headers = { Accept: "application/json" }; @@ -56169,13 +56166,13 @@ export const createClient = (apiClient: ApiClient, }, /** * Rotate Secret for a Turnstile Widget - * Generate a new secret key for this widget. If \`invalidate_immediately\` - * is set to \`false\`, the previous secret remains valid for 2 hours. + * Generate a new secret key for this widget. If `invalidate_immediately` + * is set to `false`, the previous secret remains valid for 2 hours. * * Note that secrets cannot be rotated again during the grace period. */ accounts$turnstile$widget$rotate$secret: (params: Params$accounts$turnstile$widget$rotate$secret, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/\${encodeURIComponent(params.parameter.sitekey)}/rotate_secret\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/challenges/widgets/${encodeURIComponent(params.parameter.sitekey)}/rotate_secret`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56192,7 +56189,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all the custom pages at the account level. */ custom$pages$for$an$account$list$custom$pages: (params: Params$custom$pages$for$an$account$list$custom$pages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages`; const headers = { Accept: "application/json" }; @@ -56207,7 +56204,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a custom page. */ custom$pages$for$an$account$get$a$custom$page: (params: Params$custom$pages$for$an$account$get$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56222,7 +56219,7 @@ export const createClient = (apiClient: ApiClient, * Updates the configuration of an existing custom page. */ custom$pages$for$an$account$update$a$custom$page: (params: Params$custom$pages$for$an$account$update$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56239,7 +56236,7 @@ export const createClient = (apiClient: ApiClient, * Returns the specified D1 database. */ cloudflare$d1$get$database: (params: Params$cloudflare$d1$get$database, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}`; const headers = { Accept: "application/json" }; @@ -56254,7 +56251,7 @@ export const createClient = (apiClient: ApiClient, * Deletes the specified D1 database. */ cloudflare$d1$delete$database: (params: Params$cloudflare$d1$delete$database, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}`; const headers = { Accept: "application/json" }; @@ -56269,7 +56266,7 @@ export const createClient = (apiClient: ApiClient, * Returns the query result. */ cloudflare$d1$query$database: (params: Params$cloudflare$d1$query$database, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/d1/database/\${encodeURIComponent(params.parameter.database_identifier)}/query\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/d1/database/${encodeURIComponent(params.parameter.database_identifier)}/query`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56286,7 +56283,7 @@ export const createClient = (apiClient: ApiClient, * Run traceroutes from Cloudflare colos. */ diagnostics$traceroute: (params: Params$diagnostics$traceroute, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/diagnostics/traceroute\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/diagnostics/traceroute`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56305,7 +56302,7 @@ export const createClient = (apiClient: ApiClient, * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ dns$firewall$analytics$table: (params: Params$dns$firewall$analytics$table, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report`; const headers = { Accept: "application/json" }; @@ -56332,7 +56329,7 @@ export const createClient = (apiClient: ApiClient, * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ dns$firewall$analytics$by$time: (params: Params$dns$firewall$analytics$by$time, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/dns_firewall/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime`; const headers = { Accept: "application/json" }; @@ -56358,7 +56355,7 @@ export const createClient = (apiClient: ApiClient, * Lists existing destination addresses. */ email$routing$destination$addresses$list$destination$addresses: (params: Params$email$routing$destination$addresses$list$destination$addresses, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses`; const headers = { Accept: "application/json" }; @@ -56380,7 +56377,7 @@ export const createClient = (apiClient: ApiClient, * Create a destination address to forward your emails to. Destination addresses need to be verified before they can be used. */ email$routing$destination$addresses$create$a$destination$address: (params: Params$email$routing$destination$addresses$create$a$destination$address, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56397,7 +56394,7 @@ export const createClient = (apiClient: ApiClient, * Gets information for a specific destination email already created. */ email$routing$destination$addresses$get$a$destination$address: (params: Params$email$routing$destination$addresses$get$a$destination$address, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/\${encodeURIComponent(params.parameter.destination_address_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/${encodeURIComponent(params.parameter.destination_address_identifier)}`; const headers = { Accept: "application/json" }; @@ -56412,7 +56409,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a specific destination address. */ email$routing$destination$addresses$delete$destination$address: (params: Params$email$routing$destination$addresses$delete$destination$address, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/\${encodeURIComponent(params.parameter.destination_address_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/email/routing/addresses/${encodeURIComponent(params.parameter.destination_address_identifier)}`; const headers = { Accept: "application/json" }; @@ -56427,7 +56424,7 @@ export const createClient = (apiClient: ApiClient, * Fetches IP Access rules of an account. These rules apply to all the zones in the account. You can filter the results using several optional parameters. */ ip$access$rules$for$an$account$list$ip$access$rules: (params: Params$ip$access$rules$for$an$account$list$ip$access$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -56453,7 +56450,7 @@ export const createClient = (apiClient: ApiClient, * Note: To create an IP Access rule that applies to a single zone, refer to the [IP Access rules for a zone](#ip-access-rules-for-a-zone) endpoints. */ ip$access$rules$for$an$account$create$an$ip$access$rule: (params: Params$ip$access$rules$for$an$account$create$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56470,7 +56467,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of an IP Access rule defined at the account level. */ ip$access$rules$for$an$account$get$an$ip$access$rule: (params: Params$ip$access$rules$for$an$account$get$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56487,7 +56484,7 @@ export const createClient = (apiClient: ApiClient, * Note: This operation will affect all zones in the account. */ ip$access$rules$for$an$account$delete$an$ip$access$rule: (params: Params$ip$access$rules$for$an$account$delete$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56504,7 +56501,7 @@ export const createClient = (apiClient: ApiClient, * Note: This operation will affect all zones in the account. */ ip$access$rules$for$an$account$update$an$ip$access$rule: (params: Params$ip$access$rules$for$an$account$update$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56518,7 +56515,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get indicator feeds owned by this account */ custom$indicator$feeds$get$indicator$feeds: (params: Params$custom$indicator$feeds$get$indicator$feeds, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds`; const headers = { Accept: "application/json" }; @@ -56530,7 +56527,7 @@ export const createClient = (apiClient: ApiClient, }, /** Create new indicator feed */ custom$indicator$feeds$create$indicator$feeds: (params: Params$custom$indicator$feeds$create$indicator$feeds, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56544,7 +56541,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get indicator feed metadata */ custom$indicator$feeds$get$indicator$feed$metadata: (params: Params$custom$indicator$feeds$get$indicator$feed$metadata, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}`; const headers = { Accept: "application/json" }; @@ -56556,7 +56553,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get indicator feed data */ custom$indicator$feeds$get$indicator$feed$data: (params: Params$custom$indicator$feeds$get$indicator$feed$data, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}/data\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}/data`; const headers = { Accept: "text/csv" }; @@ -56568,7 +56565,7 @@ export const createClient = (apiClient: ApiClient, }, /** Update indicator feed data */ custom$indicator$feeds$update$indicator$feed$data: (params: Params$custom$indicator$feeds$update$indicator$feed$data, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/\${encodeURIComponent(params.parameter.feed_id)}/snapshot\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/${encodeURIComponent(params.parameter.feed_id)}/snapshot`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -56582,7 +56579,7 @@ export const createClient = (apiClient: ApiClient, }, /** Grant permission to indicator feed */ custom$indicator$feeds$add$permission: (params: Params$custom$indicator$feeds$add$permission, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/add\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/add`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56596,7 +56593,7 @@ export const createClient = (apiClient: ApiClient, }, /** Revoke permission to indicator feed */ custom$indicator$feeds$remove$permission: (params: Params$custom$indicator$feeds$remove$permission, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/remove\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/remove`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56610,7 +56607,7 @@ export const createClient = (apiClient: ApiClient, }, /** List indicator feed permissions */ custom$indicator$feeds$view$permissions: (params: Params$custom$indicator$feeds$view$permissions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/view\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/indicator-feeds/permissions/view`; const headers = { Accept: "application/json" }; @@ -56622,7 +56619,7 @@ export const createClient = (apiClient: ApiClient, }, /** List sinkholes owned by this account */ sinkhole$config$get$sinkholes: (params: Params$sinkhole$config$get$sinkholes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/intel/sinkholes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/intel/sinkholes`; const headers = { Accept: "application/json" }; @@ -56637,7 +56634,7 @@ export const createClient = (apiClient: ApiClient, * List configured monitors for an account. */ account$load$balancer$monitors$list$monitors: (params: Params$account$load$balancer$monitors$list$monitors, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors`; const headers = { Accept: "application/json" }; @@ -56652,7 +56649,7 @@ export const createClient = (apiClient: ApiClient, * Create a configured monitor. */ account$load$balancer$monitors$create$monitor: (params: Params$account$load$balancer$monitors$create$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56669,7 +56666,7 @@ export const createClient = (apiClient: ApiClient, * List a single configured monitor for an account. */ account$load$balancer$monitors$monitor$details: (params: Params$account$load$balancer$monitors$monitor$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56684,7 +56681,7 @@ export const createClient = (apiClient: ApiClient, * Modify a configured monitor. */ account$load$balancer$monitors$update$monitor: (params: Params$account$load$balancer$monitors$update$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56701,7 +56698,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured monitor. */ account$load$balancer$monitors$delete$monitor: (params: Params$account$load$balancer$monitors$delete$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56716,7 +56713,7 @@ export const createClient = (apiClient: ApiClient, * Apply changes to an existing monitor, overwriting the supplied properties. */ account$load$balancer$monitors$patch$monitor: (params: Params$account$load$balancer$monitors$patch$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56733,7 +56730,7 @@ export const createClient = (apiClient: ApiClient, * Preview pools using the specified monitor with provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ account$load$balancer$monitors$preview$monitor: (params: Params$account$load$balancer$monitors$preview$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56750,7 +56747,7 @@ export const createClient = (apiClient: ApiClient, * Get the list of resources that reference the provided monitor. */ account$load$balancer$monitors$list$monitor$references: (params: Params$account$load$balancer$monitors$list$monitor$references, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -56765,7 +56762,7 @@ export const createClient = (apiClient: ApiClient, * List configured pools. */ account$load$balancer$pools$list$pools: (params: Params$account$load$balancer$pools$list$pools, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { Accept: "application/json" }; @@ -56784,7 +56781,7 @@ export const createClient = (apiClient: ApiClient, * Create a new pool. */ account$load$balancer$pools$create$pool: (params: Params$account$load$balancer$pools$create$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56798,10 +56795,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Patch Pools - * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending \`name\`. Returns the list of affected pools. Supports the standard pagination query parameters, either \`limit\`/\`offset\` or \`per_page\`/\`page\`. + * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending `name`. Returns the list of affected pools. Supports the standard pagination query parameters, either `limit`/`offset` or `per_page`/`page`. */ account$load$balancer$pools$patch$pools: (params: Params$account$load$balancer$pools$patch$pools, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56818,7 +56815,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single configured pool. */ account$load$balancer$pools$pool$details: (params: Params$account$load$balancer$pools$pool$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56833,7 +56830,7 @@ export const createClient = (apiClient: ApiClient, * Modify a configured pool. */ account$load$balancer$pools$update$pool: (params: Params$account$load$balancer$pools$update$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56850,7 +56847,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured pool. */ account$load$balancer$pools$delete$pool: (params: Params$account$load$balancer$pools$delete$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -56865,7 +56862,7 @@ export const createClient = (apiClient: ApiClient, * Apply changes to an existing pool, overwriting the supplied properties. */ account$load$balancer$pools$patch$pool: (params: Params$account$load$balancer$pools$patch$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56882,7 +56879,7 @@ export const createClient = (apiClient: ApiClient, * Fetch the latest pool health status for a single pool. */ account$load$balancer$pools$pool$health$details: (params: Params$account$load$balancer$pools$pool$health$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/health\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/health`; const headers = { Accept: "application/json" }; @@ -56897,7 +56894,7 @@ export const createClient = (apiClient: ApiClient, * Preview pool health using provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ account$load$balancer$pools$preview$pool: (params: Params$account$load$balancer$pools$preview$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -56914,7 +56911,7 @@ export const createClient = (apiClient: ApiClient, * Get the list of resources that reference the provided pool. */ account$load$balancer$pools$list$pool$references: (params: Params$account$load$balancer$pools$list$pool$references, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -56929,7 +56926,7 @@ export const createClient = (apiClient: ApiClient, * Get the result of a previous preview operation using the provided preview_id. */ account$load$balancer$monitors$preview$result: (params: Params$account$load$balancer$monitors$preview$result, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/preview/\${encodeURIComponent(params.parameter.preview_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/preview/${encodeURIComponent(params.parameter.preview_id)}`; const headers = { Accept: "application/json" }; @@ -56944,7 +56941,7 @@ export const createClient = (apiClient: ApiClient, * List all region mappings. */ load$balancer$regions$list$regions: (params: Params$load$balancer$regions$list$regions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions`; const headers = { Accept: "application/json" }; @@ -56965,7 +56962,7 @@ export const createClient = (apiClient: ApiClient, * Get a single region mapping. */ load$balancer$regions$get$region: (params: Params$load$balancer$regions$get$region, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions/\${encodeURIComponent(params.parameter.region_code)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/regions/${encodeURIComponent(params.parameter.region_code)}`; const headers = { Accept: "application/json" }; @@ -56980,7 +56977,7 @@ export const createClient = (apiClient: ApiClient, * Search for Load Balancing resources. */ account$load$balancer$search$search$resources: (params: Params$account$load$balancer$search$search$resources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/search\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/load_balancers/search`; const headers = { Accept: "application/json" }; @@ -57001,7 +56998,7 @@ export const createClient = (apiClient: ApiClient, * Lists interconnects associated with an account. */ magic$interconnects$list$interconnects: (params: Params$magic$interconnects$list$interconnects, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects`; const headers = { Accept: "application/json" }; @@ -57013,10 +57010,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update multiple interconnects - * Updates multiple interconnects associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates multiple interconnects associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$interconnects$update$multiple$interconnects: (params: Params$magic$interconnects$update$multiple$interconnects, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57033,7 +57030,7 @@ export const createClient = (apiClient: ApiClient, * Lists details for a specific interconnect. */ magic$interconnects$list$interconnect$details: (params: Params$magic$interconnects$list$interconnect$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57045,10 +57042,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update interconnect - * Updates a specific interconnect associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific interconnect associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$interconnects$update$interconnect: (params: Params$magic$interconnects$update$interconnect, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/cf_interconnects/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57065,7 +57062,7 @@ export const createClient = (apiClient: ApiClient, * Lists GRE tunnels associated with an account. */ magic$gre$tunnels$list$gre$tunnels: (params: Params$magic$gre$tunnels$list$gre$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { Accept: "application/json" }; @@ -57077,10 +57074,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update multiple GRE tunnels - * Updates multiple GRE tunnels. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates multiple GRE tunnels. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$gre$tunnels$update$multiple$gre$tunnels: (params: Params$magic$gre$tunnels$update$multiple$gre$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57094,10 +57091,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Create GRE tunnels - * Creates new GRE tunnels. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Creates new GRE tunnels. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$gre$tunnels$create$gre$tunnels: (params: Params$magic$gre$tunnels$create$gre$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57114,7 +57111,7 @@ export const createClient = (apiClient: ApiClient, * Lists informtion for a specific GRE tunnel. */ magic$gre$tunnels$list$gre$tunnel$details: (params: Params$magic$gre$tunnels$list$gre$tunnel$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57126,10 +57123,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update GRE Tunnel - * Updates a specific GRE tunnel. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific GRE tunnel. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$gre$tunnels$update$gre$tunnel: (params: Params$magic$gre$tunnels$update$gre$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57143,10 +57140,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Delete GRE Tunnel - * Disables and removes a specific static GRE tunnel. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Disables and removes a specific static GRE tunnel. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$gre$tunnels$delete$gre$tunnel: (params: Params$magic$gre$tunnels$delete$gre$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/gre_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57161,7 +57158,7 @@ export const createClient = (apiClient: ApiClient, * Lists IPsec tunnels associated with an account. */ magic$ipsec$tunnels$list$ipsec$tunnels: (params: Params$magic$ipsec$tunnels$list$ipsec$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { Accept: "application/json" }; @@ -57173,10 +57170,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update multiple IPsec tunnels - * Update multiple IPsec tunnels associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Update multiple IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$ipsec$tunnels$update$multiple$ipsec$tunnels: (params: Params$magic$ipsec$tunnels$update$multiple$ipsec$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57190,10 +57187,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Create IPsec tunnels - * Creates new IPsec tunnels associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Creates new IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$ipsec$tunnels$create$ipsec$tunnels: (params: Params$magic$ipsec$tunnels$create$ipsec$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57210,7 +57207,7 @@ export const createClient = (apiClient: ApiClient, * Lists details for a specific IPsec tunnel. */ magic$ipsec$tunnels$list$ipsec$tunnel$details: (params: Params$magic$ipsec$tunnels$list$ipsec$tunnel$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57222,10 +57219,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update IPsec Tunnel - * Updates a specific IPsec tunnel associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Updates a specific IPsec tunnel associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$ipsec$tunnels$update$ipsec$tunnel: (params: Params$magic$ipsec$tunnels$update$ipsec$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57239,10 +57236,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Delete IPsec Tunnel - * Disables and removes a specific static IPsec Tunnel associated with an account. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. + * Disables and removes a specific static IPsec Tunnel associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. */ magic$ipsec$tunnels$delete$ipsec$tunnel: (params: Params$magic$ipsec$tunnels$delete$ipsec$tunnel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}`; const headers = { Accept: "application/json" }; @@ -57254,10 +57251,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Generate Pre Shared Key (PSK) for IPsec tunnels - * Generates a Pre Shared Key for a specific IPsec tunnel used in the IKE session. Use \`?validate_only=true\` as an optional query parameter to only run validation without persisting changes. After a PSK is generated, the PSK is immediately persisted to Cloudflare's edge and cannot be retrieved later. Note the PSK in a safe place. + * Generates a Pre Shared Key for a specific IPsec tunnel used in the IKE session. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes. After a PSK is generated, the PSK is immediately persisted to Cloudflare's edge and cannot be retrieved later. Note the PSK in a safe place. */ magic$ipsec$tunnels$generate$pre$shared$key$$$psk$$for$ipsec$tunnels: (params: Params$magic$ipsec$tunnels$generate$pre$shared$key$$$psk$$for$ipsec$tunnels, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/\${encodeURIComponent(params.parameter.tunnel_identifier)}/psk_generate\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/ipsec_tunnels/${encodeURIComponent(params.parameter.tunnel_identifier)}/psk_generate`; const headers = { Accept: "application/json" }; @@ -57272,7 +57269,7 @@ export const createClient = (apiClient: ApiClient, * List all Magic static routes. */ magic$static$routes$list$routes: (params: Params$magic$static$routes$list$routes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { Accept: "application/json" }; @@ -57284,10 +57281,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update Many Routes - * Update multiple Magic static routes. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. Only fields for a route that need to be changed need be provided. + * Update multiple Magic static routes. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. Only fields for a route that need to be changed need be provided. */ magic$static$routes$update$many$routes: (params: Params$magic$static$routes$update$many$routes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57301,10 +57298,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Create Routes - * Creates a new Magic static route. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. + * Creates a new Magic static route. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. */ magic$static$routes$create$routes: (params: Params$magic$static$routes$create$routes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57321,7 +57318,7 @@ export const createClient = (apiClient: ApiClient, * Delete multiple Magic static routes. */ magic$static$routes$delete$many$routes: (params: Params$magic$static$routes$delete$many$routes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57338,7 +57335,7 @@ export const createClient = (apiClient: ApiClient, * Get a specific Magic static route. */ magic$static$routes$route$details: (params: Params$magic$static$routes$route$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { Accept: "application/json" }; @@ -57350,10 +57347,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update Route - * Update a specific Magic static route. Use \`?validate_only=true\` as an optional query parameter to run validation only without persisting changes. + * Update a specific Magic static route. Use `?validate_only=true` as an optional query parameter to run validation only without persisting changes. */ magic$static$routes$update$route: (params: Params$magic$static$routes$update$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57370,7 +57367,7 @@ export const createClient = (apiClient: ApiClient, * Disable and remove a specific Magic static route. */ magic$static$routes$delete$route: (params: Params$magic$static$routes$delete$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/\${encodeURIComponent(params.parameter.route_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/magic/routes/${encodeURIComponent(params.parameter.route_identifier)}`; const headers = { Accept: "application/json" }; @@ -57385,7 +57382,7 @@ export const createClient = (apiClient: ApiClient, * List all members of an account. */ account$members$list$members: (params: Params$account$members$list$members, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members`; const headers = { Accept: "application/json" }; @@ -57408,7 +57405,7 @@ export const createClient = (apiClient: ApiClient, * Add a user to the list of members for this account. */ account$members$add$member: (params: Params$account$members$add$member, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57425,7 +57422,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific member of an account. */ account$members$member$details: (params: Params$account$members$member$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57440,7 +57437,7 @@ export const createClient = (apiClient: ApiClient, * Modify an account member. */ account$members$update$member: (params: Params$account$members$update$member, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57457,7 +57454,7 @@ export const createClient = (apiClient: ApiClient, * Remove a member from an account. */ account$members$remove$member: (params: Params$account$members$remove$member, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57472,7 +57469,7 @@ export const createClient = (apiClient: ApiClient, * Lists default sampling and router IPs for account. */ magic$network$monitoring$configuration$list$account$configuration: (params: Params$magic$network$monitoring$configuration$list$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57487,7 +57484,7 @@ export const createClient = (apiClient: ApiClient, * Update an existing network monitoring configuration, requires the entire configuration to be updated at once. */ magic$network$monitoring$configuration$update$an$entire$account$configuration: (params: Params$magic$network$monitoring$configuration$update$an$entire$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57502,7 +57499,7 @@ export const createClient = (apiClient: ApiClient, * Create a new network monitoring configuration. */ magic$network$monitoring$configuration$create$account$configuration: (params: Params$magic$network$monitoring$configuration$create$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57517,7 +57514,7 @@ export const createClient = (apiClient: ApiClient, * Delete an existing network monitoring configuration. */ magic$network$monitoring$configuration$delete$account$configuration: (params: Params$magic$network$monitoring$configuration$delete$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57532,7 +57529,7 @@ export const createClient = (apiClient: ApiClient, * Update fields in an existing network monitoring configuration. */ magic$network$monitoring$configuration$update$account$configuration$fields: (params: Params$magic$network$monitoring$configuration$update$account$configuration$fields, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config`; const headers = { Accept: "application/json" }; @@ -57547,7 +57544,7 @@ export const createClient = (apiClient: ApiClient, * Lists default sampling, router IPs, and rules for account. */ magic$network$monitoring$configuration$list$rules$and$account$configuration: (params: Params$magic$network$monitoring$configuration$list$rules$and$account$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/config/full\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/config/full`; const headers = { Accept: "application/json" }; @@ -57562,7 +57559,7 @@ export const createClient = (apiClient: ApiClient, * Lists network monitoring rules for account. */ magic$network$monitoring$rules$list$rules: (params: Params$magic$network$monitoring$rules$list$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57577,7 +57574,7 @@ export const createClient = (apiClient: ApiClient, * Update network monitoring rules for account. */ magic$network$monitoring$rules$update$rules: (params: Params$magic$network$monitoring$rules$update$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57592,7 +57589,7 @@ export const createClient = (apiClient: ApiClient, * Create network monitoring rules for account. Currently only supports creating a single rule per API request. */ magic$network$monitoring$rules$create$rules: (params: Params$magic$network$monitoring$rules$create$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules`; const headers = { Accept: "application/json" }; @@ -57607,7 +57604,7 @@ export const createClient = (apiClient: ApiClient, * List a single network monitoring rule for account. */ magic$network$monitoring$rules$get$rule: (params: Params$magic$network$monitoring$rules$get$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57622,7 +57619,7 @@ export const createClient = (apiClient: ApiClient, * Delete a network monitoring rule for account. */ magic$network$monitoring$rules$delete$rule: (params: Params$magic$network$monitoring$rules$delete$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57637,7 +57634,7 @@ export const createClient = (apiClient: ApiClient, * Update a network monitoring rule for account. */ magic$network$monitoring$rules$update$rule: (params: Params$magic$network$monitoring$rules$update$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -57652,7 +57649,7 @@ export const createClient = (apiClient: ApiClient, * Update advertisement for rule. */ magic$network$monitoring$rules$update$advertisement$for$rule: (params: Params$magic$network$monitoring$rules$update$advertisement$for$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/\${encodeURIComponent(params.parameter.rule_identifier)}/advertisement\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mnm/rules/${encodeURIComponent(params.parameter.rule_identifier)}/advertisement`; const headers = { Accept: "application/json" }; @@ -57667,7 +57664,7 @@ export const createClient = (apiClient: ApiClient, * Lists all mTLS certificates. */ m$tls$certificate$management$list$m$tls$certificates: (params: Params$m$tls$certificate$management$list$m$tls$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates`; const headers = { Accept: "application/json" }; @@ -57682,7 +57679,7 @@ export const createClient = (apiClient: ApiClient, * Upload a certificate that you want to use with mTLS-enabled Cloudflare services. */ m$tls$certificate$management$upload$m$tls$certificate: (params: Params$m$tls$certificate$management$upload$m$tls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57699,7 +57696,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single mTLS certificate. */ m$tls$certificate$management$get$m$tls$certificate: (params: Params$m$tls$certificate$management$get$m$tls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57714,7 +57711,7 @@ export const createClient = (apiClient: ApiClient, * Deletes the mTLS certificate unless the certificate is in use by one or more Cloudflare services. */ m$tls$certificate$management$delete$m$tls$certificate: (params: Params$m$tls$certificate$management$delete$m$tls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57729,7 +57726,7 @@ export const createClient = (apiClient: ApiClient, * Lists all active associations between the certificate and Cloudflare services. */ m$tls$certificate$management$list$m$tls$certificate$associations: (params: Params$m$tls$certificate$management$list$m$tls$certificate$associations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/\${encodeURIComponent(params.parameter.identifier)}/associations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/mtls_certificates/${encodeURIComponent(params.parameter.identifier)}/associations`; const headers = { Accept: "application/json" }; @@ -57744,7 +57741,7 @@ export const createClient = (apiClient: ApiClient, * Lists all packet capture requests for an account. */ magic$pcap$collection$list$packet$capture$requests: (params: Params$magic$pcap$collection$list$packet$capture$requests, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps`; const headers = { Accept: "application/json" }; @@ -57759,7 +57756,7 @@ export const createClient = (apiClient: ApiClient, * Create new PCAP request for account. */ magic$pcap$collection$create$pcap$request: (params: Params$magic$pcap$collection$create$pcap$request, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57776,7 +57773,7 @@ export const createClient = (apiClient: ApiClient, * Get information for a PCAP request by id. */ magic$pcap$collection$get$pcap$request: (params: Params$magic$pcap$collection$get$pcap$request, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57791,7 +57788,7 @@ export const createClient = (apiClient: ApiClient, * Download PCAP information into a file. Response is a binary PCAP file. */ magic$pcap$collection$download$simple$pcap: (params: Params$magic$pcap$collection$download$simple$pcap, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/\${encodeURIComponent(params.parameter.identifier)}/download\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/${encodeURIComponent(params.parameter.identifier)}/download`; const headers = {}; return apiClient.request({ httpMethod: "GET", @@ -57804,7 +57801,7 @@ export const createClient = (apiClient: ApiClient, * List all buckets configured for use with PCAPs API. */ magic$pcap$collection$list$pca$ps$bucket$ownership: (params: Params$magic$pcap$collection$list$pca$ps$bucket$ownership, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership`; const headers = { Accept: "application/json" }; @@ -57819,7 +57816,7 @@ export const createClient = (apiClient: ApiClient, * Adds an AWS or GCP bucket to use with full packet captures. */ magic$pcap$collection$add$buckets$for$full$packet$captures: (params: Params$magic$pcap$collection$add$buckets$for$full$packet$captures, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57836,7 +57833,7 @@ export const createClient = (apiClient: ApiClient, * Deletes buckets added to the packet captures API. */ magic$pcap$collection$delete$buckets$for$full$packet$captures: (params: Params$magic$pcap$collection$delete$buckets$for$full$packet$captures, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/${encodeURIComponent(params.parameter.identifier)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -57849,7 +57846,7 @@ export const createClient = (apiClient: ApiClient, * Validates buckets added to the packet captures API. */ magic$pcap$collection$validate$buckets$for$full$packet$captures: (params: Params$magic$pcap$collection$validate$buckets$for$full$packet$captures, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/validate\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/pcaps/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57863,7 +57860,7 @@ export const createClient = (apiClient: ApiClient, }, /** Request Trace */ account$request$tracer$request$trace: (params: Params$account$request$tracer$request$trace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/request-tracer/trace\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/request-tracer/trace`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57880,7 +57877,7 @@ export const createClient = (apiClient: ApiClient, * Get all available roles for an account. */ account$roles$list$roles: (params: Params$account$roles$list$roles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/roles\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/roles`; const headers = { Accept: "application/json" }; @@ -57895,7 +57892,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific role for an account. */ account$roles$role$details: (params: Params$account$roles$role$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/roles/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/roles/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -57910,7 +57907,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a list item in the list. */ lists$get$a$list$item: (params: Params$lists$get$a$list$item, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/\${encodeURIComponent(params.parameter.list_id)}/items/\${encodeURIComponent(params.parameter.item_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/${encodeURIComponent(params.parameter.list_id)}/items/${encodeURIComponent(params.parameter.item_id)}`; const headers = { Accept: "application/json" }; @@ -57924,10 +57921,10 @@ export const createClient = (apiClient: ApiClient, * Get bulk operation status * Gets the current status of an asynchronous operation on a list. * - * The \`status\` property can have one of the following values: \`pending\`, \`running\`, \`completed\`, or \`failed\`. If the status is \`failed\`, the \`error\` property will contain a message describing the error. + * The `status` property can have one of the following values: `pending`, `running`, `completed`, or `failed`. If the status is `failed`, the `error` property will contain a message describing the error. */ lists$get$bulk$operation$status: (params: Params$lists$get$bulk$operation$status, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/bulk_operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rules/lists/bulk_operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -57942,7 +57939,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Web Analytics site. */ web$analytics$create$site: (params: Params$web$analytics$create$site, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57959,7 +57956,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves a Web Analytics site. */ web$analytics$get$site: (params: Params$web$analytics$get$site, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { Accept: "application/json" }; @@ -57974,7 +57971,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing Web Analytics site. */ web$analytics$update$site: (params: Params$web$analytics$update$site, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -57991,7 +57988,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing Web Analytics site. */ web$analytics$delete$site: (params: Params$web$analytics$delete$site, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/\${encodeURIComponent(params.parameter.site_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/${encodeURIComponent(params.parameter.site_identifier)}`; const headers = { Accept: "application/json" }; @@ -58006,7 +58003,7 @@ export const createClient = (apiClient: ApiClient, * Lists all Web Analytics sites of an account. */ web$analytics$list$sites: (params: Params$web$analytics$list$sites, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/list\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/site_info/list`; const headers = { Accept: "application/json" }; @@ -58027,7 +58024,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new rule in a Web Analytics ruleset. */ web$analytics$create$rule: (params: Params$web$analytics$create$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58044,7 +58041,7 @@ export const createClient = (apiClient: ApiClient, * Updates a rule in a Web Analytics ruleset. */ web$analytics$update$rule: (params: Params$web$analytics$update$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58061,7 +58058,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing rule from a Web Analytics ruleset. */ web$analytics$delete$rule: (params: Params$web$analytics$delete$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rule/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -58076,7 +58073,7 @@ export const createClient = (apiClient: ApiClient, * Lists all the rules in a Web Analytics ruleset. */ web$analytics$list$rules: (params: Params$web$analytics$list$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rules`; const headers = { Accept: "application/json" }; @@ -58091,7 +58088,7 @@ export const createClient = (apiClient: ApiClient, * Modifies one or more rules in a Web Analytics ruleset with a single request. */ web$analytics$modify$rules: (params: Params$web$analytics$modify$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/\${encodeURIComponent(params.parameter.ruleset_identifier)}/rules\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/rum/v2/${encodeURIComponent(params.parameter.ruleset_identifier)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58108,7 +58105,7 @@ export const createClient = (apiClient: ApiClient, * List ACLs. */ secondary$dns$$$acl$$list$ac$ls: (params: Params$secondary$dns$$$acl$$list$ac$ls, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls`; const headers = { Accept: "application/json" }; @@ -58123,7 +58120,7 @@ export const createClient = (apiClient: ApiClient, * Create ACL. */ secondary$dns$$$acl$$create$acl: (params: Params$secondary$dns$$$acl$$create$acl, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58140,7 +58137,7 @@ export const createClient = (apiClient: ApiClient, * Get ACL. */ secondary$dns$$$acl$$acl$details: (params: Params$secondary$dns$$$acl$$acl$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58155,7 +58152,7 @@ export const createClient = (apiClient: ApiClient, * Modify ACL. */ secondary$dns$$$acl$$update$acl: (params: Params$secondary$dns$$$acl$$update$acl, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58172,7 +58169,7 @@ export const createClient = (apiClient: ApiClient, * Delete ACL. */ secondary$dns$$$acl$$delete$acl: (params: Params$secondary$dns$$$acl$$delete$acl, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/acls/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58187,7 +58184,7 @@ export const createClient = (apiClient: ApiClient, * List Peers. */ secondary$dns$$$peer$$list$peers: (params: Params$secondary$dns$$$peer$$list$peers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers`; const headers = { Accept: "application/json" }; @@ -58202,7 +58199,7 @@ export const createClient = (apiClient: ApiClient, * Create Peer. */ secondary$dns$$$peer$$create$peer: (params: Params$secondary$dns$$$peer$$create$peer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58219,7 +58216,7 @@ export const createClient = (apiClient: ApiClient, * Get Peer. */ secondary$dns$$$peer$$peer$details: (params: Params$secondary$dns$$$peer$$peer$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58234,7 +58231,7 @@ export const createClient = (apiClient: ApiClient, * Modify Peer. */ secondary$dns$$$peer$$update$peer: (params: Params$secondary$dns$$$peer$$update$peer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58251,7 +58248,7 @@ export const createClient = (apiClient: ApiClient, * Delete Peer. */ secondary$dns$$$peer$$delete$peer: (params: Params$secondary$dns$$$peer$$delete$peer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/peers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58266,7 +58263,7 @@ export const createClient = (apiClient: ApiClient, * List TSIGs. */ secondary$dns$$$tsig$$list$tsi$gs: (params: Params$secondary$dns$$$tsig$$list$tsi$gs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs`; const headers = { Accept: "application/json" }; @@ -58281,7 +58278,7 @@ export const createClient = (apiClient: ApiClient, * Create TSIG. */ secondary$dns$$$tsig$$create$tsig: (params: Params$secondary$dns$$$tsig$$create$tsig, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58298,7 +58295,7 @@ export const createClient = (apiClient: ApiClient, * Get TSIG. */ secondary$dns$$$tsig$$tsig$details: (params: Params$secondary$dns$$$tsig$$tsig$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58313,7 +58310,7 @@ export const createClient = (apiClient: ApiClient, * Modify TSIG. */ secondary$dns$$$tsig$$update$tsig: (params: Params$secondary$dns$$$tsig$$update$tsig, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58330,7 +58327,7 @@ export const createClient = (apiClient: ApiClient, * Delete TSIG. */ secondary$dns$$$tsig$$delete$tsig: (params: Params$secondary$dns$$$tsig$$delete$tsig, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/secondary_dns/tsigs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58345,7 +58342,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves Workers KV request metrics for the given account. */ workers$kv$request$analytics$query$request$analytics: (params: Params$workers$kv$request$analytics$query$request$analytics, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics`; const headers = { Accept: "application/json" }; @@ -58364,7 +58361,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves Workers KV stored data metrics for the given account. */ workers$kv$stored$data$analytics$query$stored$data$analytics: (params: Params$workers$kv$stored$data$analytics$query$stored$data$analytics, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics/stored\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/analytics/stored`; const headers = { Accept: "application/json" }; @@ -58383,7 +58380,7 @@ export const createClient = (apiClient: ApiClient, * Returns the namespaces owned by an account. */ workers$kv$namespace$list$namespaces: (params: Params$workers$kv$namespace$list$namespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces`; const headers = { Accept: "application/json" }; @@ -58402,10 +58399,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Create a Namespace - * Creates a namespace under the given title. A \`400\` is returned if the account already owns a namespace with this title. A namespace must be explicitly deleted to be replaced. + * Creates a namespace under the given title. A `400` is returned if the account already owns a namespace with this title. A namespace must be explicitly deleted to be replaced. */ workers$kv$namespace$create$a$namespace: (params: Params$workers$kv$namespace$create$a$namespace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58422,7 +58419,7 @@ export const createClient = (apiClient: ApiClient, * Modifies a namespace's title. */ workers$kv$namespace$rename$a$namespace: (params: Params$workers$kv$namespace$rename$a$namespace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58439,7 +58436,7 @@ export const createClient = (apiClient: ApiClient, * Deletes the namespace corresponding to the given ID. */ workers$kv$namespace$remove$a$namespace: (params: Params$workers$kv$namespace$remove$a$namespace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}`; const headers = { Accept: "application/json" }; @@ -58451,10 +58448,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Write multiple key-value pairs - * Write multiple keys and values at once. Body should be an array of up to 10,000 key-value pairs to be stored, along with optional expiration information. Existing values and expirations will be overwritten. If neither \`expiration\` nor \`expiration_ttl\` is specified, the key-value pair will never expire. If both are set, \`expiration_ttl\` is used and \`expiration\` is ignored. The entire request size must be 100 megabytes or less. + * Write multiple keys and values at once. Body should be an array of up to 10,000 key-value pairs to be stored, along with optional expiration information. Existing values and expirations will be overwritten. If neither `expiration` nor `expiration_ttl` is specified, the key-value pair will never expire. If both are set, `expiration_ttl` is used and `expiration` is ignored. The entire request size must be 100 megabytes or less. */ workers$kv$namespace$write$multiple$key$value$pairs: (params: Params$workers$kv$namespace$write$multiple$key$value$pairs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/bulk\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/bulk`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58471,7 +58468,7 @@ export const createClient = (apiClient: ApiClient, * Remove multiple KV pairs from the namespace. Body should be an array of up to 10,000 keys to be removed. */ workers$kv$namespace$delete$multiple$key$value$pairs: (params: Params$workers$kv$namespace$delete$multiple$key$value$pairs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/bulk\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/bulk`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58488,7 +58485,7 @@ export const createClient = (apiClient: ApiClient, * Lists a namespace's keys. */ workers$kv$namespace$list$a$namespace$$s$keys: (params: Params$workers$kv$namespace$list$a$namespace$$s$keys, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/keys\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/keys`; const headers = { Accept: "application/json" }; @@ -58506,10 +58503,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Read the metadata for a key - * Returns the metadata associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. + * Returns the metadata associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. */ workers$kv$namespace$read$the$metadata$for$a$key: (params: Params$workers$kv$namespace$read$the$metadata$for$a$key, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/metadata/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/metadata/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58521,10 +58518,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Read key-value pair - * Returns the value associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. If the KV-pair is set to expire at some point, the expiration time as measured in seconds since the UNIX epoch will be returned in the \`expiration\` response header. + * Returns the value associated with the given key in the given namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. If the KV-pair is set to expire at some point, the expiration time as measured in seconds since the UNIX epoch will be returned in the `expiration` response header. */ workers$kv$namespace$read$key$value$pair: (params: Params$workers$kv$namespace$read$key$value$pair, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58536,10 +58533,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Write key-value pair with metadata - * Write a value identified by a key. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. Body should be the value to be stored along with JSON metadata to be associated with the key/value pair. Existing values, expirations, and metadata will be overwritten. If neither \`expiration\` nor \`expiration_ttl\` is specified, the key-value pair will never expire. If both are set, \`expiration_ttl\` is used and \`expiration\` is ignored. + * Write a value identified by a key. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. Body should be the value to be stored along with JSON metadata to be associated with the key/value pair. Existing values, expirations, and metadata will be overwritten. If neither `expiration` nor `expiration_ttl` is specified, the key-value pair will never expire. If both are set, `expiration_ttl` is used and `expiration` is ignored. */ workers$kv$namespace$write$key$value$pair$with$metadata: (params: Params$workers$kv$namespace$write$key$value$pair$with$metadata, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -58553,10 +58550,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Delete key-value pair - * Remove a KV pair from the namespace. Use URL-encoding to use special characters (for example, \`:\`, \`!\`, \`%\`) in the key name. + * Remove a KV pair from the namespace. Use URL-encoding to use special characters (for example, `:`, `!`, `%`) in the key name. */ workers$kv$namespace$delete$key$value$pair: (params: Params$workers$kv$namespace$delete$key$value$pair, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/\${encodeURIComponent(params.parameter.namespace_identifier)}/values/\${encodeURIComponent(params.parameter.key_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/storage/kv/namespaces/${encodeURIComponent(params.parameter.namespace_identifier)}/values/${encodeURIComponent(params.parameter.key_name)}`; const headers = { Accept: "application/json" }; @@ -58571,7 +58568,7 @@ export const createClient = (apiClient: ApiClient, * Lists all of an account's subscriptions. */ account$subscriptions$list$subscriptions: (params: Params$account$subscriptions$list$subscriptions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions`; const headers = { Accept: "application/json" }; @@ -58586,7 +58583,7 @@ export const createClient = (apiClient: ApiClient, * Creates an account subscription. */ account$subscriptions$create$subscription: (params: Params$account$subscriptions$create$subscription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58603,7 +58600,7 @@ export const createClient = (apiClient: ApiClient, * Updates an account subscription. */ account$subscriptions$update$subscription: (params: Params$account$subscriptions$update$subscription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/\${encodeURIComponent(params.parameter.subscription_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/${encodeURIComponent(params.parameter.subscription_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58620,7 +58617,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an account's subscription. */ account$subscriptions$delete$subscription: (params: Params$account$subscriptions$delete$subscription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/\${encodeURIComponent(params.parameter.subscription_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/subscriptions/${encodeURIComponent(params.parameter.subscription_identifier)}`; const headers = { Accept: "application/json" }; @@ -58635,7 +58632,7 @@ export const createClient = (apiClient: ApiClient, * Returns a list of Vectorize Indexes */ vectorize$list$vectorize$indexes: (params: Params$vectorize$list$vectorize$indexes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes`; const headers = { Accept: "application/json" }; @@ -58650,7 +58647,7 @@ export const createClient = (apiClient: ApiClient, * Creates and returns a new Vectorize Index. */ vectorize$create$vectorize$index: (params: Params$vectorize$create$vectorize$index, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58667,7 +58664,7 @@ export const createClient = (apiClient: ApiClient, * Returns the specified Vectorize Index. */ vectorize$get$vectorize$index: (params: Params$vectorize$get$vectorize$index, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { Accept: "application/json" }; @@ -58682,7 +58679,7 @@ export const createClient = (apiClient: ApiClient, * Updates and returns the specified Vectorize Index. */ vectorize$update$vectorize$index: (params: Params$vectorize$update$vectorize$index, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58699,7 +58696,7 @@ export const createClient = (apiClient: ApiClient, * Deletes the specified Vectorize Index. */ vectorize$delete$vectorize$index: (params: Params$vectorize$delete$vectorize$index, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}`; const headers = { Accept: "application/json" }; @@ -58714,7 +58711,7 @@ export const createClient = (apiClient: ApiClient, * Delete a set of vectors from an index by their vector identifiers. */ vectorize$delete$vectors$by$id: (params: Params$vectorize$delete$vectors$by$id, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/delete-by-ids\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/delete-by-ids`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58731,7 +58728,7 @@ export const createClient = (apiClient: ApiClient, * Get a set of vectors from an index by their vector identifiers. */ vectorize$get$vectors$by$id: (params: Params$vectorize$get$vectors$by$id, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/get-by-ids\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/get-by-ids`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58748,7 +58745,7 @@ export const createClient = (apiClient: ApiClient, * Inserts vectors into the specified index and returns the count of the vectors successfully inserted. */ vectorize$insert$vector: (params: Params$vectorize$insert$vector, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/insert\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/insert`; const headers = { "Content-Type": "application/x-ndjson", Accept: "application/json" @@ -58765,7 +58762,7 @@ export const createClient = (apiClient: ApiClient, * Finds vectors closest to a given vector in an index. */ vectorize$query$vector: (params: Params$vectorize$query$vector, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/query\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/query`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58782,7 +58779,7 @@ export const createClient = (apiClient: ApiClient, * Upserts vectors into the specified index, creating them if they do not exist and returns the count of values and ids successfully inserted. */ vectorize$upsert$vector: (params: Params$vectorize$upsert$vector, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/\${encodeURIComponent(params.parameter.index_name)}/upsert\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier)}/vectorize/indexes/${encodeURIComponent(params.parameter.index_name)}/upsert`; const headers = { "Content-Type": "application/x-ndjson", Accept: "application/json" @@ -58799,7 +58796,7 @@ export const createClient = (apiClient: ApiClient, * Add an account as a member of a particular address map. */ ip$address$management$address$maps$add$an$account$membership$to$an$address$map: (params: Params$ip$address$management$address$maps$add$an$account$membership$to$an$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/\${encodeURIComponent(params.parameter.account_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/${encodeURIComponent(params.parameter.account_identifier)}`; const headers = { Accept: "application/json" }; @@ -58814,7 +58811,7 @@ export const createClient = (apiClient: ApiClient, * Remove an account as a member of a particular address map. */ ip$address$management$address$maps$remove$an$account$membership$from$an$address$map: (params: Params$ip$address$management$address$maps$remove$an$account$membership$from$an$address$map, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/\${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/\${encodeURIComponent(params.parameter.account_identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.account_identifier1)}/addressing/address_maps/${encodeURIComponent(params.parameter.address_map_identifier)}/accounts/${encodeURIComponent(params.parameter.account_identifier)}`; const headers = { Accept: "application/json" }; @@ -58826,10 +58823,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Search URL scans - * Search scans by date and webpages' requests, including full URL (after redirects), hostname, and path.
A successful scan will appear in search results a few minutes after finishing but may take much longer if the system in under load. By default, only successfully completed scans will appear in search results, unless searching by \`scanId\`. Please take into account that older scans may be removed from the search index at an unspecified time. + * Search scans by date and webpages' requests, including full URL (after redirects), hostname, and path.
A successful scan will appear in search results a few minutes after finishing but may take much longer if the system in under load. By default, only successfully completed scans will appear in search results, unless searching by `scanId`. Please take into account that older scans may be removed from the search index at an unspecified time. */ urlscanner$search$scans: (params: Params$urlscanner$search$scans, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan`; const headers = { Accept: "application/json" }; @@ -58859,7 +58856,7 @@ export const createClient = (apiClient: ApiClient, * Submit a URL to scan. You can also set some options, like the visibility level and custom headers. Accounts are limited to 1 new scan every 10 seconds and 8000 per month. If you need more, please reach out. */ urlscanner$create$scan: (params: Params$urlscanner$create$scan, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58876,7 +58873,7 @@ export const createClient = (apiClient: ApiClient, * Get URL scan by uuid */ urlscanner$get$scan: (params: Params$urlscanner$get$scan, option?: RequestOption): Promise<(Response$urlscanner$get$scan$Status$200 | Response$urlscanner$get$scan$Status$202)["application/json"]> => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}`; const headers = { Accept: "application/json" }; @@ -58891,7 +58888,7 @@ export const createClient = (apiClient: ApiClient, * Get a URL scan's HAR file. See HAR spec at http://www.softwareishard.com/blog/har-12-spec/. */ urlscanner$get$scan$har: (params: Params$urlscanner$get$scan$har, option?: RequestOption): Promise<(Response$urlscanner$get$scan$har$Status$200 | Response$urlscanner$get$scan$har$Status$202)["application/json"]> => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}/har\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}/har`; const headers = { Accept: "application/json" }; @@ -58906,7 +58903,7 @@ export const createClient = (apiClient: ApiClient, * Get scan's screenshot by resolution (desktop/mobile/tablet). */ urlscanner$get$scan$screenshot: (params: Params$urlscanner$get$scan$screenshot, option?: RequestOption): Promise<(Response$urlscanner$get$scan$screenshot$Status$200 | Response$urlscanner$get$scan$screenshot$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/\${encodeURIComponent(params.parameter.scanId)}/screenshot\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.accountId)}/urlscanner/scan/${encodeURIComponent(params.parameter.scanId)}/screenshot`; const headers = { Accept: params.headers.Accept }; @@ -58925,7 +58922,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific account that you are a member of. */ accounts$account$details: (params: Params$accounts$account$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -58940,7 +58937,7 @@ export const createClient = (apiClient: ApiClient, * Update an existing account. */ accounts$update$account: (params: Params$accounts$update$account, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58957,7 +58954,7 @@ export const createClient = (apiClient: ApiClient, * Lists all Access applications in an account. */ access$applications$list$access$applications: (params: Params$access$applications$list$access$applications, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { Accept: "application/json" }; @@ -58972,7 +58969,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new application to Access. */ access$applications$add$an$application: (params: Params$access$applications$add$an$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -58989,7 +58986,7 @@ export const createClient = (apiClient: ApiClient, * Fetches information about an Access application. */ access$applications$get$an$access$application: (params: Params$access$applications$get$an$access$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -59004,7 +59001,7 @@ export const createClient = (apiClient: ApiClient, * Updates an Access application. */ access$applications$update$a$bookmark$application: (params: Params$access$applications$update$a$bookmark$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59021,7 +59018,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an application from Access. */ access$applications$delete$an$access$application: (params: Params$access$applications$delete$an$access$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -59036,7 +59033,7 @@ export const createClient = (apiClient: ApiClient, * Revokes all tokens issued for an application. */ access$applications$revoke$service$tokens: (params: Params$access$applications$revoke$service$tokens, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/revoke_tokens\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/revoke_tokens`; const headers = { Accept: "application/json" }; @@ -59051,7 +59048,7 @@ export const createClient = (apiClient: ApiClient, * Tests if a specific user has permission to access an application. */ access$applications$test$access$policies: (params: Params$access$applications$test$access$policies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/user_policy_checks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/user_policy_checks`; const headers = { Accept: "application/json" }; @@ -59066,7 +59063,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a short-lived certificate CA and its public key. */ access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca: (params: Params$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59081,7 +59078,7 @@ export const createClient = (apiClient: ApiClient, * Generates a new short-lived certificate CA and public key. */ access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca: (params: Params$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59096,7 +59093,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a short-lived certificate CA. */ access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca: (params: Params$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -59111,7 +59108,7 @@ export const createClient = (apiClient: ApiClient, * Lists Access policies configured for an application. */ access$policies$list$access$policies: (params: Params$access$policies$list$access$policies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { Accept: "application/json" }; @@ -59126,7 +59123,7 @@ export const createClient = (apiClient: ApiClient, * Create a new Access policy for an application. */ access$policies$create$an$access$policy: (params: Params$access$policies$create$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59143,7 +59140,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Access policy. */ access$policies$get$an$access$policy: (params: Params$access$policies$get$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59158,7 +59155,7 @@ export const createClient = (apiClient: ApiClient, * Update a configured Access policy. */ access$policies$update$an$access$policy: (params: Params$access$policies$update$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59175,7 +59172,7 @@ export const createClient = (apiClient: ApiClient, * Delete an Access policy. */ access$policies$delete$an$access$policy: (params: Params$access$policies$delete$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59190,7 +59187,7 @@ export const createClient = (apiClient: ApiClient, * Lists short-lived certificate CAs and their public keys. */ access$short$lived$certificate$c$as$list$short$lived$certificate$c$as: (params: Params$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/apps/ca\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/apps/ca`; const headers = { Accept: "application/json" }; @@ -59205,7 +59202,7 @@ export const createClient = (apiClient: ApiClient, * Lists Bookmark applications. */ access$bookmark$applications$$$deprecated$$list$bookmark$applications: (params: Params$access$bookmark$applications$$$deprecated$$list$bookmark$applications, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks`; const headers = { Accept: "application/json" }; @@ -59220,7 +59217,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Bookmark application. */ access$bookmark$applications$$$deprecated$$get$a$bookmark$application: (params: Params$access$bookmark$applications$$$deprecated$$get$a$bookmark$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59235,7 +59232,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured Bookmark application. */ access$bookmark$applications$$$deprecated$$update$a$bookmark$application: (params: Params$access$bookmark$applications$$$deprecated$$update$a$bookmark$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59250,7 +59247,7 @@ export const createClient = (apiClient: ApiClient, * Create a new Bookmark application. */ access$bookmark$applications$$$deprecated$$create$a$bookmark$application: (params: Params$access$bookmark$applications$$$deprecated$$create$a$bookmark$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59265,7 +59262,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a Bookmark application. */ access$bookmark$applications$$$deprecated$$delete$a$bookmark$application: (params: Params$access$bookmark$applications$$$deprecated$$delete$a$bookmark$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/bookmarks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59280,7 +59277,7 @@ export const createClient = (apiClient: ApiClient, * Lists all mTLS root certificates. */ access$mtls$authentication$list$mtls$certificates: (params: Params$access$mtls$authentication$list$mtls$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { Accept: "application/json" }; @@ -59295,7 +59292,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new mTLS root certificate to Access. */ access$mtls$authentication$add$an$mtls$certificate: (params: Params$access$mtls$authentication$add$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59312,7 +59309,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single mTLS certificate. */ access$mtls$authentication$get$an$mtls$certificate: (params: Params$access$mtls$authentication$get$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59327,7 +59324,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured mTLS certificate. */ access$mtls$authentication$update$an$mtls$certificate: (params: Params$access$mtls$authentication$update$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59344,7 +59341,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an mTLS certificate. */ access$mtls$authentication$delete$an$mtls$certificate: (params: Params$access$mtls$authentication$delete$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59359,7 +59356,7 @@ export const createClient = (apiClient: ApiClient, * List all mTLS hostname settings for this account. */ access$mtls$authentication$list$mtls$certificates$hostname$settings: (params: Params$access$mtls$authentication$list$mtls$certificates$hostname$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { Accept: "application/json" }; @@ -59374,7 +59371,7 @@ export const createClient = (apiClient: ApiClient, * Updates an mTLS certificate's hostname settings. */ access$mtls$authentication$update$an$mtls$certificate$settings: (params: Params$access$mtls$authentication$update$an$mtls$certificate$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59391,7 +59388,7 @@ export const createClient = (apiClient: ApiClient, * List custom pages */ access$custom$pages$list$custom$pages: (params: Params$access$custom$pages$list$custom$pages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages`; const headers = { Accept: "application/json" }; @@ -59406,7 +59403,7 @@ export const createClient = (apiClient: ApiClient, * Create a custom page */ access$custom$pages$create$a$custom$page: (params: Params$access$custom$pages$create$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59423,7 +59420,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a custom page and also returns its HTML. */ access$custom$pages$get$a$custom$page: (params: Params$access$custom$pages$get$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59438,7 +59435,7 @@ export const createClient = (apiClient: ApiClient, * Update a custom page */ access$custom$pages$update$a$custom$page: (params: Params$access$custom$pages$update$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59455,7 +59452,7 @@ export const createClient = (apiClient: ApiClient, * Delete a custom page */ access$custom$pages$delete$a$custom$page: (params: Params$access$custom$pages$delete$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/custom_pages/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59470,7 +59467,7 @@ export const createClient = (apiClient: ApiClient, * Lists all Access groups. */ access$groups$list$access$groups: (params: Params$access$groups$list$access$groups, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { Accept: "application/json" }; @@ -59485,7 +59482,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Access group. */ access$groups$create$an$access$group: (params: Params$access$groups$create$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59502,7 +59499,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Access group. */ access$groups$get$an$access$group: (params: Params$access$groups$get$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59517,7 +59514,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured Access group. */ access$groups$update$an$access$group: (params: Params$access$groups$update$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59534,7 +59531,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an Access group. */ access$groups$delete$an$access$group: (params: Params$access$groups$delete$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59549,7 +59546,7 @@ export const createClient = (apiClient: ApiClient, * Lists all configured identity providers. */ access$identity$providers$list$access$identity$providers: (params: Params$access$identity$providers$list$access$identity$providers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { Accept: "application/json" }; @@ -59564,7 +59561,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new identity provider to Access. */ access$identity$providers$add$an$access$identity$provider: (params: Params$access$identity$providers$add$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59581,7 +59578,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a configured identity provider. */ access$identity$providers$get$an$access$identity$provider: (params: Params$access$identity$providers$get$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59596,7 +59593,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured identity provider. */ access$identity$providers$update$an$access$identity$provider: (params: Params$access$identity$providers$update$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59613,7 +59610,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an identity provider from Access. */ access$identity$providers$delete$an$access$identity$provider: (params: Params$access$identity$providers$delete$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59628,7 +59625,7 @@ export const createClient = (apiClient: ApiClient, * Gets the Access key rotation settings for an account. */ access$key$configuration$get$the$access$key$configuration: (params: Params$access$key$configuration$get$the$access$key$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys`; const headers = { Accept: "application/json" }; @@ -59643,7 +59640,7 @@ export const createClient = (apiClient: ApiClient, * Updates the Access key rotation settings for an account. */ access$key$configuration$update$the$access$key$configuration: (params: Params$access$key$configuration$update$the$access$key$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59660,7 +59657,7 @@ export const createClient = (apiClient: ApiClient, * Perfoms a key rotation for an account. */ access$key$configuration$rotate$access$keys: (params: Params$access$key$configuration$rotate$access$keys, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/keys/rotate\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/keys/rotate`; const headers = { Accept: "application/json" }; @@ -59675,7 +59672,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of Access authentication audit logs for an account. */ access$authentication$logs$get$access$authentication$logs: (params: Params$access$authentication$logs$get$access$authentication$logs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/logs/access_requests\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/logs/access_requests`; const headers = { Accept: "application/json" }; @@ -59690,7 +59687,7 @@ export const createClient = (apiClient: ApiClient, * Returns the configuration for your Zero Trust organization. */ zero$trust$organization$get$your$zero$trust$organization: (params: Params$zero$trust$organization$get$your$zero$trust$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { Accept: "application/json" }; @@ -59705,7 +59702,7 @@ export const createClient = (apiClient: ApiClient, * Updates the configuration for your Zero Trust organization. */ zero$trust$organization$update$your$zero$trust$organization: (params: Params$zero$trust$organization$update$your$zero$trust$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59722,7 +59719,7 @@ export const createClient = (apiClient: ApiClient, * Sets up a Zero Trust organization for your account. */ zero$trust$organization$create$your$zero$trust$organization: (params: Params$zero$trust$organization$create$your$zero$trust$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59739,7 +59736,7 @@ export const createClient = (apiClient: ApiClient, * Revokes a user's access across all applications. */ zero$trust$organization$revoke$all$access$tokens$for$a$user: (params: Params$zero$trust$organization$revoke$all$access$tokens$for$a$user, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59753,10 +59750,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update a user seat - * Removes a user from a Zero Trust seat when both \`access_seat\` and \`gateway_seat\` are set to false. + * Removes a user from a Zero Trust seat when both `access_seat` and `gateway_seat` are set to false. */ zero$trust$seats$update$a$user$seat: (params: Params$zero$trust$seats$update$a$user$seat, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/seats\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/seats`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59773,7 +59770,7 @@ export const createClient = (apiClient: ApiClient, * Lists all service tokens. */ access$service$tokens$list$service$tokens: (params: Params$access$service$tokens$list$service$tokens, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { Accept: "application/json" }; @@ -59788,7 +59785,7 @@ export const createClient = (apiClient: ApiClient, * Generates a new service token. **Note:** This is the only time you can get the Client Secret. If you lose the Client Secret, you will have to rotate the Client Secret or create a new service token. */ access$service$tokens$create$a$service$token: (params: Params$access$service$tokens$create$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59805,7 +59802,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured service token. */ access$service$tokens$update$a$service$token: (params: Params$access$service$tokens$update$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59822,7 +59819,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a service token. */ access$service$tokens$delete$a$service$token: (params: Params$access$service$tokens$delete$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -59837,7 +59834,7 @@ export const createClient = (apiClient: ApiClient, * Refreshes the expiration of a service token. */ access$service$tokens$refresh$a$service$token: (params: Params$access$service$tokens$refresh$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}/refresh\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}/refresh`; const headers = { Accept: "application/json" }; @@ -59852,7 +59849,7 @@ export const createClient = (apiClient: ApiClient, * Generates a new Client Secret for a service token and revokes the old one. */ access$service$tokens$rotate$a$service$token: (params: Params$access$service$tokens$rotate$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}/rotate\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}/rotate`; const headers = { Accept: "application/json" }; @@ -59867,7 +59864,7 @@ export const createClient = (apiClient: ApiClient, * List tags */ access$tags$list$tags: (params: Params$access$tags$list$tags, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags`; const headers = { Accept: "application/json" }; @@ -59882,7 +59879,7 @@ export const createClient = (apiClient: ApiClient, * Create a tag */ access$tags$create$tag: (params: Params$access$tags$create$tag, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59899,7 +59896,7 @@ export const createClient = (apiClient: ApiClient, * Get a tag */ access$tags$get$a$tag: (params: Params$access$tags$get$a$tag, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -59914,7 +59911,7 @@ export const createClient = (apiClient: ApiClient, * Update a tag */ access$tags$update$a$tag: (params: Params$access$tags$update$a$tag, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -59931,7 +59928,7 @@ export const createClient = (apiClient: ApiClient, * Delete a tag */ access$tags$delete$a$tag: (params: Params$access$tags$delete$a$tag, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/tags/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/tags/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: "application/json" }; @@ -59946,7 +59943,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of users for an account. */ zero$trust$users$get$users: (params: Params$zero$trust$users$get$users, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users`; const headers = { Accept: "application/json" }; @@ -59961,7 +59958,7 @@ export const createClient = (apiClient: ApiClient, * Get active sessions for a single user. */ zero$trust$users$get$active$sessions: (params: Params$zero$trust$users$get$active$sessions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/active_sessions\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/active_sessions`; const headers = { Accept: "application/json" }; @@ -59976,7 +59973,7 @@ export const createClient = (apiClient: ApiClient, * Get an active session for a single user. */ zero$trust$users$get$active$session: (params: Params$zero$trust$users$get$active$session, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/active_sessions/\${encodeURIComponent(params.parameter.nonce)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/active_sessions/${encodeURIComponent(params.parameter.nonce)}`; const headers = { Accept: "application/json" }; @@ -59991,7 +59988,7 @@ export const createClient = (apiClient: ApiClient, * Get all failed login attempts for a single user. */ zero$trust$users$get$failed$logins: (params: Params$zero$trust$users$get$failed$logins, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/failed_logins\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/failed_logins`; const headers = { Accept: "application/json" }; @@ -60006,7 +60003,7 @@ export const createClient = (apiClient: ApiClient, * Get last seen identity for a single user. */ zero$trust$users$get$last$seen$identity: (params: Params$zero$trust$users$get$last$seen$identity, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/access/users/\${encodeURIComponent(params.parameter.id)}/last_seen_identity\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/access/users/${encodeURIComponent(params.parameter.id)}/last_seen_identity`; const headers = { Accept: "application/json" }; @@ -60021,7 +60018,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a list of enrolled devices. */ devices$list$devices: (params: Params$devices$list$devices, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices`; const headers = { Accept: "application/json" }; @@ -60036,7 +60033,7 @@ export const createClient = (apiClient: ApiClient, * Fetches details for a single device. */ devices$device$details: (params: Params$devices$device$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60051,7 +60048,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a one-time use admin override code for a device. This relies on the **Admin Override** setting being enabled in your device configuration. */ devices$list$admin$override$code$for$device: (params: Params$devices$list$admin$override$code$for$device, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/\${encodeURIComponent(params.parameter.uuid)}/override_codes\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/${encodeURIComponent(params.parameter.uuid)}/override_codes`; const headers = { Accept: "application/json" }; @@ -60066,7 +60063,7 @@ export const createClient = (apiClient: ApiClient, * Fetch all DEX tests. */ device$dex$test$details: (params: Params$device$dex$test$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests`; const headers = { Accept: "application/json" }; @@ -60081,7 +60078,7 @@ export const createClient = (apiClient: ApiClient, * Create a DEX test. */ device$dex$test$create$device$dex$test: (params: Params$device$dex$test$create$device$dex$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60098,7 +60095,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single DEX test. */ device$dex$test$get$device$dex$test: (params: Params$device$dex$test$get$device$dex$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60113,7 +60110,7 @@ export const createClient = (apiClient: ApiClient, * Update a DEX test. */ device$dex$test$update$device$dex$test: (params: Params$device$dex$test$update$device$dex$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60130,7 +60127,7 @@ export const createClient = (apiClient: ApiClient, * Delete a Device DEX test. Returns the remaining device dex tests for the account. */ device$dex$test$delete$device$dex$test: (params: Params$device$dex$test$delete$device$dex$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/dex_tests/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60145,7 +60142,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a list of managed networks for an account. */ device$managed$networks$list$device$managed$networks: (params: Params$device$managed$networks$list$device$managed$networks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks`; const headers = { Accept: "application/json" }; @@ -60160,7 +60157,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new device managed network. */ device$managed$networks$create$device$managed$network: (params: Params$device$managed$networks$create$device$managed$network, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60177,7 +60174,7 @@ export const createClient = (apiClient: ApiClient, * Fetches details for a single managed network. */ device$managed$networks$device$managed$network$details: (params: Params$device$managed$networks$device$managed$network$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60192,7 +60189,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured device managed network. */ device$managed$networks$update$device$managed$network: (params: Params$device$managed$networks$update$device$managed$network, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60209,7 +60206,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a device managed network and fetches a list of the remaining device managed networks for an account. */ device$managed$networks$delete$device$managed$network: (params: Params$device$managed$networks$delete$device$managed$network, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/networks/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/networks/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60224,7 +60221,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a list of the device settings profiles for an account. */ devices$list$device$settings$policies: (params: Params$devices$list$device$settings$policies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policies\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policies`; const headers = { Accept: "application/json" }; @@ -60239,7 +60236,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the default device settings profile for an account. */ devices$get$default$device$settings$policy: (params: Params$devices$get$default$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { Accept: "application/json" }; @@ -60254,7 +60251,7 @@ export const createClient = (apiClient: ApiClient, * Creates a device settings profile to be applied to certain devices matching the criteria. */ devices$create$device$settings$policy: (params: Params$devices$create$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60271,7 +60268,7 @@ export const createClient = (apiClient: ApiClient, * Updates the default device settings profile for an account. */ devices$update$default$device$settings$policy: (params: Params$devices$update$default$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60288,7 +60285,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a device settings profile by ID. */ devices$get$device$settings$policy$by$id: (params: Params$devices$get$device$settings$policy$by$id, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60303,7 +60300,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a device settings profile and fetches a list of the remaining profiles for an account. */ devices$delete$device$settings$policy: (params: Params$devices$delete$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60318,7 +60315,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured device settings profile. */ devices$update$device$settings$policy: (params: Params$devices$update$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60335,7 +60332,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the list of routes excluded from the WARP client's tunnel for a specific device settings profile. */ devices$get$split$tunnel$exclude$list$for$a$device$settings$policy: (params: Params$devices$get$split$tunnel$exclude$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/exclude\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/exclude`; const headers = { Accept: "application/json" }; @@ -60350,7 +60347,7 @@ export const createClient = (apiClient: ApiClient, * Sets the list of routes excluded from the WARP client's tunnel for a specific device settings profile. */ devices$set$split$tunnel$exclude$list$for$a$device$settings$policy: (params: Params$devices$set$split$tunnel$exclude$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/exclude\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60367,7 +60364,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the list of domains to bypass Gateway DNS resolution from a specified device settings profile. These domains will use the specified local DNS resolver instead. */ devices$get$local$domain$fallback$list$for$a$device$settings$policy: (params: Params$devices$get$local$domain$fallback$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/fallback_domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/fallback_domains`; const headers = { Accept: "application/json" }; @@ -60382,7 +60379,7 @@ export const createClient = (apiClient: ApiClient, * Sets the list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. This will only apply to the specified device settings profile. */ devices$set$local$domain$fallback$list$for$a$device$settings$policy: (params: Params$devices$set$local$domain$fallback$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/fallback_domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/fallback_domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60399,7 +60396,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the list of routes included in the WARP client's tunnel for a specific device settings profile. */ devices$get$split$tunnel$include$list$for$a$device$settings$policy: (params: Params$devices$get$split$tunnel$include$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/include\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/include`; const headers = { Accept: "application/json" }; @@ -60414,7 +60411,7 @@ export const createClient = (apiClient: ApiClient, * Sets the list of routes included in the WARP client's tunnel for a specific device settings profile. */ devices$set$split$tunnel$include$list$for$a$device$settings$policy: (params: Params$devices$set$split$tunnel$include$list$for$a$device$settings$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/\${encodeURIComponent(params.parameter.uuid)}/include\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/${encodeURIComponent(params.parameter.uuid)}/include`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60431,7 +60428,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the list of routes excluded from the WARP client's tunnel. */ devices$get$split$tunnel$exclude$list: (params: Params$devices$get$split$tunnel$exclude$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude`; const headers = { Accept: "application/json" }; @@ -60446,7 +60443,7 @@ export const createClient = (apiClient: ApiClient, * Sets the list of routes excluded from the WARP client's tunnel. */ devices$set$split$tunnel$exclude$list: (params: Params$devices$set$split$tunnel$exclude$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60463,7 +60460,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. */ devices$get$local$domain$fallback$list: (params: Params$devices$get$local$domain$fallback$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains`; const headers = { Accept: "application/json" }; @@ -60478,7 +60475,7 @@ export const createClient = (apiClient: ApiClient, * Sets the list of domains to bypass Gateway DNS resolution. These domains will use the specified local DNS resolver instead. */ devices$set$local$domain$fallback$list: (params: Params$devices$set$local$domain$fallback$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/fallback_domains`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60495,7 +60492,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the list of routes included in the WARP client's tunnel. */ devices$get$split$tunnel$include$list: (params: Params$devices$get$split$tunnel$include$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/include\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/include`; const headers = { Accept: "application/json" }; @@ -60510,7 +60507,7 @@ export const createClient = (apiClient: ApiClient, * Sets the list of routes included in the WARP client's tunnel. */ devices$set$split$tunnel$include$list: (params: Params$devices$set$split$tunnel$include$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/policy/include\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/policy/include`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60527,7 +60524,7 @@ export const createClient = (apiClient: ApiClient, * Fetches device posture rules for a Zero Trust account. */ device$posture$rules$list$device$posture$rules: (params: Params$device$posture$rules$list$device$posture$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture`; const headers = { Accept: "application/json" }; @@ -60542,7 +60539,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new device posture rule. */ device$posture$rules$create$device$posture$rule: (params: Params$device$posture$rules$create$device$posture$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60559,7 +60556,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single device posture rule. */ device$posture$rules$device$posture$rules$details: (params: Params$device$posture$rules$device$posture$rules$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60574,7 +60571,7 @@ export const createClient = (apiClient: ApiClient, * Updates a device posture rule. */ device$posture$rules$update$device$posture$rule: (params: Params$device$posture$rules$update$device$posture$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60591,7 +60588,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a device posture rule. */ device$posture$rules$delete$device$posture$rule: (params: Params$device$posture$rules$delete$device$posture$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60606,7 +60603,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the list of device posture integrations for an account. */ device$posture$integrations$list$device$posture$integrations: (params: Params$device$posture$integrations$list$device$posture$integrations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration`; const headers = { Accept: "application/json" }; @@ -60621,7 +60618,7 @@ export const createClient = (apiClient: ApiClient, * Create a new device posture integration. */ device$posture$integrations$create$device$posture$integration: (params: Params$device$posture$integrations$create$device$posture$integration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60638,7 +60635,7 @@ export const createClient = (apiClient: ApiClient, * Fetches details for a single device posture integration. */ device$posture$integrations$device$posture$integration$details: (params: Params$device$posture$integrations$device$posture$integration$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60653,7 +60650,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured device posture integration. */ device$posture$integrations$delete$device$posture$integration: (params: Params$device$posture$integrations$delete$device$posture$integration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -60668,7 +60665,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured device posture integration. */ device$posture$integrations$update$device$posture$integration: (params: Params$device$posture$integrations$update$device$posture$integration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/posture/integration/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60685,7 +60682,7 @@ export const createClient = (apiClient: ApiClient, * Revokes a list of devices. */ devices$revoke$devices: (params: Params$devices$revoke$devices, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/revoke\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/revoke`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60702,7 +60699,7 @@ export const createClient = (apiClient: ApiClient, * Describes the current device settings for a Zero Trust account. */ zero$trust$accounts$get$device$settings$for$zero$trust$account: (params: Params$zero$trust$accounts$get$device$settings$for$zero$trust$account, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/settings`; const headers = { Accept: "application/json" }; @@ -60717,7 +60714,7 @@ export const createClient = (apiClient: ApiClient, * Updates the current device settings for a Zero Trust account. */ zero$trust$accounts$update$device$settings$for$the$zero$trust$account: (params: Params$zero$trust$accounts$update$device$settings$for$the$zero$trust$account, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/settings\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60734,7 +60731,7 @@ export const createClient = (apiClient: ApiClient, * Unrevokes a list of devices. */ devices$unrevoke$devices: (params: Params$devices$unrevoke$devices, option?: RequestOption): Promise => { - const url = _baseUrl + \`/accounts/\${encodeURIComponent(params.parameter.identifier)}/devices/unrevoke\`; + const url = _baseUrl + `/accounts/${encodeURIComponent(params.parameter.identifier)}/devices/unrevoke`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60751,7 +60748,7 @@ export const createClient = (apiClient: ApiClient, * List all existing Origin CA certificates for a given zone. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ origin$ca$list$certificates: (params: Params$origin$ca$list$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/certificates\`; + const url = _baseUrl + `/certificates`; const headers = { Accept: "application/json" }; @@ -60770,7 +60767,7 @@ export const createClient = (apiClient: ApiClient, * Create an Origin CA certificate. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ origin$ca$create$certificate: (params: Params$origin$ca$create$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/certificates\`; + const url = _baseUrl + `/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60787,7 +60784,7 @@ export const createClient = (apiClient: ApiClient, * Get an existing Origin CA certificate by its serial number. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ origin$ca$get$certificate: (params: Params$origin$ca$get$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60802,7 +60799,7 @@ export const createClient = (apiClient: ApiClient, * Revoke an existing Origin CA certificate by its serial number. Use your Origin CA Key as your User Service Key when calling this endpoint ([see above](#requests)). */ origin$ca$revoke$certificate: (params: Params$origin$ca$revoke$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60817,7 +60814,7 @@ export const createClient = (apiClient: ApiClient, * Get IPs used on the Cloudflare/JD Cloud network, see https://www.cloudflare.com/ips for Cloudflare IPs or https://developers.cloudflare.com/china-network/reference/infrastructure/ for JD Cloud IPs. */ cloudflare$i$ps$cloudflare$ip$details: (params: Params$cloudflare$i$ps$cloudflare$ip$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/ips\`; + const url = _baseUrl + `/ips`; const headers = { Accept: "application/json" }; @@ -60836,7 +60833,7 @@ export const createClient = (apiClient: ApiClient, * List memberships of accounts the user can access. */ user$$s$account$memberships$list$memberships: (params: Params$user$$s$account$memberships$list$memberships, option?: RequestOption): Promise => { - const url = _baseUrl + \`/memberships\`; + const url = _baseUrl + `/memberships`; const headers = { Accept: "application/json" }; @@ -60861,7 +60858,7 @@ export const createClient = (apiClient: ApiClient, * Get a specific membership. */ user$$s$account$memberships$membership$details: (params: Params$user$$s$account$memberships$membership$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60876,7 +60873,7 @@ export const createClient = (apiClient: ApiClient, * Accept or reject this account invitation. */ user$$s$account$memberships$update$membership: (params: Params$user$$s$account$memberships$update$membership, option?: RequestOption): Promise => { - const url = _baseUrl + \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60893,7 +60890,7 @@ export const createClient = (apiClient: ApiClient, * Remove the associated member from an account. */ user$$s$account$memberships$delete$membership: (params: Params$user$$s$account$memberships$delete$membership, option?: RequestOption): Promise => { - const url = _baseUrl + \`/memberships/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/memberships/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60908,7 +60905,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific organization that you are a member of. */ organizations$$$deprecated$$organization$details: (params: Params$organizations$$$deprecated$$organization$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -60923,7 +60920,7 @@ export const createClient = (apiClient: ApiClient, * Update an existing Organization. */ organizations$$$deprecated$$edit$organization: (params: Params$organizations$$$deprecated$$edit$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -60940,7 +60937,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of audit logs for an organization. Can be filtered by who made the change, on which zone, and the timeframe of the change. */ audit$logs$get$organization$audit$logs: (params: Params$audit$logs$get$organization$audit$logs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/audit_logs\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/audit_logs`; const headers = { Accept: "application/json" }; @@ -60970,7 +60967,7 @@ export const createClient = (apiClient: ApiClient, * List all invitations associated with an organization. */ organization$invites$list$invitations: (params: Params$organization$invites$list$invitations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites`; const headers = { Accept: "application/json" }; @@ -60985,7 +60982,7 @@ export const createClient = (apiClient: ApiClient, * Invite a User to become a Member of an Organization. */ organization$invites$create$invitation: (params: Params$organization$invites$create$invitation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61002,7 +60999,7 @@ export const createClient = (apiClient: ApiClient, * Get the details of an invitation. */ organization$invites$invitation$details: (params: Params$organization$invites$invitation$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61017,7 +61014,7 @@ export const createClient = (apiClient: ApiClient, * Cancel an existing invitation. */ organization$invites$cancel$invitation: (params: Params$organization$invites$cancel$invitation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61032,7 +61029,7 @@ export const createClient = (apiClient: ApiClient, * Change the Roles of a Pending Invite. */ organization$invites$edit$invitation$roles: (params: Params$organization$invites$edit$invitation$roles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61049,7 +61046,7 @@ export const createClient = (apiClient: ApiClient, * List all members of a organization. */ organization$members$list$members: (params: Params$organization$members$list$members, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members`; const headers = { Accept: "application/json" }; @@ -61064,7 +61061,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific member of an organization. */ organization$members$member$details: (params: Params$organization$members$member$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61079,7 +61076,7 @@ export const createClient = (apiClient: ApiClient, * Remove a member from an organization. */ organization$members$remove$member: (params: Params$organization$members$remove$member, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61094,7 +61091,7 @@ export const createClient = (apiClient: ApiClient, * Change the Roles of an Organization's Member. */ organization$members$edit$member$roles: (params: Params$organization$members$edit$member$roles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/members/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/members/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -61111,7 +61108,7 @@ export const createClient = (apiClient: ApiClient, * Get all available roles for an organization. */ organization$roles$list$roles: (params: Params$organization$roles$list$roles, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/roles\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/roles`; const headers = { Accept: "application/json" }; @@ -61126,7 +61123,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific role for an organization. */ organization$roles$role$details: (params: Params$organization$roles$role$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/organizations/\${encodeURIComponent(params.parameter.organization_identifier)}/roles/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/organizations/${encodeURIComponent(params.parameter.organization_identifier)}/roles/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -61138,7 +61135,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get latest Internet outages and anomalies. */ radar$get$annotations$outages: (params: Params$radar$get$annotations$outages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/annotations/outages\`; + const url = _baseUrl + `/radar/annotations/outages`; const headers = { Accept: "application/json" }; @@ -61161,7 +61158,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get the number of outages for locations. */ radar$get$annotations$outages$top: (params: Params$radar$get$annotations$outages$top, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/annotations/outages/locations\`; + const url = _baseUrl + `/radar/annotations/outages/locations`; const headers = { Accept: "application/json" }; @@ -61184,7 +61181,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of DNS queries to AS112 by DNSSEC support. */ radar$get$dns$as112$timeseries$by$dnssec: (params: Params$radar$get$dns$as112$timeseries$by$dnssec, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/summary/dnssec\`; + const url = _baseUrl + `/radar/as112/summary/dnssec`; const headers = { Accept: "application/json" }; @@ -61209,7 +61206,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of DNS queries, to AS112, by EDNS support. */ radar$get$dns$as112$timeseries$by$edns: (params: Params$radar$get$dns$as112$timeseries$by$edns, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/summary/edns\`; + const url = _baseUrl + `/radar/as112/summary/edns`; const headers = { Accept: "application/json" }; @@ -61234,7 +61231,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of DNS queries to AS112 per IP Version. */ radar$get$dns$as112$timeseries$by$ip$version: (params: Params$radar$get$dns$as112$timeseries$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/summary/ip_version\`; + const url = _baseUrl + `/radar/as112/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -61259,7 +61256,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of DNS queries to AS112 per protocol. */ radar$get$dns$as112$timeseries$by$protocol: (params: Params$radar$get$dns$as112$timeseries$by$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/summary/protocol\`; + const url = _baseUrl + `/radar/as112/summary/protocol`; const headers = { Accept: "application/json" }; @@ -61284,7 +61281,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of DNS queries to AS112 by Query Type. */ radar$get$dns$as112$timeseries$by$query$type: (params: Params$radar$get$dns$as112$timeseries$by$query$type, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/summary/query_type\`; + const url = _baseUrl + `/radar/as112/summary/query_type`; const headers = { Accept: "application/json" }; @@ -61309,7 +61306,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of AS112 dns requests classified per Response Codes. */ radar$get$dns$as112$timeseries$by$response$codes: (params: Params$radar$get$dns$as112$timeseries$by$response$codes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/summary/response_codes\`; + const url = _baseUrl + `/radar/as112/summary/response_codes`; const headers = { Accept: "application/json" }; @@ -61334,7 +61331,7 @@ export const createClient = (apiClient: ApiClient, * Get AS112 queries change over time. */ radar$get$dns$as112$timeseries: (params: Params$radar$get$dns$as112$timeseries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/timeseries\`; + const url = _baseUrl + `/radar/as112/timeseries`; const headers = { Accept: "application/json" }; @@ -61360,7 +61357,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of DNS AS112 queries by DNSSEC support over time. */ radar$get$dns$as112$timeseries$group$by$dnssec: (params: Params$radar$get$dns$as112$timeseries$group$by$dnssec, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/timeseries_groups/dnssec\`; + const url = _baseUrl + `/radar/as112/timeseries_groups/dnssec`; const headers = { Accept: "application/json" }; @@ -61386,7 +61383,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of AS112 DNS queries by EDNS support over time. */ radar$get$dns$as112$timeseries$group$by$edns: (params: Params$radar$get$dns$as112$timeseries$group$by$edns, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/timeseries_groups/edns\`; + const url = _baseUrl + `/radar/as112/timeseries_groups/edns`; const headers = { Accept: "application/json" }; @@ -61412,7 +61409,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of AS112 DNS queries by IP Version over time. */ radar$get$dns$as112$timeseries$group$by$ip$version: (params: Params$radar$get$dns$as112$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/timeseries_groups/ip_version\`; + const url = _baseUrl + `/radar/as112/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -61438,7 +61435,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of AS112 dns requests classified per Protocol over time. */ radar$get$dns$as112$timeseries$group$by$protocol: (params: Params$radar$get$dns$as112$timeseries$group$by$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/timeseries_groups/protocol\`; + const url = _baseUrl + `/radar/as112/timeseries_groups/protocol`; const headers = { Accept: "application/json" }; @@ -61464,7 +61461,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of AS112 DNS queries by Query Type over time. */ radar$get$dns$as112$timeseries$group$by$query$type: (params: Params$radar$get$dns$as112$timeseries$group$by$query$type, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/timeseries_groups/query_type\`; + const url = _baseUrl + `/radar/as112/timeseries_groups/query_type`; const headers = { Accept: "application/json" }; @@ -61490,7 +61487,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of AS112 dns requests classified per Response Codes over time. */ radar$get$dns$as112$timeseries$group$by$response$codes: (params: Params$radar$get$dns$as112$timeseries$group$by$response$codes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/timeseries_groups/response_codes\`; + const url = _baseUrl + `/radar/as112/timeseries_groups/response_codes`; const headers = { Accept: "application/json" }; @@ -61516,7 +61513,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by AS112 DNS queries. Values are a percentage out of the total queries. */ radar$get$dns$as112$top$locations: (params: Params$radar$get$dns$as112$top$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/top/locations\`; + const url = _baseUrl + `/radar/as112/top/locations`; const headers = { Accept: "application/json" }; @@ -61542,7 +61539,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by DNS queries DNSSEC support to AS112. */ radar$get$dns$as112$top$locations$by$dnssec: (params: Params$radar$get$dns$as112$top$locations$by$dnssec, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/top/locations/dnssec/\${encodeURIComponent(params.parameter.dnssec)}\`; + const url = _baseUrl + `/radar/as112/top/locations/dnssec/${encodeURIComponent(params.parameter.dnssec)}`; const headers = { Accept: "application/json" }; @@ -61568,7 +61565,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by DNS queries EDNS support to AS112. */ radar$get$dns$as112$top$locations$by$edns: (params: Params$radar$get$dns$as112$top$locations$by$edns, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/top/locations/edns/\${encodeURIComponent(params.parameter.edns)}\`; + const url = _baseUrl + `/radar/as112/top/locations/edns/${encodeURIComponent(params.parameter.edns)}`; const headers = { Accept: "application/json" }; @@ -61594,7 +61591,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by DNS queries IP version to AS112. */ radar$get$dns$as112$top$locations$by$ip$version: (params: Params$radar$get$dns$as112$top$locations$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/as112/top/locations/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const url = _baseUrl + `/radar/as112/top/locations/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -61620,7 +61617,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of network protocols in layer 3/4 attacks over a given time period. */ radar$get$attacks$layer3$summary: (params: Params$radar$get$attacks$layer3$summary, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/summary\`; + const url = _baseUrl + `/radar/attacks/layer3/summary`; const headers = { Accept: "application/json" }; @@ -61645,7 +61642,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by bitrate. */ radar$get$attacks$layer3$summary$by$bitrate: (params: Params$radar$get$attacks$layer3$summary$by$bitrate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/summary/bitrate\`; + const url = _baseUrl + `/radar/attacks/layer3/summary/bitrate`; const headers = { Accept: "application/json" }; @@ -61672,7 +61669,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by duration. */ radar$get$attacks$layer3$summary$by$duration: (params: Params$radar$get$attacks$layer3$summary$by$duration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/summary/duration\`; + const url = _baseUrl + `/radar/attacks/layer3/summary/duration`; const headers = { Accept: "application/json" }; @@ -61699,7 +61696,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by ip version used. */ radar$get$attacks$layer3$summary$by$ip$version: (params: Params$radar$get$attacks$layer3$summary$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/summary/ip_version\`; + const url = _baseUrl + `/radar/attacks/layer3/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -61725,7 +61722,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by protocol used. */ radar$get$attacks$layer3$summary$by$protocol: (params: Params$radar$get$attacks$layer3$summary$by$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/summary/protocol\`; + const url = _baseUrl + `/radar/attacks/layer3/summary/protocol`; const headers = { Accept: "application/json" }; @@ -61751,7 +61748,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by vector. */ radar$get$attacks$layer3$summary$by$vector: (params: Params$radar$get$attacks$layer3$summary$by$vector, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/summary/vector\`; + const url = _baseUrl + `/radar/attacks/layer3/summary/vector`; const headers = { Accept: "application/json" }; @@ -61778,7 +61775,7 @@ export const createClient = (apiClient: ApiClient, * Get attacks change over time by bytes. */ radar$get$attacks$layer3$timeseries$by$bytes: (params: Params$radar$get$attacks$layer3$timeseries$by$bytes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries`; const headers = { Accept: "application/json" }; @@ -61809,7 +61806,7 @@ export const createClient = (apiClient: ApiClient, * Get a timeseries of the percentage distribution of network protocols in Layer 3/4 attacks. */ radar$get$attacks$layer3$timeseries$groups: (params: Params$radar$get$attacks$layer3$timeseries$groups, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -61835,7 +61832,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by bitrate over time. */ radar$get$attacks$layer3$timeseries$group$by$bitrate: (params: Params$radar$get$attacks$layer3$timeseries$group$by$bitrate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups/bitrate\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups/bitrate`; const headers = { Accept: "application/json" }; @@ -61864,7 +61861,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by duration over time. */ radar$get$attacks$layer3$timeseries$group$by$duration: (params: Params$radar$get$attacks$layer3$timeseries$group$by$duration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups/duration\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups/duration`; const headers = { Accept: "application/json" }; @@ -61893,7 +61890,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by industry used over time. */ radar$get$attacks$layer3$timeseries$group$by$industry: (params: Params$radar$get$attacks$layer3$timeseries$group$by$industry, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups/industry\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups/industry`; const headers = { Accept: "application/json" }; @@ -61922,7 +61919,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by ip version used over time. */ radar$get$attacks$layer3$timeseries$group$by$ip$version: (params: Params$radar$get$attacks$layer3$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups/ip_version\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -61950,7 +61947,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by protocol used over time. */ radar$get$attacks$layer3$timeseries$group$by$protocol: (params: Params$radar$get$attacks$layer3$timeseries$group$by$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups/protocol\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups/protocol`; const headers = { Accept: "application/json" }; @@ -61978,7 +61975,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by vector used over time. */ radar$get$attacks$layer3$timeseries$group$by$vector: (params: Params$radar$get$attacks$layer3$timeseries$group$by$vector, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups/vector\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups/vector`; const headers = { Accept: "application/json" }; @@ -62008,7 +62005,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by vertical used over time. */ radar$get$attacks$layer3$timeseries$group$by$vertical: (params: Params$radar$get$attacks$layer3$timeseries$group$by$vertical, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/timeseries_groups/vertical\`; + const url = _baseUrl + `/radar/attacks/layer3/timeseries_groups/vertical`; const headers = { Accept: "application/json" }; @@ -62037,7 +62034,7 @@ export const createClient = (apiClient: ApiClient, * Get the top attacks from origin to target location. Values are a percentage out of the total layer 3 attacks (with billing country). You can optionally limit the number of attacks per origin/target location (useful if all the top attacks are from or to the same location). */ radar$get$attacks$layer3$top$attacks: (params: Params$radar$get$attacks$layer3$top$attacks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/top/attacks\`; + const url = _baseUrl + `/radar/attacks/layer3/top/attacks`; const headers = { Accept: "application/json" }; @@ -62066,7 +62063,7 @@ export const createClient = (apiClient: ApiClient, * Get the Industry of attacks. */ radar$get$attacks$layer3$top$industries: (params: Params$radar$get$attacks$layer3$top$industries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/top/industry\`; + const url = _baseUrl + `/radar/attacks/layer3/top/industry`; const headers = { Accept: "application/json" }; @@ -62093,7 +62090,7 @@ export const createClient = (apiClient: ApiClient, * Get the origin locations of attacks. */ radar$get$attacks$layer3$top$origin$locations: (params: Params$radar$get$attacks$layer3$top$origin$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/top/locations/origin\`; + const url = _baseUrl + `/radar/attacks/layer3/top/locations/origin`; const headers = { Accept: "application/json" }; @@ -62120,7 +62117,7 @@ export const createClient = (apiClient: ApiClient, * Get the target locations of attacks. */ radar$get$attacks$layer3$top$target$locations: (params: Params$radar$get$attacks$layer3$top$target$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/top/locations/target\`; + const url = _baseUrl + `/radar/attacks/layer3/top/locations/target`; const headers = { Accept: "application/json" }; @@ -62147,7 +62144,7 @@ export const createClient = (apiClient: ApiClient, * Get the Verticals of attacks. */ radar$get$attacks$layer3$top$verticals: (params: Params$radar$get$attacks$layer3$top$verticals, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer3/top/vertical\`; + const url = _baseUrl + `/radar/attacks/layer3/top/vertical`; const headers = { Accept: "application/json" }; @@ -62174,7 +62171,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of mitigation techniques in Layer 7 attacks. */ radar$get$attacks$layer7$summary: (params: Params$radar$get$attacks$layer7$summary, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/summary\`; + const url = _baseUrl + `/radar/attacks/layer7/summary`; const headers = { Accept: "application/json" }; @@ -62199,7 +62196,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by http method used. */ radar$get$attacks$layer7$summary$by$http$method: (params: Params$radar$get$attacks$layer7$summary$by$http$method, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/summary/http_method\`; + const url = _baseUrl + `/radar/attacks/layer7/summary/http_method`; const headers = { Accept: "application/json" }; @@ -62227,7 +62224,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by http version used. */ radar$get$attacks$layer7$summary$by$http$version: (params: Params$radar$get$attacks$layer7$summary$by$http$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/summary/http_version\`; + const url = _baseUrl + `/radar/attacks/layer7/summary/http_version`; const headers = { Accept: "application/json" }; @@ -62255,7 +62252,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by ip version used. */ radar$get$attacks$layer7$summary$by$ip$version: (params: Params$radar$get$attacks$layer7$summary$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/summary/ip_version\`; + const url = _baseUrl + `/radar/attacks/layer7/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -62283,7 +62280,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by managed rules used. */ radar$get$attacks$layer7$summary$by$managed$rules: (params: Params$radar$get$attacks$layer7$summary$by$managed$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/summary/managed_rules\`; + const url = _baseUrl + `/radar/attacks/layer7/summary/managed_rules`; const headers = { Accept: "application/json" }; @@ -62312,7 +62309,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by mitigation product used. */ radar$get$attacks$layer7$summary$by$mitigation$product: (params: Params$radar$get$attacks$layer7$summary$by$mitigation$product, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/summary/mitigation_product\`; + const url = _baseUrl + `/radar/attacks/layer7/summary/mitigation_product`; const headers = { Accept: "application/json" }; @@ -62340,7 +62337,7 @@ export const createClient = (apiClient: ApiClient, * Get a timeseries of Layer 7 attacks. Values represent HTTP requests and are normalized using min-max by default. */ radar$get$attacks$layer7$timeseries: (params: Params$radar$get$attacks$layer7$timeseries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries`; const headers = { Accept: "application/json" }; @@ -62368,7 +62365,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentual distribution of mitigation techniques, over time. */ radar$get$attacks$layer7$timeseries$group: (params: Params$radar$get$attacks$layer7$timeseries$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -62394,7 +62391,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by http method used over time. */ radar$get$attacks$layer7$timeseries$group$by$http$method: (params: Params$radar$get$attacks$layer7$timeseries$group$by$http$method, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups/http_method\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups/http_method`; const headers = { Accept: "application/json" }; @@ -62424,7 +62421,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by http version used over time. */ radar$get$attacks$layer7$timeseries$group$by$http$version: (params: Params$radar$get$attacks$layer7$timeseries$group$by$http$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups/http_version\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups/http_version`; const headers = { Accept: "application/json" }; @@ -62454,7 +62451,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by industry used over time. */ radar$get$attacks$layer7$timeseries$group$by$industry: (params: Params$radar$get$attacks$layer7$timeseries$group$by$industry, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups/industry\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups/industry`; const headers = { Accept: "application/json" }; @@ -62486,7 +62483,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by ip version used over time. */ radar$get$attacks$layer7$timeseries$group$by$ip$version: (params: Params$radar$get$attacks$layer7$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups/ip_version\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -62516,7 +62513,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by managed rules used over time. */ radar$get$attacks$layer7$timeseries$group$by$managed$rules: (params: Params$radar$get$attacks$layer7$timeseries$group$by$managed$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups/managed_rules\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups/managed_rules`; const headers = { Accept: "application/json" }; @@ -62547,7 +62544,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by mitigation product used over time. */ radar$get$attacks$layer7$timeseries$group$by$mitigation$product: (params: Params$radar$get$attacks$layer7$timeseries$group$by$mitigation$product, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups/mitigation_product\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups/mitigation_product`; const headers = { Accept: "application/json" }; @@ -62577,7 +62574,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of attacks by vertical used over time. */ radar$get$attacks$layer7$timeseries$group$by$vertical: (params: Params$radar$get$attacks$layer7$timeseries$group$by$vertical, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/timeseries_groups/vertical\`; + const url = _baseUrl + `/radar/attacks/layer7/timeseries_groups/vertical`; const headers = { Accept: "application/json" }; @@ -62609,7 +62606,7 @@ export const createClient = (apiClient: ApiClient, * Get the top origin Autonomous Systems of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The origin Autonomous Systems is determined by the client IP. */ radar$get$attacks$layer7$top$origin$as: (params: Params$radar$get$attacks$layer7$top$origin$as, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/top/ases/origin\`; + const url = _baseUrl + `/radar/attacks/layer7/top/ases/origin`; const headers = { Accept: "application/json" }; @@ -62634,7 +62631,7 @@ export const createClient = (apiClient: ApiClient, * Get the top attacks from origin to target location. Values are a percentage out of the total layer 7 attacks (with billing country). The attack magnitude can be defined by the number of mitigated requests or by the number of zones affected. You can optionally limit the number of attacks per origin/target location (useful if all the top attacks are from or to the same location). */ radar$get$attacks$layer7$top$attacks: (params: Params$radar$get$attacks$layer7$top$attacks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/top/attacks\`; + const url = _baseUrl + `/radar/attacks/layer7/top/attacks`; const headers = { Accept: "application/json" }; @@ -62663,7 +62660,7 @@ export const createClient = (apiClient: ApiClient, * Get the Industry of attacks. */ radar$get$attacks$layer7$top$industries: (params: Params$radar$get$attacks$layer7$top$industries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/top/industry\`; + const url = _baseUrl + `/radar/attacks/layer7/top/industry`; const headers = { Accept: "application/json" }; @@ -62689,7 +62686,7 @@ export const createClient = (apiClient: ApiClient, * Get the top origin locations of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The origin location is determined by the client IP. */ radar$get$attacks$layer7$top$origin$location: (params: Params$radar$get$attacks$layer7$top$origin$location, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/top/locations/origin\`; + const url = _baseUrl + `/radar/attacks/layer7/top/locations/origin`; const headers = { Accept: "application/json" }; @@ -62714,7 +62711,7 @@ export const createClient = (apiClient: ApiClient, * Get the top target locations of and by layer 7 attacks. Values are a percentage out of the total layer 7 attacks. The target location is determined by the attacked zone's billing country, when available. */ radar$get$attacks$layer7$top$target$location: (params: Params$radar$get$attacks$layer7$top$target$location, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/top/locations/target\`; + const url = _baseUrl + `/radar/attacks/layer7/top/locations/target`; const headers = { Accept: "application/json" }; @@ -62738,7 +62735,7 @@ export const createClient = (apiClient: ApiClient, * Get the Verticals of attacks. */ radar$get$attacks$layer7$top$verticals: (params: Params$radar$get$attacks$layer7$top$verticals, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/attacks/layer7/top/vertical\`; + const url = _baseUrl + `/radar/attacks/layer7/top/vertical`; const headers = { Accept: "application/json" }; @@ -62764,7 +62761,7 @@ export const createClient = (apiClient: ApiClient, * Get the BGP hijack events. (Beta) */ radar$get$bgp$hijacks$events: (params: Params$radar$get$bgp$hijacks$events, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/hijacks/events\`; + const url = _baseUrl + `/radar/bgp/hijacks/events`; const headers = { Accept: "application/json" }; @@ -62798,7 +62795,7 @@ export const createClient = (apiClient: ApiClient, * Get the BGP route leak events (Beta). */ radar$get$bgp$route$leak$events: (params: Params$radar$get$bgp$route$leak$events, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/leaks/events\`; + const url = _baseUrl + `/radar/bgp/leaks/events`; const headers = { Accept: "application/json" }; @@ -62828,7 +62825,7 @@ export const createClient = (apiClient: ApiClient, * List all Multi-origin AS (MOAS) prefixes on the global routing tables. */ radar$get$bgp$pfx2as$moas: (params: Params$radar$get$bgp$pfx2as$moas, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/routes/moas\`; + const url = _baseUrl + `/radar/bgp/routes/moas`; const headers = { Accept: "application/json" }; @@ -62850,7 +62847,7 @@ export const createClient = (apiClient: ApiClient, * Lookup prefix-to-origin mapping on global routing tables. */ radar$get$bgp$pfx2as: (params: Params$radar$get$bgp$pfx2as, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/routes/pfx2as\`; + const url = _baseUrl + `/radar/bgp/routes/pfx2as`; const headers = { Accept: "application/json" }; @@ -62872,7 +62869,7 @@ export const createClient = (apiClient: ApiClient, * Get the BGP routing table stats (Beta). */ radar$get$bgp$routes$stats: (params: Params$radar$get$bgp$routes$stats, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/routes/stats\`; + const url = _baseUrl + `/radar/bgp/routes/stats`; const headers = { Accept: "application/json" }; @@ -62893,7 +62890,7 @@ export const createClient = (apiClient: ApiClient, * Gets BGP updates change over time. Raw values are returned. When requesting updates of an autonomous system (AS), only BGP updates of type announcement are returned. */ radar$get$bgp$timeseries: (params: Params$radar$get$bgp$timeseries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/timeseries\`; + const url = _baseUrl + `/radar/bgp/timeseries`; const headers = { Accept: "application/json" }; @@ -62920,7 +62917,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS) by BGP updates (announcements only). Values are a percentage out of the total updates. */ radar$get$bgp$top$ases: (params: Params$radar$get$bgp$top$ases, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/top/ases\`; + const url = _baseUrl + `/radar/bgp/top/ases`; const headers = { Accept: "application/json" }; @@ -62947,7 +62944,7 @@ export const createClient = (apiClient: ApiClient, * Get the full list of autonomous systems on the global routing table ordered by announced prefixes count. The data comes from public BGP MRT data archives and updates every 2 hours. */ radar$get$bgp$top$asns$by$prefixes: (params: Params$radar$get$bgp$top$asns$by$prefixes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/top/ases/prefixes\`; + const url = _baseUrl + `/radar/bgp/top/ases/prefixes`; const headers = { Accept: "application/json" }; @@ -62968,7 +62965,7 @@ export const createClient = (apiClient: ApiClient, * Get the top network prefixes by BGP updates. Values are a percentage out of the total BGP updates. */ radar$get$bgp$top$prefixes: (params: Params$radar$get$bgp$top$prefixes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/bgp/top/prefixes\`; + const url = _baseUrl + `/radar/bgp/top/prefixes`; const headers = { Accept: "application/json" }; @@ -62994,7 +62991,7 @@ export const createClient = (apiClient: ApiClient, * Distribution of connection tampering types over a given time period. */ radar$get$connection$tampering$summary: (params: Params$radar$get$connection$tampering$summary, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/connection_tampering/summary\`; + const url = _baseUrl + `/radar/connection_tampering/summary`; const headers = { Accept: "application/json" }; @@ -63019,7 +63016,7 @@ export const createClient = (apiClient: ApiClient, * Distribution of connection tampering types over time. */ radar$get$connection$tampering$timeseries$group: (params: Params$radar$get$connection$tampering$timeseries$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/connection_tampering/timeseries_groups\`; + const url = _baseUrl + `/radar/connection_tampering/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -63045,7 +63042,7 @@ export const createClient = (apiClient: ApiClient, * Get a list of datasets. */ radar$get$reports$datasets: (params: Params$radar$get$reports$datasets, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/datasets\`; + const url = _baseUrl + `/radar/datasets`; const headers = { Accept: "application/json" }; @@ -63067,7 +63064,7 @@ export const createClient = (apiClient: ApiClient, * Get the csv content of a given dataset by alias or id. When getting the content by alias the latest dataset is returned, optionally filtered by the latest available at a given date. */ radar$get$reports$dataset$download: (params: Params$radar$get$reports$dataset$download, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/datasets/\${encodeURIComponent(params.parameter.alias)}\`; + const url = _baseUrl + `/radar/datasets/${encodeURIComponent(params.parameter.alias)}`; const headers = { Accept: "text/csv" }; @@ -63086,7 +63083,7 @@ export const createClient = (apiClient: ApiClient, * Get a url to download a single dataset. */ radar$post$reports$dataset$download$url: (params: Params$radar$post$reports$dataset$download$url, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/datasets/download\`; + const url = _baseUrl + `/radar/datasets/download`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -63107,7 +63104,7 @@ export const createClient = (apiClient: ApiClient, * Get top autonomous systems by DNS queries made to Cloudflare's public DNS resolver. */ radar$get$dns$top$ases: (params: Params$radar$get$dns$top$ases, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/dns/top/ases\`; + const url = _baseUrl + `/radar/dns/top/ases`; const headers = { Accept: "application/json" }; @@ -63134,7 +63131,7 @@ export const createClient = (apiClient: ApiClient, * Get top locations by DNS queries made to Cloudflare's public DNS resolver. */ radar$get$dns$top$locations: (params: Params$radar$get$dns$top$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/dns/top/locations\`; + const url = _baseUrl + `/radar/dns/top/locations`; const headers = { Accept: "application/json" }; @@ -63161,7 +63158,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per ARC validation. */ radar$get$email$security$summary$by$arc: (params: Params$radar$get$email$security$summary$by$arc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/summary/arc\`; + const url = _baseUrl + `/radar/email/security/summary/arc`; const headers = { Accept: "application/json" }; @@ -63189,7 +63186,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per DKIM validation. */ radar$get$email$security$summary$by$dkim: (params: Params$radar$get$email$security$summary$by$dkim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/summary/dkim\`; + const url = _baseUrl + `/radar/email/security/summary/dkim`; const headers = { Accept: "application/json" }; @@ -63217,7 +63214,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per DMARC validation. */ radar$get$email$security$summary$by$dmarc: (params: Params$radar$get$email$security$summary$by$dmarc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/summary/dmarc\`; + const url = _baseUrl + `/radar/email/security/summary/dmarc`; const headers = { Accept: "application/json" }; @@ -63245,7 +63242,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified as MALICIOUS. */ radar$get$email$security$summary$by$malicious: (params: Params$radar$get$email$security$summary$by$malicious, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/summary/malicious\`; + const url = _baseUrl + `/radar/email/security/summary/malicious`; const headers = { Accept: "application/json" }; @@ -63274,7 +63271,7 @@ export const createClient = (apiClient: ApiClient, * Proportion of emails categorized as either spam or legitimate (non-spam). */ radar$get$email$security$summary$by$spam: (params: Params$radar$get$email$security$summary$by$spam, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/summary/spam\`; + const url = _baseUrl + `/radar/email/security/summary/spam`; const headers = { Accept: "application/json" }; @@ -63303,7 +63300,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per SPF validation. */ radar$get$email$security$summary$by$spf: (params: Params$radar$get$email$security$summary$by$spf, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/summary/spf\`; + const url = _baseUrl + `/radar/email/security/summary/spf`; const headers = { Accept: "application/json" }; @@ -63331,7 +63328,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified in Threat Categories. */ radar$get$email$security$summary$by$threat$category: (params: Params$radar$get$email$security$summary$by$threat$category, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/summary/threat_category\`; + const url = _baseUrl + `/radar/email/security/summary/threat_category`; const headers = { Accept: "application/json" }; @@ -63360,7 +63357,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per Arc validation over time. */ radar$get$email$security$timeseries$group$by$arc: (params: Params$radar$get$email$security$timeseries$group$by$arc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/timeseries_groups/arc\`; + const url = _baseUrl + `/radar/email/security/timeseries_groups/arc`; const headers = { Accept: "application/json" }; @@ -63389,7 +63386,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per DKIM validation over time. */ radar$get$email$security$timeseries$group$by$dkim: (params: Params$radar$get$email$security$timeseries$group$by$dkim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/timeseries_groups/dkim\`; + const url = _baseUrl + `/radar/email/security/timeseries_groups/dkim`; const headers = { Accept: "application/json" }; @@ -63418,7 +63415,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per DMARC validation over time. */ radar$get$email$security$timeseries$group$by$dmarc: (params: Params$radar$get$email$security$timeseries$group$by$dmarc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/timeseries_groups/dmarc\`; + const url = _baseUrl + `/radar/email/security/timeseries_groups/dmarc`; const headers = { Accept: "application/json" }; @@ -63447,7 +63444,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified as MALICIOUS over time. */ radar$get$email$security$timeseries$group$by$malicious: (params: Params$radar$get$email$security$timeseries$group$by$malicious, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/timeseries_groups/malicious\`; + const url = _baseUrl + `/radar/email/security/timeseries_groups/malicious`; const headers = { Accept: "application/json" }; @@ -63477,7 +63474,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified as SPAM over time. */ radar$get$email$security$timeseries$group$by$spam: (params: Params$radar$get$email$security$timeseries$group$by$spam, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/timeseries_groups/spam\`; + const url = _baseUrl + `/radar/email/security/timeseries_groups/spam`; const headers = { Accept: "application/json" }; @@ -63507,7 +63504,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified per SPF validation over time. */ radar$get$email$security$timeseries$group$by$spf: (params: Params$radar$get$email$security$timeseries$group$by$spf, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/timeseries_groups/spf\`; + const url = _baseUrl + `/radar/email/security/timeseries_groups/spf`; const headers = { Accept: "application/json" }; @@ -63536,7 +63533,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of emails classified in Threat Categories over time. */ radar$get$email$security$timeseries$group$by$threat$category: (params: Params$radar$get$email$security$timeseries$group$by$threat$category, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/timeseries_groups/threat_category\`; + const url = _baseUrl + `/radar/email/security/timeseries_groups/threat_category`; const headers = { Accept: "application/json" }; @@ -63566,7 +63563,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS) by email messages. Values are a percentage out of the total emails. */ radar$get$email$security$top$ases$by$messages: (params: Params$radar$get$email$security$top$ases$by$messages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/ases\`; + const url = _baseUrl + `/radar/email/security/top/ases`; const headers = { Accept: "application/json" }; @@ -63596,7 +63593,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS) by emails ARC validation. */ radar$get$email$security$top$ases$by$arc: (params: Params$radar$get$email$security$top$ases$by$arc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/ases/arc/\${encodeURIComponent(params.parameter.arc)}\`; + const url = _baseUrl + `/radar/email/security/top/ases/arc/${encodeURIComponent(params.parameter.arc)}`; const headers = { Accept: "application/json" }; @@ -63625,7 +63622,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by email DKIM validation. */ radar$get$email$security$top$ases$by$dkim: (params: Params$radar$get$email$security$top$ases$by$dkim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/ases/dkim/\${encodeURIComponent(params.parameter.dkim)}\`; + const url = _baseUrl + `/radar/email/security/top/ases/dkim/${encodeURIComponent(params.parameter.dkim)}`; const headers = { Accept: "application/json" }; @@ -63654,7 +63651,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS) by emails DMARC validation. */ radar$get$email$security$top$ases$by$dmarc: (params: Params$radar$get$email$security$top$ases$by$dmarc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/ases/dmarc/\${encodeURIComponent(params.parameter.dmarc)}\`; + const url = _baseUrl + `/radar/email/security/top/ases/dmarc/${encodeURIComponent(params.parameter.dmarc)}`; const headers = { Accept: "application/json" }; @@ -63683,7 +63680,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by emails classified as Malicious or not. */ radar$get$email$security$top$ases$by$malicious: (params: Params$radar$get$email$security$top$ases$by$malicious, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/ases/malicious/\${encodeURIComponent(params.parameter.malicious)}\`; + const url = _baseUrl + `/radar/email/security/top/ases/malicious/${encodeURIComponent(params.parameter.malicious)}`; const headers = { Accept: "application/json" }; @@ -63713,7 +63710,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by emails classified, of Spam validations. */ radar$get$email$security$top$ases$by$spam: (params: Params$radar$get$email$security$top$ases$by$spam, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/ases/spam/\${encodeURIComponent(params.parameter.spam)}\`; + const url = _baseUrl + `/radar/email/security/top/ases/spam/${encodeURIComponent(params.parameter.spam)}`; const headers = { Accept: "application/json" }; @@ -63743,7 +63740,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS) by email SPF validation. */ radar$get$email$security$top$ases$by$spf: (params: Params$radar$get$email$security$top$ases$by$spf, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/ases/spf/\${encodeURIComponent(params.parameter.spf)}\`; + const url = _baseUrl + `/radar/email/security/top/ases/spf/${encodeURIComponent(params.parameter.spf)}`; const headers = { Accept: "application/json" }; @@ -63772,7 +63769,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by email messages. Values are a percentage out of the total emails. */ radar$get$email$security$top$locations$by$messages: (params: Params$radar$get$email$security$top$locations$by$messages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/locations\`; + const url = _baseUrl + `/radar/email/security/top/locations`; const headers = { Accept: "application/json" }; @@ -63802,7 +63799,7 @@ export const createClient = (apiClient: ApiClient, * Get the locations, by emails ARC validation. */ radar$get$email$security$top$locations$by$arc: (params: Params$radar$get$email$security$top$locations$by$arc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/locations/arc/\${encodeURIComponent(params.parameter.arc)}\`; + const url = _baseUrl + `/radar/email/security/top/locations/arc/${encodeURIComponent(params.parameter.arc)}`; const headers = { Accept: "application/json" }; @@ -63831,7 +63828,7 @@ export const createClient = (apiClient: ApiClient, * Get the locations, by email DKIM validation. */ radar$get$email$security$top$locations$by$dkim: (params: Params$radar$get$email$security$top$locations$by$dkim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/locations/dkim/\${encodeURIComponent(params.parameter.dkim)}\`; + const url = _baseUrl + `/radar/email/security/top/locations/dkim/${encodeURIComponent(params.parameter.dkim)}`; const headers = { Accept: "application/json" }; @@ -63860,7 +63857,7 @@ export const createClient = (apiClient: ApiClient, * Get the locations by email DMARC validation. */ radar$get$email$security$top$locations$by$dmarc: (params: Params$radar$get$email$security$top$locations$by$dmarc, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/locations/dmarc/\${encodeURIComponent(params.parameter.dmarc)}\`; + const url = _baseUrl + `/radar/email/security/top/locations/dmarc/${encodeURIComponent(params.parameter.dmarc)}`; const headers = { Accept: "application/json" }; @@ -63889,7 +63886,7 @@ export const createClient = (apiClient: ApiClient, * Get the locations by emails classified as malicious or not. */ radar$get$email$security$top$locations$by$malicious: (params: Params$radar$get$email$security$top$locations$by$malicious, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/locations/malicious/\${encodeURIComponent(params.parameter.malicious)}\`; + const url = _baseUrl + `/radar/email/security/top/locations/malicious/${encodeURIComponent(params.parameter.malicious)}`; const headers = { Accept: "application/json" }; @@ -63919,7 +63916,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by emails classified as Spam or not. */ radar$get$email$security$top$locations$by$spam: (params: Params$radar$get$email$security$top$locations$by$spam, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/locations/spam/\${encodeURIComponent(params.parameter.spam)}\`; + const url = _baseUrl + `/radar/email/security/top/locations/spam/${encodeURIComponent(params.parameter.spam)}`; const headers = { Accept: "application/json" }; @@ -63949,7 +63946,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by email SPF validation. */ radar$get$email$security$top$locations$by$spf: (params: Params$radar$get$email$security$top$locations$by$spf, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/email/security/top/locations/spf/\${encodeURIComponent(params.parameter.spf)}\`; + const url = _baseUrl + `/radar/email/security/top/locations/spf/${encodeURIComponent(params.parameter.spf)}`; const headers = { Accept: "application/json" }; @@ -63978,7 +63975,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of autonomous systems (AS). */ radar$get$entities$asn$list: (params: Params$radar$get$entities$asn$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/entities/asns\`; + const url = _baseUrl + `/radar/entities/asns`; const headers = { Accept: "application/json" }; @@ -63999,10 +63996,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Get autonomous system information by AS number - * Get the requested autonomous system information. A confidence level below \`5\` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). + * Get the requested autonomous system information. A confidence level below `5` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this AS). Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). */ radar$get$entities$asn$by$id: (params: Params$radar$get$entities$asn$by$id, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/entities/asns/\${encodeURIComponent(params.parameter.asn)}\`; + const url = _baseUrl + `/radar/entities/asns/${encodeURIComponent(params.parameter.asn)}`; const headers = { Accept: "application/json" }; @@ -64021,7 +64018,7 @@ export const createClient = (apiClient: ApiClient, * Get AS-level relationship for given networks. */ radar$get$asns$rel: (params: Params$radar$get$asns$rel, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/entities/asns/\${encodeURIComponent(params.parameter.asn)}/rel\`; + const url = _baseUrl + `/radar/entities/asns/${encodeURIComponent(params.parameter.asn)}/rel`; const headers = { Accept: "application/json" }; @@ -64041,7 +64038,7 @@ export const createClient = (apiClient: ApiClient, * Get the requested autonomous system information based on IP address. Population estimates come from APNIC (refer to https://labs.apnic.net/?p=526). */ radar$get$entities$asn$by$ip: (params: Params$radar$get$entities$asn$by$ip, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/entities/asns/ip\`; + const url = _baseUrl + `/radar/entities/asns/ip`; const headers = { Accept: "application/json" }; @@ -64061,7 +64058,7 @@ export const createClient = (apiClient: ApiClient, * Get IP address information. */ radar$get$entities$ip: (params: Params$radar$get$entities$ip, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/entities/ip\`; + const url = _baseUrl + `/radar/entities/ip`; const headers = { Accept: "application/json" }; @@ -64081,7 +64078,7 @@ export const createClient = (apiClient: ApiClient, * Get a list of locations. */ radar$get$entities$locations: (params: Params$radar$get$entities$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/entities/locations\`; + const url = _baseUrl + `/radar/entities/locations`; const headers = { Accept: "application/json" }; @@ -64100,10 +64097,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Get location - * Get the requested location information. A confidence level below \`5\` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this location). + * Get the requested location information. A confidence level below `5` indicates a low level of confidence in the traffic data - normally this happens because Cloudflare has a small amount of traffic from/to this location). */ radar$get$entities$location$by$alpha2: (params: Params$radar$get$entities$location$by$alpha2, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/entities/locations/\${encodeURIComponent(params.parameter.location)}\`; + const url = _baseUrl + `/radar/entities/locations/${encodeURIComponent(params.parameter.location)}`; const headers = { Accept: "application/json" }; @@ -64122,7 +64119,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of bot-generated traffic to genuine human traffic, as classified by Cloudflare. Visit https://developers.cloudflare.com/radar/concepts/bot-classes/ for more information. */ radar$get$http$summary$by$bot$class: (params: Params$radar$get$http$summary$by$bot$class, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/summary/bot_class\`; + const url = _baseUrl + `/radar/http/summary/bot_class`; const headers = { Accept: "application/json" }; @@ -64153,7 +64150,7 @@ export const createClient = (apiClient: ApiClient, * Percentage of Internet traffic generated by mobile, desktop, and other types of devices, over a given time period. */ radar$get$http$summary$by$device$type: (params: Params$radar$get$http$summary$by$device$type, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/summary/device_type\`; + const url = _baseUrl + `/radar/http/summary/device_type`; const headers = { Accept: "application/json" }; @@ -64184,7 +64181,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of traffic per HTTP protocol over a given time period. */ radar$get$http$summary$by$http$protocol: (params: Params$radar$get$http$summary$by$http$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/summary/http_protocol\`; + const url = _baseUrl + `/radar/http/summary/http_protocol`; const headers = { Accept: "application/json" }; @@ -64215,7 +64212,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of traffic per HTTP protocol version over a given time period. */ radar$get$http$summary$by$http$version: (params: Params$radar$get$http$summary$by$http$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/summary/http_version\`; + const url = _baseUrl + `/radar/http/summary/http_version`; const headers = { Accept: "application/json" }; @@ -64246,7 +64243,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of Internet traffic based on IP protocol versions, such as IPv4 and IPv6, over a given time period. */ radar$get$http$summary$by$ip$version: (params: Params$radar$get$http$summary$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/summary/ip_version\`; + const url = _baseUrl + `/radar/http/summary/ip_version`; const headers = { Accept: "application/json" }; @@ -64277,7 +64274,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of Internet traffic generated by different operating systems like Windows, macOS, Android, iOS, and others, over a given time period. */ radar$get$http$summary$by$operating$system: (params: Params$radar$get$http$summary$by$operating$system, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/summary/os\`; + const url = _baseUrl + `/radar/http/summary/os`; const headers = { Accept: "application/json" }; @@ -64308,7 +64305,7 @@ export const createClient = (apiClient: ApiClient, * Percentage distribution of traffic per TLS protocol version, over a given time period. */ radar$get$http$summary$by$tls$version: (params: Params$radar$get$http$summary$by$tls$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/summary/tls_version\`; + const url = _baseUrl + `/radar/http/summary/tls_version`; const headers = { Accept: "application/json" }; @@ -64339,7 +64336,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic classified as automated or human. Visit https://developers.cloudflare.com/radar/concepts/bot-classes/ for more information. */ radar$get$http$timeseries$group$by$bot$class: (params: Params$radar$get$http$timeseries$group$by$bot$class, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/bot_class\`; + const url = _baseUrl + `/radar/http/timeseries_groups/bot_class`; const headers = { Accept: "application/json" }; @@ -64371,7 +64368,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic of the top user agents. */ radar$get$http$timeseries$group$by$browsers: (params: Params$radar$get$http$timeseries$group$by$browsers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/browser\`; + const url = _baseUrl + `/radar/http/timeseries_groups/browser`; const headers = { Accept: "application/json" }; @@ -64405,7 +64402,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic of the top user agents aggregated in families. */ radar$get$http$timeseries$group$by$browser$families: (params: Params$radar$get$http$timeseries$group$by$browser$families, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/browser_family\`; + const url = _baseUrl + `/radar/http/timeseries_groups/browser_family`; const headers = { Accept: "application/json" }; @@ -64438,7 +64435,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic per device type. */ radar$get$http$timeseries$group$by$device$type: (params: Params$radar$get$http$timeseries$group$by$device$type, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/device_type\`; + const url = _baseUrl + `/radar/http/timeseries_groups/device_type`; const headers = { Accept: "application/json" }; @@ -64470,7 +64467,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic per HTTP protocol. */ radar$get$http$timeseries$group$by$http$protocol: (params: Params$radar$get$http$timeseries$group$by$http$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/http_protocol\`; + const url = _baseUrl + `/radar/http/timeseries_groups/http_protocol`; const headers = { Accept: "application/json" }; @@ -64502,7 +64499,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic per HTTP protocol version. */ radar$get$http$timeseries$group$by$http$version: (params: Params$radar$get$http$timeseries$group$by$http$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/http_version\`; + const url = _baseUrl + `/radar/http/timeseries_groups/http_version`; const headers = { Accept: "application/json" }; @@ -64534,7 +64531,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic per IP protocol version. */ radar$get$http$timeseries$group$by$ip$version: (params: Params$radar$get$http$timeseries$group$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/ip_version\`; + const url = _baseUrl + `/radar/http/timeseries_groups/ip_version`; const headers = { Accept: "application/json" }; @@ -64566,7 +64563,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic of the top operating systems. */ radar$get$http$timeseries$group$by$operating$system: (params: Params$radar$get$http$timeseries$group$by$operating$system, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/os\`; + const url = _baseUrl + `/radar/http/timeseries_groups/os`; const headers = { Accept: "application/json" }; @@ -64598,7 +64595,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series of the percentage distribution of traffic per TLS protocol version. */ radar$get$http$timeseries$group$by$tls$version: (params: Params$radar$get$http$timeseries$group$by$tls$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/timeseries_groups/tls_version\`; + const url = _baseUrl + `/radar/http/timeseries_groups/tls_version`; const headers = { Accept: "application/json" }; @@ -64630,7 +64627,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems by HTTP traffic. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$http$requests: (params: Params$radar$get$http$top$ases$by$http$requests, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases\`; + const url = _baseUrl + `/radar/http/top/ases`; const headers = { Accept: "application/json" }; @@ -64663,7 +64660,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by HTTP traffic, of the requested bot class. These two categories use Cloudflare's bot score - refer to [Bot Scores](https://developers.cloudflare.com/bots/concepts/bot-score) for more information. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$bot$class: (params: Params$radar$get$http$top$ases$by$bot$class, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases/bot_class/\${encodeURIComponent(params.parameter.bot_class)}\`; + const url = _baseUrl + `/radar/http/top/ases/bot_class/${encodeURIComponent(params.parameter.bot_class)}`; const headers = { Accept: "application/json" }; @@ -64695,7 +64692,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by HTTP traffic, of the requested device type. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$device$type: (params: Params$radar$get$http$top$ases$by$device$type, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases/device_type/\${encodeURIComponent(params.parameter.device_type)}\`; + const url = _baseUrl + `/radar/http/top/ases/device_type/${encodeURIComponent(params.parameter.device_type)}`; const headers = { Accept: "application/json" }; @@ -64727,7 +64724,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$http$protocol: (params: Params$radar$get$http$top$ases$by$http$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases/http_protocol/\${encodeURIComponent(params.parameter.http_protocol)}\`; + const url = _baseUrl + `/radar/http/top/ases/http_protocol/${encodeURIComponent(params.parameter.http_protocol)}`; const headers = { Accept: "application/json" }; @@ -64759,7 +64756,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by HTTP traffic, of the requested HTTP protocol version. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$http$version: (params: Params$radar$get$http$top$ases$by$http$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases/http_version/\${encodeURIComponent(params.parameter.http_version)}\`; + const url = _baseUrl + `/radar/http/top/ases/http_version/${encodeURIComponent(params.parameter.http_version)}`; const headers = { Accept: "application/json" }; @@ -64791,7 +64788,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems, by HTTP traffic, of the requested IP protocol version. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$ip$version: (params: Params$radar$get$http$top$ases$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const url = _baseUrl + `/radar/http/top/ases/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -64823,7 +64820,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems, by HTTP traffic, of the requested operating systems. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$operating$system: (params: Params$radar$get$http$top$ases$by$operating$system, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases/os/\${encodeURIComponent(params.parameter.os)}\`; + const url = _baseUrl + `/radar/http/top/ases/os/${encodeURIComponent(params.parameter.os)}`; const headers = { Accept: "application/json" }; @@ -64855,7 +64852,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS), by HTTP traffic, of the requested TLS protocol version. Values are a percentage out of the total traffic. */ radar$get$http$top$ases$by$tls$version: (params: Params$radar$get$http$top$ases$by$tls$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/ases/tls_version/\${encodeURIComponent(params.parameter.tls_version)}\`; + const url = _baseUrl + `/radar/http/top/ases/tls_version/${encodeURIComponent(params.parameter.tls_version)}`; const headers = { Accept: "application/json" }; @@ -64887,7 +64884,7 @@ export const createClient = (apiClient: ApiClient, * Get the top user agents aggregated in families by HTTP traffic. Values are a percentage out of the total traffic. */ radar$get$http$top$browser$families: (params: Params$radar$get$http$top$browser$families, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/browser_families\`; + const url = _baseUrl + `/radar/http/top/browser_families`; const headers = { Accept: "application/json" }; @@ -64920,7 +64917,7 @@ export const createClient = (apiClient: ApiClient, * Get the top user agents by HTTP traffic. Values are a percentage out of the total traffic. */ radar$get$http$top$browsers: (params: Params$radar$get$http$top$browsers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/browsers\`; + const url = _baseUrl + `/radar/http/top/browsers`; const headers = { Accept: "application/json" }; @@ -64953,7 +64950,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by HTTP traffic. Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$http$requests: (params: Params$radar$get$http$top$locations$by$http$requests, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations\`; + const url = _baseUrl + `/radar/http/top/locations`; const headers = { Accept: "application/json" }; @@ -64986,7 +64983,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by HTTP traffic, of the requested bot class. These two categories use Cloudflare's bot score - refer to [Bot scores])https://developers.cloudflare.com/bots/concepts/bot-score). Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$bot$class: (params: Params$radar$get$http$top$locations$by$bot$class, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations/bot_class/\${encodeURIComponent(params.parameter.bot_class)}\`; + const url = _baseUrl + `/radar/http/top/locations/bot_class/${encodeURIComponent(params.parameter.bot_class)}`; const headers = { Accept: "application/json" }; @@ -65018,7 +65015,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by HTTP traffic, of the requested device type. Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$device$type: (params: Params$radar$get$http$top$locations$by$device$type, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations/device_type/\${encodeURIComponent(params.parameter.device_type)}\`; + const url = _baseUrl + `/radar/http/top/locations/device_type/${encodeURIComponent(params.parameter.device_type)}`; const headers = { Accept: "application/json" }; @@ -65050,7 +65047,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$http$protocol: (params: Params$radar$get$http$top$locations$by$http$protocol, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations/http_protocol/\${encodeURIComponent(params.parameter.http_protocol)}\`; + const url = _baseUrl + `/radar/http/top/locations/http_protocol/${encodeURIComponent(params.parameter.http_protocol)}`; const headers = { Accept: "application/json" }; @@ -65082,7 +65079,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by HTTP traffic, of the requested HTTP protocol. Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$http$version: (params: Params$radar$get$http$top$locations$by$http$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations/http_version/\${encodeURIComponent(params.parameter.http_version)}\`; + const url = _baseUrl + `/radar/http/top/locations/http_version/${encodeURIComponent(params.parameter.http_version)}`; const headers = { Accept: "application/json" }; @@ -65114,7 +65111,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by HTTP traffic, of the requested IP protocol version. Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$ip$version: (params: Params$radar$get$http$top$locations$by$ip$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations/ip_version/\${encodeURIComponent(params.parameter.ip_version)}\`; + const url = _baseUrl + `/radar/http/top/locations/ip_version/${encodeURIComponent(params.parameter.ip_version)}`; const headers = { Accept: "application/json" }; @@ -65146,7 +65143,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by HTTP traffic, of the requested operating systems. Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$operating$system: (params: Params$radar$get$http$top$locations$by$operating$system, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations/os/\${encodeURIComponent(params.parameter.os)}\`; + const url = _baseUrl + `/radar/http/top/locations/os/${encodeURIComponent(params.parameter.os)}`; const headers = { Accept: "application/json" }; @@ -65178,7 +65175,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations, by HTTP traffic, of the requested TLS protocol version. Values are a percentage out of the total traffic. */ radar$get$http$top$locations$by$tls$version: (params: Params$radar$get$http$top$locations$by$tls$version, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/http/top/locations/tls_version/\${encodeURIComponent(params.parameter.tls_version)}\`; + const url = _baseUrl + `/radar/http/top/locations/tls_version/${encodeURIComponent(params.parameter.tls_version)}`; const headers = { Accept: "application/json" }; @@ -65210,7 +65207,7 @@ export const createClient = (apiClient: ApiClient, * Get network traffic change over time. Visit https://en.wikipedia.org/wiki/NetFlow for more information on NetFlows. */ radar$get$netflows$timeseries: (params: Params$radar$get$netflows$timeseries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/netflows/timeseries\`; + const url = _baseUrl + `/radar/netflows/timeseries`; const headers = { Accept: "application/json" }; @@ -65238,7 +65235,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems (AS) by network traffic (NetFlows) over a given time period. Visit https://en.wikipedia.org/wiki/NetFlow for more information. */ radar$get$netflows$top$ases: (params: Params$radar$get$netflows$top$ases, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/netflows/top/ases\`; + const url = _baseUrl + `/radar/netflows/top/ases`; const headers = { Accept: "application/json" }; @@ -65264,7 +65261,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by network traffic (NetFlows) over a given time period. Visit https://en.wikipedia.org/wiki/NetFlow for more information. */ radar$get$netflows$top$locations: (params: Params$radar$get$netflows$top$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/netflows/top/locations\`; + const url = _baseUrl + `/radar/netflows/top/locations`; const headers = { Accept: "application/json" }; @@ -65290,7 +65287,7 @@ export const createClient = (apiClient: ApiClient, * Get a summary (percentiles) of bandwidth, latency or DNS response time from the Radar Internet Quality Index (IQI). */ radar$get$quality$index$summary: (params: Params$radar$get$quality$index$summary, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/quality/iqi/summary\`; + const url = _baseUrl + `/radar/quality/iqi/summary`; const headers = { Accept: "application/json" }; @@ -65317,7 +65314,7 @@ export const createClient = (apiClient: ApiClient, * Get a time series (percentiles) of bandwidth, latency or DNS response time from the Radar Internet Quality Index (IQI). */ radar$get$quality$index$timeseries$group: (params: Params$radar$get$quality$index$timeseries$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/quality/iqi/timeseries_groups\`; + const url = _baseUrl + `/radar/quality/iqi/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -65346,7 +65343,7 @@ export const createClient = (apiClient: ApiClient, * Get an histogram from the previous 90 days of Cloudflare Speed Test data, split into fixed bandwidth (Mbps), latency (ms) or jitter (ms) buckets. */ radar$get$quality$speed$histogram: (params: Params$radar$get$quality$speed$histogram, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/quality/speed/histogram\`; + const url = _baseUrl + `/radar/quality/speed/histogram`; const headers = { Accept: "application/json" }; @@ -65371,7 +65368,7 @@ export const createClient = (apiClient: ApiClient, * Get a summary of bandwidth, latency, jitter and packet loss, from the previous 90 days of Cloudflare Speed Test data. */ radar$get$quality$speed$summary: (params: Params$radar$get$quality$speed$summary, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/quality/speed/summary\`; + const url = _baseUrl + `/radar/quality/speed/summary`; const headers = { Accept: "application/json" }; @@ -65394,7 +65391,7 @@ export const createClient = (apiClient: ApiClient, * Get the top autonomous systems by bandwidth, latency, jitter or packet loss, from the previous 90 days of Cloudflare Speed Test data. */ radar$get$quality$speed$top$ases: (params: Params$radar$get$quality$speed$top$ases, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/quality/speed/top/ases\`; + const url = _baseUrl + `/radar/quality/speed/top/ases`; const headers = { Accept: "application/json" }; @@ -65420,7 +65417,7 @@ export const createClient = (apiClient: ApiClient, * Get the top locations by bandwidth, latency, jitter or packet loss, from the previous 90 days of Cloudflare Speed Test data. */ radar$get$quality$speed$top$locations: (params: Params$radar$get$quality$speed$top$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/quality/speed/top/locations\`; + const url = _baseUrl + `/radar/quality/speed/top/locations`; const headers = { Accept: "application/json" }; @@ -65448,7 +65445,7 @@ export const createClient = (apiClient: ApiClient, * like top 200 thousand, top one million, etc.. These are available through Radar datasets endpoints. */ radar$get$ranking$domain$details: (params: Params$radar$get$ranking$domain$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/ranking/domain/\${encodeURIComponent(params.parameter.domain)}\`; + const url = _baseUrl + `/radar/ranking/domain/${encodeURIComponent(params.parameter.domain)}`; const headers = { Accept: "application/json" }; @@ -65471,7 +65468,7 @@ export const createClient = (apiClient: ApiClient, * Gets Domains Rank updates change over time. Raw values are returned. */ radar$get$ranking$domain$timeseries: (params: Params$radar$get$ranking$domain$timeseries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/ranking/timeseries_groups\`; + const url = _baseUrl + `/radar/ranking/timeseries_groups`; const headers = { Accept: "application/json" }; @@ -65498,7 +65495,7 @@ export const createClient = (apiClient: ApiClient, * Get top or trending domains based on their rank. Popular domains are domains of broad appeal based on how people use the Internet. Trending domains are domains that are generating a surge in interest. For more information on top domains, see https://blog.cloudflare.com/radar-domain-rankings/. */ radar$get$ranking$top$domains: (params: Params$radar$get$ranking$top$domains, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/ranking/top\`; + const url = _baseUrl + `/radar/ranking/top`; const headers = { Accept: "application/json" }; @@ -65522,7 +65519,7 @@ export const createClient = (apiClient: ApiClient, * Lets you search for locations, autonomous systems (AS) and reports. */ radar$get$search$global: (params: Params$radar$get$search$global, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/search/global\`; + const url = _baseUrl + `/radar/search/global`; const headers = { Accept: "application/json" }; @@ -65549,7 +65546,7 @@ export const createClient = (apiClient: ApiClient, * */ radar$get$traffic$anomalies: (params: Params$radar$get$traffic$anomalies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/traffic_anomalies\`; + const url = _baseUrl + `/radar/traffic_anomalies`; const headers = { Accept: "application/json" }; @@ -65579,7 +65576,7 @@ export const createClient = (apiClient: ApiClient, * */ radar$get$traffic$anomalies$top: (params: Params$radar$get$traffic$anomalies$top, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/traffic_anomalies/locations\`; + const url = _baseUrl + `/radar/traffic_anomalies/locations`; const headers = { Accept: "application/json" }; @@ -65603,7 +65600,7 @@ export const createClient = (apiClient: ApiClient, * Get top verified bots by HTTP requests, with owner and category. */ radar$get$verified$bots$top$by$http$requests: (params: Params$radar$get$verified$bots$top$by$http$requests, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/verified_bots/top/bots\`; + const url = _baseUrl + `/radar/verified_bots/top/bots`; const headers = { Accept: "application/json" }; @@ -65629,7 +65626,7 @@ export const createClient = (apiClient: ApiClient, * Get top verified bot categories by HTTP requests, along with their corresponding percentage, over the total verified bot HTTP requests. */ radar$get$verified$bots$top$categories$by$http$requests: (params: Params$radar$get$verified$bots$top$categories$by$http$requests, option?: RequestOption): Promise => { - const url = _baseUrl + \`/radar/verified_bots/top/categories\`; + const url = _baseUrl + `/radar/verified_bots/top/categories`; const headers = { Accept: "application/json" }; @@ -65652,7 +65649,7 @@ export const createClient = (apiClient: ApiClient, }, /** User Details */ user$user$details: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/user\`; + const url = _baseUrl + `/user`; const headers = { Accept: "application/json" }; @@ -65667,7 +65664,7 @@ export const createClient = (apiClient: ApiClient, * Edit part of your user details. */ user$edit$user: (params: Params$user$edit$user, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user\`; + const url = _baseUrl + `/user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65684,7 +65681,7 @@ export const createClient = (apiClient: ApiClient, * Gets a list of audit logs for a user account. Can be filtered by who made the change, on which zone, and the timeframe of the change. */ audit$logs$get$user$audit$logs: (params: Params$audit$logs$get$user$audit$logs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/audit_logs\`; + const url = _baseUrl + `/user/audit_logs`; const headers = { Accept: "application/json" }; @@ -65714,7 +65711,7 @@ export const createClient = (apiClient: ApiClient, * Accesses your billing history object. */ user$billing$history$$$deprecated$$billing$history$details: (params: Params$user$billing$history$$$deprecated$$billing$history$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/billing/history\`; + const url = _baseUrl + `/user/billing/history`; const headers = { Accept: "application/json" }; @@ -65739,7 +65736,7 @@ export const createClient = (apiClient: ApiClient, * Accesses your billing profile object. */ user$billing$profile$$$deprecated$$billing$profile$details: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/billing/profile\`; + const url = _baseUrl + `/user/billing/profile`; const headers = { Accept: "application/json" }; @@ -65754,7 +65751,7 @@ export const createClient = (apiClient: ApiClient, * Fetches IP Access rules of the user. You can filter the results using several optional parameters. */ ip$access$rules$for$a$user$list$ip$access$rules: (params: Params$ip$access$rules$for$a$user$list$ip$access$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/firewall/access_rules/rules\`; + const url = _baseUrl + `/user/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -65780,7 +65777,7 @@ export const createClient = (apiClient: ApiClient, * Note: To create an IP Access rule that applies to a specific zone, refer to the [IP Access rules for a zone](#ip-access-rules-for-a-zone) endpoints. */ ip$access$rules$for$a$user$create$an$ip$access$rule: (params: Params$ip$access$rules$for$a$user$create$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/firewall/access_rules/rules\`; + const url = _baseUrl + `/user/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65799,7 +65796,7 @@ export const createClient = (apiClient: ApiClient, * Note: Deleting a user-level rule will affect all zones owned by the user. */ ip$access$rules$for$a$user$delete$an$ip$access$rule: (params: Params$ip$access$rules$for$a$user$delete$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65811,10 +65808,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update an IP Access rule - * Updates an IP Access rule defined at the user level. You can only update the rule action (\`mode\` parameter) and notes. + * Updates an IP Access rule defined at the user level. You can only update the rule action (`mode` parameter) and notes. */ ip$access$rules$for$a$user$update$an$ip$access$rule: (params: Params$ip$access$rules$for$a$user$update$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65831,7 +65828,7 @@ export const createClient = (apiClient: ApiClient, * Lists all invitations associated with my user. */ user$$s$invites$list$invitations: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/invites\`; + const url = _baseUrl + `/user/invites`; const headers = { Accept: "application/json" }; @@ -65846,7 +65843,7 @@ export const createClient = (apiClient: ApiClient, * Gets the details of an invitation. */ user$$s$invites$invitation$details: (params: Params$user$$s$invites$invitation$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65861,7 +65858,7 @@ export const createClient = (apiClient: ApiClient, * Responds to an invitation. */ user$$s$invites$respond$to$invitation: (params: Params$user$$s$invites$respond$to$invitation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/invites/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/invites/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65878,7 +65875,7 @@ export const createClient = (apiClient: ApiClient, * List configured monitors for a user. */ load$balancer$monitors$list$monitors: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors\`; + const url = _baseUrl + `/user/load_balancers/monitors`; const headers = { Accept: "application/json" }; @@ -65893,7 +65890,7 @@ export const createClient = (apiClient: ApiClient, * Create a configured monitor. */ load$balancer$monitors$create$monitor: (params: Params$load$balancer$monitors$create$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors\`; + const url = _baseUrl + `/user/load_balancers/monitors`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65910,7 +65907,7 @@ export const createClient = (apiClient: ApiClient, * List a single configured monitor for a user. */ load$balancer$monitors$monitor$details: (params: Params$load$balancer$monitors$monitor$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65925,7 +65922,7 @@ export const createClient = (apiClient: ApiClient, * Modify a configured monitor. */ load$balancer$monitors$update$monitor: (params: Params$load$balancer$monitors$update$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65942,7 +65939,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured monitor. */ load$balancer$monitors$delete$monitor: (params: Params$load$balancer$monitors$delete$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -65957,7 +65954,7 @@ export const createClient = (apiClient: ApiClient, * Apply changes to an existing monitor, overwriting the supplied properties. */ load$balancer$monitors$patch$monitor: (params: Params$load$balancer$monitors$patch$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65974,7 +65971,7 @@ export const createClient = (apiClient: ApiClient, * Preview pools using the specified monitor with provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ load$balancer$monitors$preview$monitor: (params: Params$load$balancer$monitors$preview$monitor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = _baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -65991,7 +65988,7 @@ export const createClient = (apiClient: ApiClient, * Get the list of resources that reference the provided monitor. */ load$balancer$monitors$list$monitor$references: (params: Params$load$balancer$monitors$list$monitor$references, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/monitors/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = _baseUrl + `/user/load_balancers/monitors/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -66006,7 +66003,7 @@ export const createClient = (apiClient: ApiClient, * List configured pools. */ load$balancer$pools$list$pools: (params: Params$load$balancer$pools$list$pools, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools\`; + const url = _baseUrl + `/user/load_balancers/pools`; const headers = { Accept: "application/json" }; @@ -66025,7 +66022,7 @@ export const createClient = (apiClient: ApiClient, * Create a new pool. */ load$balancer$pools$create$pool: (params: Params$load$balancer$pools$create$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools\`; + const url = _baseUrl + `/user/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66039,10 +66036,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Patch Pools - * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending \`name\`. Returns the list of affected pools. Supports the standard pagination query parameters, either \`limit\`/\`offset\` or \`per_page\`/\`page\`. + * Apply changes to a number of existing pools, overwriting the supplied properties. Pools are ordered by ascending `name`. Returns the list of affected pools. Supports the standard pagination query parameters, either `limit`/`offset` or `per_page`/`page`. */ load$balancer$pools$patch$pools: (params: Params$load$balancer$pools$patch$pools, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools\`; + const url = _baseUrl + `/user/load_balancers/pools`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66059,7 +66056,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single configured pool. */ load$balancer$pools$pool$details: (params: Params$load$balancer$pools$pool$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66074,7 +66071,7 @@ export const createClient = (apiClient: ApiClient, * Modify a configured pool. */ load$balancer$pools$update$pool: (params: Params$load$balancer$pools$update$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66091,7 +66088,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured pool. */ load$balancer$pools$delete$pool: (params: Params$load$balancer$pools$delete$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66106,7 +66103,7 @@ export const createClient = (apiClient: ApiClient, * Apply changes to an existing pool, overwriting the supplied properties. */ load$balancer$pools$patch$pool: (params: Params$load$balancer$pools$patch$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66123,7 +66120,7 @@ export const createClient = (apiClient: ApiClient, * Fetch the latest pool health status for a single pool. */ load$balancer$pools$pool$health$details: (params: Params$load$balancer$pools$pool$health$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/health\`; + const url = _baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/health`; const headers = { Accept: "application/json" }; @@ -66138,7 +66135,7 @@ export const createClient = (apiClient: ApiClient, * Preview pool health using provided monitor details. The returned preview_id can be used in the preview endpoint to retrieve the results. */ load$balancer$pools$preview$pool: (params: Params$load$balancer$pools$preview$pool, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/preview\`; + const url = _baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66155,7 +66152,7 @@ export const createClient = (apiClient: ApiClient, * Get the list of resources that reference the provided pool. */ load$balancer$pools$list$pool$references: (params: Params$load$balancer$pools$list$pool$references, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/pools/\${encodeURIComponent(params.parameter.identifier)}/references\`; + const url = _baseUrl + `/user/load_balancers/pools/${encodeURIComponent(params.parameter.identifier)}/references`; const headers = { Accept: "application/json" }; @@ -66170,7 +66167,7 @@ export const createClient = (apiClient: ApiClient, * Get the result of a previous preview operation using the provided preview_id. */ load$balancer$monitors$preview$result: (params: Params$load$balancer$monitors$preview$result, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancers/preview/\${encodeURIComponent(params.parameter.preview_id)}\`; + const url = _baseUrl + `/user/load_balancers/preview/${encodeURIComponent(params.parameter.preview_id)}`; const headers = { Accept: "application/json" }; @@ -66185,7 +66182,7 @@ export const createClient = (apiClient: ApiClient, * List origin health changes. */ load$balancer$healthcheck$events$list$healthcheck$events: (params: Params$load$balancer$healthcheck$events$list$healthcheck$events, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/load_balancing_analytics/events\`; + const url = _baseUrl + `/user/load_balancing_analytics/events`; const headers = { Accept: "application/json" }; @@ -66210,7 +66207,7 @@ export const createClient = (apiClient: ApiClient, * Lists organizations the user is associated with. */ user$$s$organizations$list$organizations: (params: Params$user$$s$organizations$list$organizations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/organizations\`; + const url = _baseUrl + `/user/organizations`; const headers = { Accept: "application/json" }; @@ -66235,7 +66232,7 @@ export const createClient = (apiClient: ApiClient, * Gets a specific organization the user is associated with. */ user$$s$organizations$organization$details: (params: Params$user$$s$organizations$organization$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66250,7 +66247,7 @@ export const createClient = (apiClient: ApiClient, * Removes association to an organization. */ user$$s$organizations$leave$organization: (params: Params$user$$s$organizations$leave$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/organizations/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/organizations/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66265,7 +66262,7 @@ export const createClient = (apiClient: ApiClient, * Lists all of a user's subscriptions. */ user$subscription$get$user$subscriptions: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/subscriptions\`; + const url = _baseUrl + `/user/subscriptions`; const headers = { Accept: "application/json" }; @@ -66280,7 +66277,7 @@ export const createClient = (apiClient: ApiClient, * Updates a user's subscriptions. */ user$subscription$update$user$subscription: (params: Params$user$subscription$update$user$subscription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/subscriptions/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/subscriptions/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66297,7 +66294,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a user's subscription. */ user$subscription$delete$user$subscription: (params: Params$user$subscription$delete$user$subscription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/subscriptions/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/subscriptions/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66312,7 +66309,7 @@ export const createClient = (apiClient: ApiClient, * List all access tokens you created. */ user$api$tokens$list$tokens: (params: Params$user$api$tokens$list$tokens, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens\`; + const url = _baseUrl + `/user/tokens`; const headers = { Accept: "application/json" }; @@ -66333,7 +66330,7 @@ export const createClient = (apiClient: ApiClient, * Create a new access token. */ user$api$tokens$create$token: (params: Params$user$api$tokens$create$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens\`; + const url = _baseUrl + `/user/tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66350,7 +66347,7 @@ export const createClient = (apiClient: ApiClient, * Get information about a specific token. */ user$api$tokens$token$details: (params: Params$user$api$tokens$token$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66365,7 +66362,7 @@ export const createClient = (apiClient: ApiClient, * Update an existing token. */ user$api$tokens$update$token: (params: Params$user$api$tokens$update$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66382,7 +66379,7 @@ export const createClient = (apiClient: ApiClient, * Destroy a token. */ user$api$tokens$delete$token: (params: Params$user$api$tokens$delete$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -66397,7 +66394,7 @@ export const createClient = (apiClient: ApiClient, * Roll the token secret. */ user$api$tokens$roll$token: (params: Params$user$api$tokens$roll$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens/\${encodeURIComponent(params.parameter.identifier)}/value\`; + const url = _baseUrl + `/user/tokens/${encodeURIComponent(params.parameter.identifier)}/value`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66414,7 +66411,7 @@ export const createClient = (apiClient: ApiClient, * Find all available permission groups. */ permission$groups$list$permission$groups: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens/permission_groups\`; + const url = _baseUrl + `/user/tokens/permission_groups`; const headers = { Accept: "application/json" }; @@ -66429,7 +66426,7 @@ export const createClient = (apiClient: ApiClient, * Test whether a token works. */ user$api$tokens$verify$token: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/user/tokens/verify\`; + const url = _baseUrl + `/user/tokens/verify`; const headers = { Accept: "application/json" }; @@ -66444,7 +66441,7 @@ export const createClient = (apiClient: ApiClient, * Lists, searches, sorts, and filters your zones. */ zones$get: (params: Params$zones$get, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones\`; + const url = _baseUrl + `/zones`; const headers = { Accept: "application/json" }; @@ -66468,7 +66465,7 @@ export const createClient = (apiClient: ApiClient, }, /** Create Zone */ zones$post: (params: Params$zones$post, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones\`; + const url = _baseUrl + `/zones`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66485,7 +66482,7 @@ export const createClient = (apiClient: ApiClient, * List all Access Applications in a zone. */ zone$level$access$applications$list$access$applications: (params: Params$zone$level$access$applications$list$access$applications, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { Accept: "application/json" }; @@ -66500,7 +66497,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new application to Access. */ zone$level$access$applications$add$a$bookmark$application: (params: Params$zone$level$access$applications$add$a$bookmark$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66517,7 +66514,7 @@ export const createClient = (apiClient: ApiClient, * Fetches information about an Access application. */ zone$level$access$applications$get$an$access$application: (params: Params$zone$level$access$applications$get$an$access$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -66532,7 +66529,7 @@ export const createClient = (apiClient: ApiClient, * Updates an Access application. */ zone$level$access$applications$update$a$bookmark$application: (params: Params$zone$level$access$applications$update$a$bookmark$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66549,7 +66546,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an application from Access. */ zone$level$access$applications$delete$an$access$application: (params: Params$zone$level$access$applications$delete$an$access$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -66564,7 +66561,7 @@ export const createClient = (apiClient: ApiClient, * Revokes all tokens issued for an application. */ zone$level$access$applications$revoke$service$tokens: (params: Params$zone$level$access$applications$revoke$service$tokens, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/revoke_tokens\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/revoke_tokens`; const headers = { Accept: "application/json" }; @@ -66579,7 +66576,7 @@ export const createClient = (apiClient: ApiClient, * Tests if a specific user has permission to access an application. */ zone$level$access$applications$test$access$policies: (params: Params$zone$level$access$applications$test$access$policies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.app_id)}/user_policy_checks\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.app_id)}/user_policy_checks`; const headers = { Accept: "application/json" }; @@ -66594,7 +66591,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a short-lived certificate CA and its public key. */ zone$level$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca: (params: Params$zone$level$access$short$lived$certificate$c$as$get$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66609,7 +66606,7 @@ export const createClient = (apiClient: ApiClient, * Generates a new short-lived certificate CA and public key. */ zone$level$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca: (params: Params$zone$level$access$short$lived$certificate$c$as$create$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66624,7 +66621,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a short-lived certificate CA. */ zone$level$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca: (params: Params$zone$level$access$short$lived$certificate$c$as$delete$a$short$lived$certificate$ca, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/ca\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/ca`; const headers = { Accept: "application/json" }; @@ -66639,7 +66636,7 @@ export const createClient = (apiClient: ApiClient, * Lists Access policies configured for an application. */ zone$level$access$policies$list$access$policies: (params: Params$zone$level$access$policies$list$access$policies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { Accept: "application/json" }; @@ -66654,7 +66651,7 @@ export const createClient = (apiClient: ApiClient, * Create a new Access policy for an application. */ zone$level$access$policies$create$an$access$policy: (params: Params$zone$level$access$policies$create$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid)}/policies\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid)}/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66671,7 +66668,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Access policy. */ zone$level$access$policies$get$an$access$policy: (params: Params$zone$level$access$policies$get$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66686,7 +66683,7 @@ export const createClient = (apiClient: ApiClient, * Update a configured Access policy. */ zone$level$access$policies$update$an$access$policy: (params: Params$zone$level$access$policies$update$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66703,7 +66700,7 @@ export const createClient = (apiClient: ApiClient, * Delete an Access policy. */ zone$level$access$policies$delete$an$access$policy: (params: Params$zone$level$access$policies$delete$an$access$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/\${encodeURIComponent(params.parameter.uuid1)}/policies/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/${encodeURIComponent(params.parameter.uuid1)}/policies/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66718,7 +66715,7 @@ export const createClient = (apiClient: ApiClient, * Lists short-lived certificate CAs and their public keys. */ zone$level$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as: (params: Params$zone$level$access$short$lived$certificate$c$as$list$short$lived$certificate$c$as, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/apps/ca\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/apps/ca`; const headers = { Accept: "application/json" }; @@ -66733,7 +66730,7 @@ export const createClient = (apiClient: ApiClient, * Lists all mTLS certificates. */ zone$level$access$mtls$authentication$list$mtls$certificates: (params: Params$zone$level$access$mtls$authentication$list$mtls$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { Accept: "application/json" }; @@ -66748,7 +66745,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new mTLS root certificate to Access. */ zone$level$access$mtls$authentication$add$an$mtls$certificate: (params: Params$zone$level$access$mtls$authentication$add$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66765,7 +66762,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single mTLS certificate. */ zone$level$access$mtls$authentication$get$an$mtls$certificate: (params: Params$zone$level$access$mtls$authentication$get$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66780,7 +66777,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured mTLS certificate. */ zone$level$access$mtls$authentication$update$an$mtls$certificate: (params: Params$zone$level$access$mtls$authentication$update$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66797,7 +66794,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an mTLS certificate. */ zone$level$access$mtls$authentication$delete$an$mtls$certificate: (params: Params$zone$level$access$mtls$authentication$delete$an$mtls$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66812,7 +66809,7 @@ export const createClient = (apiClient: ApiClient, * List all mTLS hostname settings for this zone. */ zone$level$access$mtls$authentication$list$mtls$certificates$hostname$settings: (params: Params$zone$level$access$mtls$authentication$list$mtls$certificates$hostname$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { Accept: "application/json" }; @@ -66827,7 +66824,7 @@ export const createClient = (apiClient: ApiClient, * Updates an mTLS certificate's hostname settings. */ zone$level$access$mtls$authentication$update$an$mtls$certificate$settings: (params: Params$zone$level$access$mtls$authentication$update$an$mtls$certificate$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/certificates/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66844,7 +66841,7 @@ export const createClient = (apiClient: ApiClient, * Lists all Access groups. */ zone$level$access$groups$list$access$groups: (params: Params$zone$level$access$groups$list$access$groups, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { Accept: "application/json" }; @@ -66859,7 +66856,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Access group. */ zone$level$access$groups$create$an$access$group: (params: Params$zone$level$access$groups$create$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66876,7 +66873,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single Access group. */ zone$level$access$groups$get$an$access$group: (params: Params$zone$level$access$groups$get$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66891,7 +66888,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured Access group. */ zone$level$access$groups$update$an$access$group: (params: Params$zone$level$access$groups$update$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66908,7 +66905,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an Access group. */ zone$level$access$groups$delete$an$access$group: (params: Params$zone$level$access$groups$delete$an$access$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/groups/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/groups/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66923,7 +66920,7 @@ export const createClient = (apiClient: ApiClient, * Lists all configured identity providers. */ zone$level$access$identity$providers$list$access$identity$providers: (params: Params$zone$level$access$identity$providers$list$access$identity$providers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { Accept: "application/json" }; @@ -66938,7 +66935,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new identity provider to Access. */ zone$level$access$identity$providers$add$an$access$identity$provider: (params: Params$zone$level$access$identity$providers$add$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66955,7 +66952,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a configured identity provider. */ zone$level$access$identity$providers$get$an$access$identity$provider: (params: Params$zone$level$access$identity$providers$get$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -66970,7 +66967,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured identity provider. */ zone$level$access$identity$providers$update$an$access$identity$provider: (params: Params$zone$level$access$identity$providers$update$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -66987,7 +66984,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an identity provider from Access. */ zone$level$access$identity$providers$delete$an$access$identity$provider: (params: Params$zone$level$access$identity$providers$delete$an$access$identity$provider, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/identity_providers/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -67002,7 +66999,7 @@ export const createClient = (apiClient: ApiClient, * Returns the configuration for your Zero Trust organization. */ zone$level$zero$trust$organization$get$your$zero$trust$organization: (params: Params$zone$level$zero$trust$organization$get$your$zero$trust$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { Accept: "application/json" }; @@ -67017,7 +67014,7 @@ export const createClient = (apiClient: ApiClient, * Updates the configuration for your Zero Trust organization. */ zone$level$zero$trust$organization$update$your$zero$trust$organization: (params: Params$zone$level$zero$trust$organization$update$your$zero$trust$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67034,7 +67031,7 @@ export const createClient = (apiClient: ApiClient, * Sets up a Zero Trust organization for your account. */ zone$level$zero$trust$organization$create$your$zero$trust$organization: (params: Params$zone$level$zero$trust$organization$create$your$zero$trust$organization, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67051,7 +67048,7 @@ export const createClient = (apiClient: ApiClient, * Revokes a user's access across all applications. */ zone$level$zero$trust$organization$revoke$all$access$tokens$for$a$user: (params: Params$zone$level$zero$trust$organization$revoke$all$access$tokens$for$a$user, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/organizations/revoke_user`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67068,7 +67065,7 @@ export const createClient = (apiClient: ApiClient, * Lists all service tokens. */ zone$level$access$service$tokens$list$service$tokens: (params: Params$zone$level$access$service$tokens$list$service$tokens, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { Accept: "application/json" }; @@ -67083,7 +67080,7 @@ export const createClient = (apiClient: ApiClient, * Generates a new service token. **Note:** This is the only time you can get the Client Secret. If you lose the Client Secret, you will have to create a new service token. */ zone$level$access$service$tokens$create$a$service$token: (params: Params$zone$level$access$service$tokens$create$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67100,7 +67097,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured service token. */ zone$level$access$service$tokens$update$a$service$token: (params: Params$zone$level$access$service$tokens$update$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67117,7 +67114,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a service token. */ zone$level$access$service$tokens$delete$a$service$token: (params: Params$zone$level$access$service$tokens$delete$a$service$token, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/\${encodeURIComponent(params.parameter.uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/access/service_tokens/${encodeURIComponent(params.parameter.uuid)}`; const headers = { Accept: "application/json" }; @@ -67134,7 +67131,7 @@ export const createClient = (apiClient: ApiClient, * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ dns$analytics$table: (params: Params$dns$analytics$table, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report`; const headers = { Accept: "application/json" }; @@ -67161,7 +67158,7 @@ export const createClient = (apiClient: ApiClient, * See [Analytics API properties](https://developers.cloudflare.com/dns/reference/analytics-api-properties/) for detailed information about the available query parameters. */ dns$analytics$by$time: (params: Params$dns$analytics$by$time, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/dns_analytics/report/bytime`; const headers = { Accept: "application/json" }; @@ -67187,7 +67184,7 @@ export const createClient = (apiClient: ApiClient, * List configured load balancers. */ load$balancers$list$load$balancers: (params: Params$load$balancers$list$load$balancers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/load_balancers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/load_balancers`; const headers = { Accept: "application/json" }; @@ -67202,7 +67199,7 @@ export const createClient = (apiClient: ApiClient, * Create a new load balancer. */ load$balancers$create$load$balancer: (params: Params$load$balancers$create$load$balancer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/load_balancers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/load_balancers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67232,7 +67229,7 @@ export const createClient = (apiClient: ApiClient, * **NB:** Cache-Tag, host, and prefix purging each have a rate limit of 30,000 purge API calls in every 24 hour period. You may purge up to 30 tags, hosts, or prefixes in one API call. This rate limit can be raised for customers who need to purge at higher volume. */ zone$purge: (params: Params$zone$purge, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/purge_cache\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/purge_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67249,7 +67246,7 @@ export const createClient = (apiClient: ApiClient, * Returns the set of hostnames, the signature algorithm, and the expiration date of the certificate. */ analyze$certificate$analyze$certificate: (params: Params$analyze$certificate$analyze$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/ssl/analyze\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/ssl/analyze`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67266,7 +67263,7 @@ export const createClient = (apiClient: ApiClient, * Lists zone subscription details. */ zone$subscription$zone$subscription$details: (params: Params$zone$subscription$zone$subscription$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { Accept: "application/json" }; @@ -67281,7 +67278,7 @@ export const createClient = (apiClient: ApiClient, * Updates zone subscriptions, either plan or add-ons. */ zone$subscription$update$zone$subscription: (params: Params$zone$subscription$update$zone$subscription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67298,7 +67295,7 @@ export const createClient = (apiClient: ApiClient, * Create a zone subscription, either plan or add-ons. */ zone$subscription$create$zone$subscription: (params: Params$zone$subscription$create$zone$subscription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier)}/subscription\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier)}/subscription`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67315,7 +67312,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single configured load balancer. */ load$balancers$load$balancer$details: (params: Params$load$balancers$load$balancer$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -67330,7 +67327,7 @@ export const createClient = (apiClient: ApiClient, * Update a configured load balancer. */ load$balancers$update$load$balancer: (params: Params$load$balancers$update$load$balancer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67347,7 +67344,7 @@ export const createClient = (apiClient: ApiClient, * Delete a configured load balancer. */ load$balancers$delete$load$balancer: (params: Params$load$balancers$delete$load$balancer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -67362,7 +67359,7 @@ export const createClient = (apiClient: ApiClient, * Apply changes to an existing load balancer, overwriting the supplied properties. */ load$balancers$patch$load$balancer: (params: Params$load$balancers$patch$load$balancer, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.identifier1)}/load_balancers/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.identifier1)}/load_balancers/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67376,7 +67373,7 @@ export const createClient = (apiClient: ApiClient, }, /** Zone Details */ zones$0$get: (params: Params$zones$0$get, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { Accept: "application/json" }; @@ -67391,7 +67388,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing zone. */ zones$0$delete: (params: Params$zones$0$delete, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { Accept: "application/json" }; @@ -67406,7 +67403,7 @@ export const createClient = (apiClient: ApiClient, * Edits a zone. Only one zone property can be changed at a time. */ zones$0$patch: (params: Params$zones$0$patch, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67425,7 +67422,7 @@ export const createClient = (apiClient: ApiClient, * Zones. */ put$zones$zone_id$activation_check: (params: Params$put$zones$zone_id$activation_check, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/activation_check\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/activation_check`; const headers = { Accept: "application/json" }; @@ -67437,7 +67434,7 @@ export const createClient = (apiClient: ApiClient, }, /** Argo Analytics for a zone */ argo$analytics$for$zone$argo$analytics$for$a$zone: (params: Params$argo$analytics$for$zone$argo$analytics$for$a$zone, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/analytics/latency\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/analytics/latency`; const headers = { Accept: "application/json" }; @@ -67453,7 +67450,7 @@ export const createClient = (apiClient: ApiClient, }, /** Argo Analytics for a zone at different PoPs */ argo$analytics$for$geolocation$argo$analytics$for$a$zone$at$different$po$ps: (params: Params$argo$analytics$for$geolocation$argo$analytics$for$a$zone$at$different$po$ps, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/analytics/latency/colos\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/analytics/latency/colos`; const headers = { Accept: "application/json" }; @@ -67465,7 +67462,7 @@ export const createClient = (apiClient: ApiClient, }, /** Retrieve information about specific configuration properties */ api$shield$settings$retrieve$information$about$specific$configuration$properties: (params: Params$api$shield$settings$retrieve$information$about$specific$configuration$properties, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration`; const headers = { Accept: "application/json" }; @@ -67481,7 +67478,7 @@ export const createClient = (apiClient: ApiClient, }, /** Set configuration properties */ api$shield$settings$set$configuration$properties: (params: Params$api$shield$settings$set$configuration$properties, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/configuration`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67498,7 +67495,7 @@ export const createClient = (apiClient: ApiClient, * Retrieve the most up to date view of discovered operations, rendered as OpenAPI schemas */ api$shield$api$discovery$retrieve$discovered$operations$on$a$zone$as$openapi: (params: Params$api$shield$api$discovery$retrieve$discovered$operations$on$a$zone$as$openapi, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery`; const headers = { Accept: "application/json" }; @@ -67513,7 +67510,7 @@ export const createClient = (apiClient: ApiClient, * Retrieve the most up to date view of discovered operations */ api$shield$api$discovery$retrieve$discovered$operations$on$a$zone: (params: Params$api$shield$api$discovery$retrieve$discovered$operations$on$a$zone, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations`; const headers = { Accept: "application/json" }; @@ -67538,10 +67535,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Patch discovered operations - * Update the \`state\` on one or more discovered operations + * Update the `state` on one or more discovered operations */ api$shield$api$patch$discovered$operations: (params: Params$api$shield$api$patch$discovered$operations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67555,10 +67552,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Patch discovered operation - * Update the \`state\` on a discovered operation + * Update the `state` on a discovered operation */ api$shield$api$patch$discovered$operation: (params: Params$api$shield$api$patch$discovered$operation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/discovery/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67572,7 +67569,7 @@ export const createClient = (apiClient: ApiClient, }, /** Retrieve information about all operations on a zone */ api$shield$endpoint$management$retrieve$information$about$all$operations$on$a$zone: (params: Params$api$shield$endpoint$management$retrieve$information$about$all$operations$on$a$zone, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations`; const headers = { Accept: "application/json" }; @@ -67598,7 +67595,7 @@ export const createClient = (apiClient: ApiClient, * Add one or more operations to a zone. Endpoints can contain path variables. Host, method, endpoint will be normalized to a canoncial form when creating an operation and must be unique on the zone. Inserting an operation that matches an existing one will return the record of the already existing operation and update its last_updated date. */ api$shield$endpoint$management$add$operations$to$a$zone: (params: Params$api$shield$endpoint$management$add$operations$to$a$zone, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67612,7 +67609,7 @@ export const createClient = (apiClient: ApiClient, }, /** Retrieve information about an operation */ api$shield$endpoint$management$retrieve$information$about$an$operation: (params: Params$api$shield$endpoint$management$retrieve$information$about$an$operation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -67628,7 +67625,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete an operation */ api$shield$endpoint$management$delete$an$operation: (params: Params$api$shield$endpoint$management$delete$an$operation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}`; const headers = { Accept: "application/json" }; @@ -67643,7 +67640,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves operation-level schema validation settings on the zone */ api$shield$schema$validation$retrieve$operation$level$settings: (params: Params$api$shield$schema$validation$retrieve$operation$level$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}/schema_validation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}/schema_validation`; const headers = { Accept: "application/json" }; @@ -67658,7 +67655,7 @@ export const createClient = (apiClient: ApiClient, * Updates operation-level schema validation settings on the zone */ api$shield$schema$validation$update$operation$level$settings: (params: Params$api$shield$schema$validation$update$operation$level$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/\${encodeURIComponent(params.parameter.operation_id)}/schema_validation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/${encodeURIComponent(params.parameter.operation_id)}/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67675,7 +67672,7 @@ export const createClient = (apiClient: ApiClient, * Updates multiple operation-level schema validation settings on the zone */ api$shield$schema$validation$update$multiple$operation$level$settings: (params: Params$api$shield$schema$validation$update$multiple$operation$level$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/schema_validation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/operations/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67689,7 +67686,7 @@ export const createClient = (apiClient: ApiClient, }, /** Retrieve operations and features as OpenAPI schemas */ api$shield$endpoint$management$retrieve$operations$and$features$as$open$api$schemas: (params: Params$api$shield$endpoint$management$retrieve$operations$and$features$as$open$api$schemas, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/schemas\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/schemas`; const headers = { Accept: "application/json" }; @@ -67709,7 +67706,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves zone level schema validation settings currently set on the zone */ api$shield$schema$validation$retrieve$zone$level$settings: (params: Params$api$shield$schema$validation$retrieve$zone$level$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { Accept: "application/json" }; @@ -67724,7 +67721,7 @@ export const createClient = (apiClient: ApiClient, * Updates zone level schema validation settings on the zone */ api$shield$schema$validation$update$zone$level$settings: (params: Params$api$shield$schema$validation$update$zone$level$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67741,7 +67738,7 @@ export const createClient = (apiClient: ApiClient, * Updates zone level schema validation settings on the zone */ api$shield$schema$validation$patch$zone$level$settings: (params: Params$api$shield$schema$validation$patch$zone$level$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/settings/schema_validation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67755,7 +67752,7 @@ export const createClient = (apiClient: ApiClient, }, /** Retrieve information about all schemas on a zone */ api$shield$schema$validation$retrieve$information$about$all$schemas: (params: Params$api$shield$schema$validation$retrieve$information$about$all$schemas, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas`; const headers = { Accept: "application/json" }; @@ -67774,7 +67771,7 @@ export const createClient = (apiClient: ApiClient, }, /** Upload a schema to a zone */ api$shield$schema$validation$post$schema: (params: Params$api$shield$schema$validation$post$schema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -67788,7 +67785,7 @@ export const createClient = (apiClient: ApiClient, }, /** Retrieve information about a specific schema on a zone */ api$shield$schema$validation$retrieve$information$about$specific$schema: (params: Params$api$shield$schema$validation$retrieve$information$about$specific$schema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { Accept: "application/json" }; @@ -67804,7 +67801,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete a schema */ api$shield$schema$delete$a$schema: (params: Params$api$shield$schema$delete$a$schema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { Accept: "application/json" }; @@ -67816,7 +67813,7 @@ export const createClient = (apiClient: ApiClient, }, /** Enable validation for a schema */ api$shield$schema$validation$enable$validation$for$a$schema: (params: Params$api$shield$schema$validation$enable$validation$for$a$schema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67833,7 +67830,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves all operations from the schema. Operations that already exist in API Shield Endpoint Management will be returned as full operations. */ api$shield$schema$validation$extract$operations$from$schema: (params: Params$api$shield$schema$validation$extract$operations$from$schema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/\${encodeURIComponent(params.parameter.schema_id)}/operations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/api_gateway/user_schemas/${encodeURIComponent(params.parameter.schema_id)}/operations`; const headers = { Accept: "application/json" }; @@ -67855,7 +67852,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Argo Smart Routing setting */ argo$smart$routing$get$argo$smart$routing$setting: (params: Params$argo$smart$routing$get$argo$smart$routing$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing`; const headers = { Accept: "application/json" }; @@ -67870,7 +67867,7 @@ export const createClient = (apiClient: ApiClient, * Updates enablement of Argo Smart Routing. */ argo$smart$routing$patch$argo$smart$routing$setting: (params: Params$argo$smart$routing$patch$argo$smart$routing$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/smart_routing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67884,7 +67881,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Tiered Caching setting */ tiered$caching$get$tiered$caching$setting: (params: Params$tiered$caching$get$tiered$caching$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching`; const headers = { Accept: "application/json" }; @@ -67899,7 +67896,7 @@ export const createClient = (apiClient: ApiClient, * Updates enablement of Tiered Caching */ tiered$caching$patch$tiered$caching$setting: (params: Params$tiered$caching$patch$tiered$caching$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/argo/tiered_caching`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67916,7 +67913,7 @@ export const createClient = (apiClient: ApiClient, * Retrieve a zone's Bot Management Config */ bot$management$for$a$zone$get$config: (params: Params$bot$management$for$a$zone$get$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/bot_management\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/bot_management`; const headers = { Accept: "application/json" }; @@ -67938,7 +67935,7 @@ export const createClient = (apiClient: ApiClient, * See [Bot Plans](https://developers.cloudflare.com/bots/plans/) for more information on the different plans */ bot$management$for$a$zone$update$config: (params: Params$bot$management$for$a$zone$update$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/bot_management\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/bot_management`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67955,7 +67952,7 @@ export const createClient = (apiClient: ApiClient, * Increase cache lifetimes by automatically storing all cacheable files into Cloudflare's persistent object storage buckets. Requires Cache Reserve subscription. Note: using Tiered Cache with Cache Reserve is highly recommended to reduce Reserve operations costs. See the [developer docs](https://developers.cloudflare.com/cache/about/cache-reserve) for more information. */ zone$cache$settings$get$cache$reserve$setting: (params: Params$zone$cache$settings$get$cache$reserve$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve`; const headers = { Accept: "application/json" }; @@ -67970,7 +67967,7 @@ export const createClient = (apiClient: ApiClient, * Increase cache lifetimes by automatically storing all cacheable files into Cloudflare's persistent object storage buckets. Requires Cache Reserve subscription. Note: using Tiered Cache with Cache Reserve is highly recommended to reduce Reserve operations costs. See the [developer docs](https://developers.cloudflare.com/cache/about/cache-reserve) for more information. */ zone$cache$settings$change$cache$reserve$setting: (params: Params$zone$cache$settings$change$cache$reserve$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -67987,7 +67984,7 @@ export const createClient = (apiClient: ApiClient, * You can use Cache Reserve Clear to clear your Cache Reserve, but you must first disable Cache Reserve. In most cases, this will be accomplished within 24 hours. You cannot re-enable Cache Reserve while this process is ongoing. Keep in mind that you cannot undo or cancel this operation. */ zone$cache$settings$get$cache$reserve$clear: (params: Params$zone$cache$settings$get$cache$reserve$clear, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear`; const headers = { Accept: "application/json" }; @@ -68002,7 +67999,7 @@ export const createClient = (apiClient: ApiClient, * You can use Cache Reserve Clear to clear your Cache Reserve, but you must first disable Cache Reserve. In most cases, this will be accomplished within 24 hours. You cannot re-enable Cache Reserve while this process is ongoing. Keep in mind that you cannot undo or cancel this operation. */ zone$cache$settings$start$cache$reserve$clear: (params: Params$zone$cache$settings$start$cache$reserve$clear, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/cache_reserve_clear`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68019,7 +68016,7 @@ export const createClient = (apiClient: ApiClient, * Instructs Cloudflare to use Post-Quantum (PQ) key agreement algorithms when connecting to your origin. Preferred instructs Cloudflare to opportunistically send a Post-Quantum keyshare in the first message to the origin (for fastest connections when the origin supports and prefers PQ), supported means that PQ algorithms are advertised but only used when requested by the origin, and off means that PQ algorithms are not advertised */ zone$cache$settings$get$origin$post$quantum$encryption$setting: (params: Params$zone$cache$settings$get$origin$post$quantum$encryption$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption`; const headers = { Accept: "application/json" }; @@ -68034,7 +68031,7 @@ export const createClient = (apiClient: ApiClient, * Instructs Cloudflare to use Post-Quantum (PQ) key agreement algorithms when connecting to your origin. Preferred instructs Cloudflare to opportunistically send a Post-Quantum keyshare in the first message to the origin (for fastest connections when the origin supports and prefers PQ), supported means that PQ algorithms are advertised but only used when requested by the origin, and off means that PQ algorithms are not advertised */ zone$cache$settings$change$origin$post$quantum$encryption$setting: (params: Params$zone$cache$settings$change$origin$post$quantum$encryption$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/origin_post_quantum_encryption`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68051,7 +68048,7 @@ export const createClient = (apiClient: ApiClient, * Instructs Cloudflare to check a regional hub data center on the way to your upper tier. This can help improve performance for smart and custom tiered cache topologies. */ zone$cache$settings$get$regional$tiered$cache$setting: (params: Params$zone$cache$settings$get$regional$tiered$cache$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache`; const headers = { Accept: "application/json" }; @@ -68066,7 +68063,7 @@ export const createClient = (apiClient: ApiClient, * Instructs Cloudflare to check a regional hub data center on the way to your upper tier. This can help improve performance for smart and custom tiered cache topologies. */ zone$cache$settings$change$regional$tiered$cache$setting: (params: Params$zone$cache$settings$change$regional$tiered$cache$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/regional_tiered_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68080,7 +68077,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Smart Tiered Cache setting */ smart$tiered$cache$get$smart$tiered$cache$setting: (params: Params$smart$tiered$cache$get$smart$tiered$cache$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { Accept: "application/json" }; @@ -68095,7 +68092,7 @@ export const createClient = (apiClient: ApiClient, * Remvoves enablement of Smart Tiered Cache */ smart$tiered$cache$delete$smart$tiered$cache$setting: (params: Params$smart$tiered$cache$delete$smart$tiered$cache$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { Accept: "application/json" }; @@ -68110,7 +68107,7 @@ export const createClient = (apiClient: ApiClient, * Updates enablement of Tiered Cache */ smart$tiered$cache$patch$smart$tiered$cache$setting: (params: Params$smart$tiered$cache$patch$smart$tiered$cache$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/tiered_cache_smart_topology_enable`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68127,7 +68124,7 @@ export const createClient = (apiClient: ApiClient, * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ zone$cache$settings$get$variants$setting: (params: Params$zone$cache$settings$get$variants$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { Accept: "application/json" }; @@ -68142,7 +68139,7 @@ export const createClient = (apiClient: ApiClient, * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ zone$cache$settings$delete$variants$setting: (params: Params$zone$cache$settings$delete$variants$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { Accept: "application/json" }; @@ -68157,7 +68154,7 @@ export const createClient = (apiClient: ApiClient, * Variant support enables caching variants of images with certain file extensions in addition to the original. This only applies when the origin server sends the 'Vary: Accept' response header. If the origin server sends 'Vary: Accept' but does not serve the variant requested, the response will not be cached. This will be indicated with BYPASS cache status in the response headers. */ zone$cache$settings$change$variants$setting: (params: Params$zone$cache$settings$change$variants$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/cache/variants\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/cache/variants`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68174,7 +68171,7 @@ export const createClient = (apiClient: ApiClient, * Get metadata for account-level custom nameservers on a zone. */ account$level$custom$nameservers$usage$for$a$zone$get$account$custom$nameserver$related$zone$metadata: (params: Params$account$level$custom$nameservers$usage$for$a$zone$get$account$custom$nameserver$related$zone$metadata, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/custom_ns\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/custom_ns`; const headers = { Accept: "application/json" }; @@ -68191,7 +68188,7 @@ export const createClient = (apiClient: ApiClient, * If you would like new zones in the account to use account custom nameservers by default, use PUT /accounts/:identifier to set the account setting use_account_custom_ns_by_default to true. */ account$level$custom$nameservers$usage$for$a$zone$set$account$custom$nameserver$related$zone$metadata: (params: Params$account$level$custom$nameservers$usage$for$a$zone$set$account$custom$nameserver$related$zone$metadata, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/custom_ns\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/custom_ns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68208,7 +68205,7 @@ export const createClient = (apiClient: ApiClient, * List, search, sort, and filter a zones' DNS records. */ dns$records$for$a$zone$list$dns$records: (params: Params$dns$records$for$a$zone$list$dns$records, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records`; const headers = { Accept: "application/json" }; @@ -68257,7 +68254,7 @@ export const createClient = (apiClient: ApiClient, * characters were used when creating the record. */ dns$records$for$a$zone$create$dns$record: (params: Params$dns$records$for$a$zone$create$dns$record, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68271,7 +68268,7 @@ export const createClient = (apiClient: ApiClient, }, /** DNS Record Details */ dns$records$for$a$zone$dns$record$details: (params: Params$dns$records$for$a$zone$dns$record$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { Accept: "application/json" }; @@ -68291,7 +68288,7 @@ export const createClient = (apiClient: ApiClient, * characters were used when creating the record. */ dns$records$for$a$zone$update$dns$record: (params: Params$dns$records$for$a$zone$update$dns$record, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68305,7 +68302,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete DNS Record */ dns$records$for$a$zone$delete$dns$record: (params: Params$dns$records$for$a$zone$delete$dns$record, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { Accept: "application/json" }; @@ -68325,7 +68322,7 @@ export const createClient = (apiClient: ApiClient, * characters were used when creating the record. */ dns$records$for$a$zone$patch$dns$record: (params: Params$dns$records$for$a$zone$patch$dns$record, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/\${encodeURIComponent(params.parameter.dns_record_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/${encodeURIComponent(params.parameter.dns_record_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68344,7 +68341,7 @@ export const createClient = (apiClient: ApiClient, * See [the documentation](https://developers.cloudflare.com/dns/manage-dns-records/how-to/import-and-export/ "Import and export records") for more information. */ dns$records$for$a$zone$export$dns$records: (params: Params$dns$records$for$a$zone$export$dns$records, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/export\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/export`; const headers = { Accept: "text/plain" }; @@ -68361,7 +68358,7 @@ export const createClient = (apiClient: ApiClient, * See [the documentation](https://developers.cloudflare.com/dns/manage-dns-records/how-to/import-and-export/ "Import and export records") for more information. */ dns$records$for$a$zone$import$dns$records: (params: Params$dns$records$for$a$zone$import$dns$records, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/import\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/import`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -68378,7 +68375,7 @@ export const createClient = (apiClient: ApiClient, * Scan for common DNS records on your domain and automatically add them to your zone. Useful if you haven't updated your nameservers yet. */ dns$records$for$a$zone$scan$dns$records: (params: Params$dns$records$for$a$zone$scan$dns$records, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dns_records/scan\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dns_records/scan`; const headers = { Accept: "application/json" }; @@ -68393,7 +68390,7 @@ export const createClient = (apiClient: ApiClient, * Details about DNSSEC status and configuration. */ dnssec$dnssec$details: (params: Params$dnssec$dnssec$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { Accept: "application/json" }; @@ -68408,7 +68405,7 @@ export const createClient = (apiClient: ApiClient, * Delete DNSSEC. */ dnssec$delete$dnssec$records: (params: Params$dnssec$delete$dnssec$records, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { Accept: "application/json" }; @@ -68423,7 +68420,7 @@ export const createClient = (apiClient: ApiClient, * Enable or disable DNSSEC. */ dnssec$edit$dnssec$status: (params: Params$dnssec$edit$dnssec$status, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/dnssec\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/dnssec`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68440,7 +68437,7 @@ export const createClient = (apiClient: ApiClient, * Fetches IP Access rules of a zone. You can filter the results using several optional parameters. */ ip$access$rules$for$a$zone$list$ip$access$rules: (params: Params$ip$access$rules$for$a$zone$list$ip$access$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules`; const headers = { Accept: "application/json" }; @@ -68466,7 +68463,7 @@ export const createClient = (apiClient: ApiClient, * Note: To create an IP Access rule that applies to multiple zones, refer to [IP Access rules for a user](#ip-access-rules-for-a-user) or [IP Access rules for an account](#ip-access-rules-for-an-account) as appropriate. */ ip$access$rules$for$a$zone$create$an$ip$access$rule: (params: Params$ip$access$rules$for$a$zone$create$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68482,10 +68479,10 @@ export const createClient = (apiClient: ApiClient, * Delete an IP Access rule * Deletes an IP Access rule defined at the zone level. * - * Optionally, you can use the \`cascade\` property to specify that you wish to delete similar rules in other zones managed by the same zone owner. + * Optionally, you can use the `cascade` property to specify that you wish to delete similar rules in other zones managed by the same zone owner. */ ip$access$rules$for$a$zone$delete$an$ip$access$rule: (params: Params$ip$access$rules$for$a$zone$delete$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68499,10 +68496,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Update an IP Access rule - * Updates an IP Access rule defined at the zone level. You can only update the rule action (\`mode\` parameter) and notes. + * Updates an IP Access rule defined at the zone level. You can only update the rule action (`mode` parameter) and notes. */ ip$access$rules$for$a$zone$update$an$ip$access$rule: (params: Params$ip$access$rules$for$a$zone$update$an$ip$access$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/access_rules/rules/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68521,7 +68518,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$rule$groups$list$waf$rule$groups: (params: Params$waf$rule$groups$list$waf$rule$groups, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups`; const headers = { Accept: "application/json" }; @@ -68549,7 +68546,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$rule$groups$get$a$waf$rule$group: (params: Params$waf$rule$groups$get$a$waf$rule$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups/\${encodeURIComponent(params.parameter.group_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups/${encodeURIComponent(params.parameter.group_id)}`; const headers = { Accept: "application/json" }; @@ -68561,12 +68558,12 @@ export const createClient = (apiClient: ApiClient, }, /** * Update a WAF rule group - * Updates a WAF rule group. You can update the state (\`mode\` parameter) of a rule group. + * Updates a WAF rule group. You can update the state (`mode` parameter) of a rule group. * * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$rule$groups$update$a$waf$rule$group: (params: Params$waf$rule$groups$update$a$waf$rule$group, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/groups/\${encodeURIComponent(params.parameter.group_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/groups/${encodeURIComponent(params.parameter.group_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68585,7 +68582,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$rules$list$waf$rules: (params: Params$waf$rules$list$waf$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules`; const headers = { Accept: "application/json" }; @@ -68614,7 +68611,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$rules$get$a$waf$rule: (params: Params$waf$rules$get$a$waf$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -68631,7 +68628,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$rules$update$a$waf$rule: (params: Params$waf$rules$update$a$waf$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.package_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/firewall/waf/packages/${encodeURIComponent(params.parameter.package_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68648,7 +68645,7 @@ export const createClient = (apiClient: ApiClient, * Retrieve whether the zone is subject to a zone hold, and metadata about the hold. */ zones$0$hold$get: (params: Params$zones$0$hold$get, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68663,7 +68660,7 @@ export const createClient = (apiClient: ApiClient, * Enforce a zone hold on the zone, blocking the creation and activation of zones with this zone's hostname. */ zones$0$hold$post: (params: Params$zones$0$hold$post, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68683,7 +68680,7 @@ export const createClient = (apiClient: ApiClient, * creation and activation of zones with this zone's hostname. */ zones$0$hold$delete: (params: Params$zones$0$hold$delete, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/hold\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/hold`; const headers = { Accept: "application/json" }; @@ -68702,7 +68699,7 @@ export const createClient = (apiClient: ApiClient, * Lists all fields available for a dataset. The response result is an object with key-value pairs, where keys are field names, and values are descriptions. */ get$zones$zone_identifier$logpush$datasets$dataset$fields: (params: Params$get$zones$zone_identifier$logpush$datasets$dataset$fields, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/fields\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/fields`; const headers = { Accept: "application/json" }; @@ -68717,7 +68714,7 @@ export const createClient = (apiClient: ApiClient, * Lists Logpush jobs for a zone for a dataset. */ get$zones$zone_identifier$logpush$datasets$dataset$jobs: (params: Params$get$zones$zone_identifier$logpush$datasets$dataset$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/\${encodeURIComponent(params.parameter.dataset_id)}/jobs\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/datasets/${encodeURIComponent(params.parameter.dataset_id)}/jobs`; const headers = { Accept: "application/json" }; @@ -68732,7 +68729,7 @@ export const createClient = (apiClient: ApiClient, * Lists Instant Logs jobs for a zone. */ get$zones$zone_identifier$logpush$edge$jobs: (params: Params$get$zones$zone_identifier$logpush$edge$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/edge\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/edge`; const headers = { Accept: "application/json" }; @@ -68747,7 +68744,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Instant Logs job for a zone. */ post$zones$zone_identifier$logpush$edge$jobs: (params: Params$post$zones$zone_identifier$logpush$edge$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/edge\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/edge`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68764,7 +68761,7 @@ export const createClient = (apiClient: ApiClient, * Lists Logpush jobs for a zone. */ get$zones$zone_identifier$logpush$jobs: (params: Params$get$zones$zone_identifier$logpush$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs`; const headers = { Accept: "application/json" }; @@ -68779,7 +68776,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Logpush job for a zone. */ post$zones$zone_identifier$logpush$jobs: (params: Params$post$zones$zone_identifier$logpush$jobs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68796,7 +68793,7 @@ export const createClient = (apiClient: ApiClient, * Gets the details of a Logpush job. */ get$zones$zone_identifier$logpush$jobs$job_identifier: (params: Params$get$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -68811,7 +68808,7 @@ export const createClient = (apiClient: ApiClient, * Updates a Logpush job. */ put$zones$zone_identifier$logpush$jobs$job_identifier: (params: Params$put$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68828,7 +68825,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a Logpush job. */ delete$zones$zone_identifier$logpush$jobs$job_identifier: (params: Params$delete$zones$zone_identifier$logpush$jobs$job_identifier, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/\${encodeURIComponent(params.parameter.job_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/jobs/${encodeURIComponent(params.parameter.job_id)}`; const headers = { Accept: "application/json" }; @@ -68843,7 +68840,7 @@ export const createClient = (apiClient: ApiClient, * Gets a new ownership challenge sent to your destination. */ post$zones$zone_identifier$logpush$ownership: (params: Params$post$zones$zone_identifier$logpush$ownership, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68860,7 +68857,7 @@ export const createClient = (apiClient: ApiClient, * Validates ownership challenge of the destination. */ post$zones$zone_identifier$logpush$ownership$validate: (params: Params$post$zones$zone_identifier$logpush$ownership$validate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership/validate\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/ownership/validate`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68877,7 +68874,7 @@ export const createClient = (apiClient: ApiClient, * Checks if there is an existing job with a destination. */ post$zones$zone_identifier$logpush$validate$destination$exists: (params: Params$post$zones$zone_identifier$logpush$validate$destination$exists, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/destination/exists\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/destination/exists`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68894,7 +68891,7 @@ export const createClient = (apiClient: ApiClient, * Validates logpull origin with logpull_options. */ post$zones$zone_identifier$logpush$validate$origin: (params: Params$post$zones$zone_identifier$logpush$validate$origin, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/origin\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/logpush/validate/origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68911,7 +68908,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a list of all Managed Transforms. */ managed$transforms$list$managed$transforms: (params: Params$managed$transforms$list$managed$transforms, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/managed_headers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/managed_headers`; const headers = { Accept: "application/json" }; @@ -68926,7 +68923,7 @@ export const createClient = (apiClient: ApiClient, * Updates the status of one or more Managed Transforms. */ managed$transforms$update$status$of$managed$transforms: (params: Params$managed$transforms$update$status$of$managed$transforms, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/managed_headers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/managed_headers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68943,7 +68940,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the Page Shield settings. */ page$shield$get$page$shield$settings: (params: Params$page$shield$get$page$shield$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield`; const headers = { Accept: "application/json" }; @@ -68958,7 +68955,7 @@ export const createClient = (apiClient: ApiClient, * Updates Page Shield settings. */ page$shield$update$page$shield$settings: (params: Params$page$shield$update$page$shield$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -68975,7 +68972,7 @@ export const createClient = (apiClient: ApiClient, * Lists all connections detected by Page Shield. */ page$shield$list$page$shield$connections: (params: Params$page$shield$list$page$shield$connections, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections`; const headers = { Accept: "application/json" }; @@ -69005,7 +69002,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a connection detected by Page Shield by connection ID. */ page$shield$get$a$page$shield$connection: (params: Params$page$shield$get$a$page$shield$connection, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections/\${encodeURIComponent(params.parameter.connection_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/connections/${encodeURIComponent(params.parameter.connection_id)}`; const headers = { Accept: "application/json" }; @@ -69020,7 +69017,7 @@ export const createClient = (apiClient: ApiClient, * Lists all Page Shield policies. */ page$shield$list$page$shield$policies: (params: Params$page$shield$list$page$shield$policies, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies`; const headers = { Accept: "application/json" }; @@ -69035,7 +69032,7 @@ export const createClient = (apiClient: ApiClient, * Create a Page Shield policy. */ page$shield$create$a$page$shield$policy: (params: Params$page$shield$create$a$page$shield$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69052,7 +69049,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a Page Shield policy by ID. */ page$shield$get$a$page$shield$policy: (params: Params$page$shield$get$a$page$shield$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { Accept: "application/json" }; @@ -69067,7 +69064,7 @@ export const createClient = (apiClient: ApiClient, * Update a Page Shield policy by ID. */ page$shield$update$a$page$shield$policy: (params: Params$page$shield$update$a$page$shield$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69084,7 +69081,7 @@ export const createClient = (apiClient: ApiClient, * Delete a Page Shield policy by ID. */ page$shield$delete$a$page$shield$policy: (params: Params$page$shield$delete$a$page$shield$policy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/\${encodeURIComponent(params.parameter.policy_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/policies/${encodeURIComponent(params.parameter.policy_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -69097,7 +69094,7 @@ export const createClient = (apiClient: ApiClient, * Lists all scripts detected by Page Shield. */ page$shield$list$page$shield$scripts: (params: Params$page$shield$list$page$shield$scripts, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts`; const headers = { Accept: "application/json" }; @@ -69128,7 +69125,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a script detected by Page Shield by script ID. */ page$shield$get$a$page$shield$script: (params: Params$page$shield$get$a$page$shield$script, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts/\${encodeURIComponent(params.parameter.script_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/page_shield/scripts/${encodeURIComponent(params.parameter.script_id)}`; const headers = { Accept: "application/json" }; @@ -69143,7 +69140,7 @@ export const createClient = (apiClient: ApiClient, * Fetches Page Rules in a zone. */ page$rules$list$page$rules: (params: Params$page$rules$list$page$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules`; const headers = { Accept: "application/json" }; @@ -69165,7 +69162,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Page Rule. */ page$rules$create$a$page$rule: (params: Params$page$rules$create$a$page$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69182,7 +69179,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a Page Rule. */ page$rules$get$a$page$rule: (params: Params$page$rules$get$a$page$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { Accept: "application/json" }; @@ -69197,7 +69194,7 @@ export const createClient = (apiClient: ApiClient, * Replaces the configuration of an existing Page Rule. The configuration of the updated Page Rule will exactly match the data passed in the API request. */ page$rules$update$a$page$rule: (params: Params$page$rules$update$a$page$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69214,7 +69211,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing Page Rule. */ page$rules$delete$a$page$rule: (params: Params$page$rules$delete$a$page$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { Accept: "application/json" }; @@ -69229,7 +69226,7 @@ export const createClient = (apiClient: ApiClient, * Updates one or more fields of an existing Page Rule. */ page$rules$edit$a$page$rule: (params: Params$page$rules$edit$a$page$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/\${encodeURIComponent(params.parameter.pagerule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/${encodeURIComponent(params.parameter.pagerule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69246,7 +69243,7 @@ export const createClient = (apiClient: ApiClient, * Returns a list of settings (and their details) that Page Rules can apply to matching requests. */ available$page$rules$settings$list$available$page$rules$settings: (params: Params$available$page$rules$settings$list$available$page$rules$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/pagerules/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/pagerules/settings`; const headers = { Accept: "application/json" }; @@ -69261,7 +69258,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all rulesets at the zone level. */ listZoneRulesets: (params: Params$listZoneRulesets, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets`; const headers = { Accept: "application/json" }; @@ -69276,7 +69273,7 @@ export const createClient = (apiClient: ApiClient, * Creates a ruleset at the zone level. */ createZoneRuleset: (params: Params$createZoneRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69293,7 +69290,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the latest version of a zone ruleset. */ getZoneRuleset: (params: Params$getZoneRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { Accept: "application/json" }; @@ -69308,7 +69305,7 @@ export const createClient = (apiClient: ApiClient, * Updates a zone ruleset, creating a new version. */ updateZoneRuleset: (params: Params$updateZoneRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69325,7 +69322,7 @@ export const createClient = (apiClient: ApiClient, * Deletes all versions of an existing zone ruleset. */ deleteZoneRuleset: (params: Params$deleteZoneRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -69338,7 +69335,7 @@ export const createClient = (apiClient: ApiClient, * Adds a new rule to a zone ruleset. The rule will be added to the end of the existing list of rules in the ruleset by default. */ createZoneRulesetRule: (params: Params$createZoneRulesetRule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69355,7 +69352,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing rule from a zone ruleset. */ deleteZoneRulesetRule: (params: Params$deleteZoneRulesetRule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -69370,7 +69367,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing rule in a zone ruleset. */ updateZoneRulesetRule: (params: Params$updateZoneRulesetRule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69387,7 +69384,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the versions of a zone ruleset. */ listZoneRulesetVersions: (params: Params$listZoneRulesetVersions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions`; const headers = { Accept: "application/json" }; @@ -69402,7 +69399,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a specific version of a zone ruleset. */ getZoneRulesetVersion: (params: Params$getZoneRulesetVersion, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -69417,7 +69414,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing version of a zone ruleset. */ deleteZoneRulesetVersion: (params: Params$deleteZoneRulesetVersion, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/\${encodeURIComponent(params.parameter.ruleset_id)}/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/${encodeURIComponent(params.parameter.ruleset_id)}/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -69430,7 +69427,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the latest version of the zone entry point ruleset for a given phase. */ getZoneEntrypointRuleset: (params: Params$getZoneEntrypointRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { Accept: "application/json" }; @@ -69445,7 +69442,7 @@ export const createClient = (apiClient: ApiClient, * Updates a zone entry point ruleset, creating a new version. */ updateZoneEntrypointRuleset: (params: Params$updateZoneEntrypointRuleset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69462,7 +69459,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the versions of a zone entry point ruleset. */ listZoneEntrypointRulesetVersions: (params: Params$listZoneEntrypointRulesetVersions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions`; const headers = { Accept: "application/json" }; @@ -69477,7 +69474,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a specific version of a zone entry point ruleset. */ getZoneEntrypointRulesetVersion: (params: Params$getZoneEntrypointRulesetVersion, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/\${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/\${encodeURIComponent(params.parameter.ruleset_version)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/rulesets/phases/${encodeURIComponent(params.parameter.ruleset_phase)}/entrypoint/versions/${encodeURIComponent(params.parameter.ruleset_version)}`; const headers = { Accept: "application/json" }; @@ -69492,7 +69489,7 @@ export const createClient = (apiClient: ApiClient, * Available settings for your user in relation to a zone. */ zone$settings$get$all$zone$settings: (params: Params$zone$settings$get$all$zone$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings`; const headers = { Accept: "application/json" }; @@ -69507,7 +69504,7 @@ export const createClient = (apiClient: ApiClient, * Edit settings for a zone. */ zone$settings$edit$zone$settings$info: (params: Params$zone$settings$edit$zone$settings$info, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69524,7 +69521,7 @@ export const createClient = (apiClient: ApiClient, * Gets 0-RTT session resumption setting. */ zone$settings$get$0$rtt$session$resumption$setting: (params: Params$zone$settings$get$0$rtt$session$resumption$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt`; const headers = { Accept: "application/json" }; @@ -69539,7 +69536,7 @@ export const createClient = (apiClient: ApiClient, * Changes the 0-RTT session resumption setting. */ zone$settings$change$0$rtt$session$resumption$setting: (params: Params$zone$settings$change$0$rtt$session$resumption$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/0rtt`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69556,7 +69553,7 @@ export const createClient = (apiClient: ApiClient, * Advanced protection from Distributed Denial of Service (DDoS) attacks on your website. This is an uneditable value that is 'on' in the case of Business and Enterprise zones. */ zone$settings$get$advanced$ddos$setting: (params: Params$zone$settings$get$advanced$ddos$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/advanced_ddos\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/advanced_ddos`; const headers = { Accept: "application/json" }; @@ -69571,7 +69568,7 @@ export const createClient = (apiClient: ApiClient, * When enabled, Cloudflare serves limited copies of web pages available from the [Internet Archive's Wayback Machine](https://archive.org/web/) if your server is offline. Refer to [Always Online](https://developers.cloudflare.com/cache/about/always-online) for more information. */ zone$settings$get$always$online$setting: (params: Params$zone$settings$get$always$online$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_online\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_online`; const headers = { Accept: "application/json" }; @@ -69586,7 +69583,7 @@ export const createClient = (apiClient: ApiClient, * When enabled, Cloudflare serves limited copies of web pages available from the [Internet Archive's Wayback Machine](https://archive.org/web/) if your server is offline. Refer to [Always Online](https://developers.cloudflare.com/cache/about/always-online) for more information. */ zone$settings$change$always$online$setting: (params: Params$zone$settings$change$always$online$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_online\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_online`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69603,7 +69600,7 @@ export const createClient = (apiClient: ApiClient, * Reply to all requests for URLs that use "http" with a 301 redirect to the equivalent "https" URL. If you only want to redirect for a subset of requests, consider creating an "Always use HTTPS" page rule. */ zone$settings$get$always$use$https$setting: (params: Params$zone$settings$get$always$use$https$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https`; const headers = { Accept: "application/json" }; @@ -69618,7 +69615,7 @@ export const createClient = (apiClient: ApiClient, * Reply to all requests for URLs that use "http" with a 301 redirect to the equivalent "https" URL. If you only want to redirect for a subset of requests, consider creating an "Always use HTTPS" page rule. */ zone$settings$change$always$use$https$setting: (params: Params$zone$settings$change$always$use$https$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/always_use_https`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69635,7 +69632,7 @@ export const createClient = (apiClient: ApiClient, * Enable the Automatic HTTPS Rewrites feature for this zone. */ zone$settings$get$automatic$https$rewrites$setting: (params: Params$zone$settings$get$automatic$https$rewrites$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites`; const headers = { Accept: "application/json" }; @@ -69650,7 +69647,7 @@ export const createClient = (apiClient: ApiClient, * Enable the Automatic HTTPS Rewrites feature for this zone. */ zone$settings$change$automatic$https$rewrites$setting: (params: Params$zone$settings$change$automatic$https$rewrites$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_https_rewrites`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69669,7 +69666,7 @@ export const createClient = (apiClient: ApiClient, * third-party fonts. */ zone$settings$get$automatic_platform_optimization$setting: (params: Params$zone$settings$get$automatic_platform_optimization$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization`; const headers = { Accept: "application/json" }; @@ -69686,7 +69683,7 @@ export const createClient = (apiClient: ApiClient, * third-party fonts. */ zone$settings$change$automatic_platform_optimization$setting: (params: Params$zone$settings$change$automatic_platform_optimization$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/automatic_platform_optimization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69703,7 +69700,7 @@ export const createClient = (apiClient: ApiClient, * When the client requesting an asset supports the Brotli compression algorithm, Cloudflare will serve a Brotli compressed version of the asset. */ zone$settings$get$brotli$setting: (params: Params$zone$settings$get$brotli$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/brotli\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/brotli`; const headers = { Accept: "application/json" }; @@ -69718,7 +69715,7 @@ export const createClient = (apiClient: ApiClient, * When the client requesting an asset supports the Brotli compression algorithm, Cloudflare will serve a Brotli compressed version of the asset. */ zone$settings$change$brotli$setting: (params: Params$zone$settings$change$brotli$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/brotli\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/brotli`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69735,7 +69732,7 @@ export const createClient = (apiClient: ApiClient, * Browser Cache TTL (in seconds) specifies how long Cloudflare-cached resources will remain on your visitors' computers. Cloudflare will honor any larger times specified by your server. (https://support.cloudflare.com/hc/en-us/articles/200168276). */ zone$settings$get$browser$cache$ttl$setting: (params: Params$zone$settings$get$browser$cache$ttl$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl`; const headers = { Accept: "application/json" }; @@ -69750,7 +69747,7 @@ export const createClient = (apiClient: ApiClient, * Browser Cache TTL (in seconds) specifies how long Cloudflare-cached resources will remain on your visitors' computers. Cloudflare will honor any larger times specified by your server. (https://support.cloudflare.com/hc/en-us/articles/200168276). */ zone$settings$change$browser$cache$ttl$setting: (params: Params$zone$settings$change$browser$cache$ttl$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_cache_ttl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69767,7 +69764,7 @@ export const createClient = (apiClient: ApiClient, * Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors). (https://support.cloudflare.com/hc/en-us/articles/200170086). */ zone$settings$get$browser$check$setting: (params: Params$zone$settings$get$browser$check$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check`; const headers = { Accept: "application/json" }; @@ -69782,7 +69779,7 @@ export const createClient = (apiClient: ApiClient, * Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors). (https://support.cloudflare.com/hc/en-us/articles/200170086). */ zone$settings$change$browser$check$setting: (params: Params$zone$settings$change$browser$check$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/browser_check`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69799,7 +69796,7 @@ export const createClient = (apiClient: ApiClient, * Cache Level functions based off the setting level. The basic setting will cache most static resources (i.e., css, images, and JavaScript). The simplified setting will ignore the query string when delivering a cached resource. The aggressive setting will cache all static resources, including ones with a query string. (https://support.cloudflare.com/hc/en-us/articles/200168256). */ zone$settings$get$cache$level$setting: (params: Params$zone$settings$get$cache$level$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level`; const headers = { Accept: "application/json" }; @@ -69814,7 +69811,7 @@ export const createClient = (apiClient: ApiClient, * Cache Level functions based off the setting level. The basic setting will cache most static resources (i.e., css, images, and JavaScript). The simplified setting will ignore the query string when delivering a cached resource. The aggressive setting will cache all static resources, including ones with a query string. (https://support.cloudflare.com/hc/en-us/articles/200168256). */ zone$settings$change$cache$level$setting: (params: Params$zone$settings$change$cache$level$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/cache_level`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69831,7 +69828,7 @@ export const createClient = (apiClient: ApiClient, * Specify how long a visitor is allowed access to your site after successfully completing a challenge (such as a CAPTCHA). After the TTL has expired the visitor will have to complete a new challenge. We recommend a 15 - 45 minute setting and will attempt to honor any setting above 45 minutes. (https://support.cloudflare.com/hc/en-us/articles/200170136). */ zone$settings$get$challenge$ttl$setting: (params: Params$zone$settings$get$challenge$ttl$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl`; const headers = { Accept: "application/json" }; @@ -69846,7 +69843,7 @@ export const createClient = (apiClient: ApiClient, * Specify how long a visitor is allowed access to your site after successfully completing a challenge (such as a CAPTCHA). After the TTL has expired the visitor will have to complete a new challenge. We recommend a 15 - 45 minute setting and will attempt to honor any setting above 45 minutes. (https://support.cloudflare.com/hc/en-us/articles/200170136). */ zone$settings$change$challenge$ttl$setting: (params: Params$zone$settings$change$challenge$ttl$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/challenge_ttl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69863,7 +69860,7 @@ export const createClient = (apiClient: ApiClient, * Gets ciphers setting. */ zone$settings$get$ciphers$setting: (params: Params$zone$settings$get$ciphers$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers`; const headers = { Accept: "application/json" }; @@ -69878,7 +69875,7 @@ export const createClient = (apiClient: ApiClient, * Changes ciphers setting. */ zone$settings$change$ciphers$setting: (params: Params$zone$settings$change$ciphers$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ciphers`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69895,7 +69892,7 @@ export const createClient = (apiClient: ApiClient, * Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away. Once entered, development mode will last for 3 hours and then automatically toggle off. */ zone$settings$get$development$mode$setting: (params: Params$zone$settings$get$development$mode$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode`; const headers = { Accept: "application/json" }; @@ -69910,7 +69907,7 @@ export const createClient = (apiClient: ApiClient, * Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away. Once entered, development mode will last for 3 hours and then automatically toggle off. */ zone$settings$change$development$mode$setting: (params: Params$zone$settings$change$development$mode$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/development_mode`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69924,10 +69921,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Get Early Hints setting - * When enabled, Cloudflare will attempt to speed up overall page loads by serving \`103\` responses with \`Link\` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. + * When enabled, Cloudflare will attempt to speed up overall page loads by serving `103` responses with `Link` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. */ zone$settings$get$early$hints$setting: (params: Params$zone$settings$get$early$hints$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints`; const headers = { Accept: "application/json" }; @@ -69939,10 +69936,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Change Early Hints setting - * When enabled, Cloudflare will attempt to speed up overall page loads by serving \`103\` responses with \`Link\` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. + * When enabled, Cloudflare will attempt to speed up overall page loads by serving `103` responses with `Link` headers from the final response. Refer to [Early Hints](https://developers.cloudflare.com/cache/about/early-hints) for more information. */ zone$settings$change$early$hints$setting: (params: Params$zone$settings$change$early$hints$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/early_hints`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69959,7 +69956,7 @@ export const createClient = (apiClient: ApiClient, * Encrypt email adresses on your web page from bots, while keeping them visible to humans. (https://support.cloudflare.com/hc/en-us/articles/200170016). */ zone$settings$get$email$obfuscation$setting: (params: Params$zone$settings$get$email$obfuscation$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation`; const headers = { Accept: "application/json" }; @@ -69974,7 +69971,7 @@ export const createClient = (apiClient: ApiClient, * Encrypt email adresses on your web page from bots, while keeping them visible to humans. (https://support.cloudflare.com/hc/en-us/articles/200170016). */ zone$settings$change$email$obfuscation$setting: (params: Params$zone$settings$change$email$obfuscation$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/email_obfuscation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -69992,7 +69989,7 @@ export const createClient = (apiClient: ApiClient, * boost performance, and enhance user privacy. Refer to the Cloudflare Fonts documentation for more information. */ zone$settings$get$fonts$setting: (params: Params$zone$settings$get$fonts$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/fonts\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/fonts`; const headers = { Accept: "application/json" }; @@ -70008,7 +70005,7 @@ export const createClient = (apiClient: ApiClient, * boost performance, and enhance user privacy. Refer to the Cloudflare Fonts documentation for more information. */ zone$settings$change$fonts$setting: (params: Params$zone$settings$change$fonts$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/fonts\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/fonts`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70025,7 +70022,7 @@ export const createClient = (apiClient: ApiClient, * Gets HTTP/2 Edge Prioritization setting. */ zone$settings$get$h2_prioritization$setting: (params: Params$zone$settings$get$h2_prioritization$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization`; const headers = { Accept: "application/json" }; @@ -70040,7 +70037,7 @@ export const createClient = (apiClient: ApiClient, * Gets HTTP/2 Edge Prioritization setting. */ zone$settings$change$h2_prioritization$setting: (params: Params$zone$settings$change$h2_prioritization$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/h2_prioritization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70057,7 +70054,7 @@ export const createClient = (apiClient: ApiClient, * When enabled, the Hotlink Protection option ensures that other sites cannot suck up your bandwidth by building pages that use images hosted on your site. Anytime a request for an image on your site hits Cloudflare, we check to ensure that it's not another site requesting them. People will still be able to download and view images from your page, but other sites won't be able to steal them for use on their own pages. (https://support.cloudflare.com/hc/en-us/articles/200170026). */ zone$settings$get$hotlink$protection$setting: (params: Params$zone$settings$get$hotlink$protection$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection`; const headers = { Accept: "application/json" }; @@ -70072,7 +70069,7 @@ export const createClient = (apiClient: ApiClient, * When enabled, the Hotlink Protection option ensures that other sites cannot suck up your bandwidth by building pages that use images hosted on your site. Anytime a request for an image on your site hits Cloudflare, we check to ensure that it's not another site requesting them. People will still be able to download and view images from your page, but other sites won't be able to steal them for use on their own pages. (https://support.cloudflare.com/hc/en-us/articles/200170026). */ zone$settings$change$hotlink$protection$setting: (params: Params$zone$settings$change$hotlink$protection$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/hotlink_protection`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70089,7 +70086,7 @@ export const createClient = (apiClient: ApiClient, * Value of the HTTP2 setting. */ zone$settings$get$h$t$t$p$2$setting: (params: Params$zone$settings$get$h$t$t$p$2$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http2\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http2`; const headers = { Accept: "application/json" }; @@ -70104,7 +70101,7 @@ export const createClient = (apiClient: ApiClient, * Value of the HTTP2 setting. */ zone$settings$change$h$t$t$p$2$setting: (params: Params$zone$settings$change$h$t$t$p$2$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http2\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http2`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70121,7 +70118,7 @@ export const createClient = (apiClient: ApiClient, * Value of the HTTP3 setting. */ zone$settings$get$h$t$t$p$3$setting: (params: Params$zone$settings$get$h$t$t$p$3$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http3\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http3`; const headers = { Accept: "application/json" }; @@ -70136,7 +70133,7 @@ export const createClient = (apiClient: ApiClient, * Value of the HTTP3 setting. */ zone$settings$change$h$t$t$p$3$setting: (params: Params$zone$settings$change$h$t$t$p$3$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/http3\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/http3`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70156,7 +70153,7 @@ export const createClient = (apiClient: ApiClient, * for more information. */ zone$settings$get$image_resizing$setting: (params: Params$zone$settings$get$image_resizing$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing`; const headers = { Accept: "application/json" }; @@ -70174,7 +70171,7 @@ export const createClient = (apiClient: ApiClient, * for more information. */ zone$settings$change$image_resizing$setting: (params: Params$zone$settings$change$image_resizing$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/image_resizing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70191,7 +70188,7 @@ export const createClient = (apiClient: ApiClient, * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and pass the country code to you. (https://support.cloudflare.com/hc/en-us/articles/200168236). */ zone$settings$get$ip$geolocation$setting: (params: Params$zone$settings$get$ip$geolocation$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation`; const headers = { Accept: "application/json" }; @@ -70206,7 +70203,7 @@ export const createClient = (apiClient: ApiClient, * Enable IP Geolocation to have Cloudflare geolocate visitors to your website and pass the country code to you. (https://support.cloudflare.com/hc/en-us/articles/200168236). */ zone$settings$change$ip$geolocation$setting: (params: Params$zone$settings$change$ip$geolocation$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ip_geolocation`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70223,7 +70220,7 @@ export const createClient = (apiClient: ApiClient, * Enable IPv6 on all subdomains that are Cloudflare enabled. (https://support.cloudflare.com/hc/en-us/articles/200168586). */ zone$settings$get$i$pv6$setting: (params: Params$zone$settings$get$i$pv6$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6`; const headers = { Accept: "application/json" }; @@ -70238,7 +70235,7 @@ export const createClient = (apiClient: ApiClient, * Enable IPv6 on all subdomains that are Cloudflare enabled. (https://support.cloudflare.com/hc/en-us/articles/200168586). */ zone$settings$change$i$pv6$setting: (params: Params$zone$settings$change$i$pv6$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ipv6`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70255,7 +70252,7 @@ export const createClient = (apiClient: ApiClient, * Gets Minimum TLS Version setting. */ zone$settings$get$minimum$tls$version$setting: (params: Params$zone$settings$get$minimum$tls$version$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version`; const headers = { Accept: "application/json" }; @@ -70270,7 +70267,7 @@ export const createClient = (apiClient: ApiClient, * Changes Minimum TLS Version setting. */ zone$settings$change$minimum$tls$version$setting: (params: Params$zone$settings$change$minimum$tls$version$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/min_tls_version`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70287,7 +70284,7 @@ export const createClient = (apiClient: ApiClient, * Automatically minify certain assets for your website. Refer to [Using Cloudflare Auto Minify](https://support.cloudflare.com/hc/en-us/articles/200168196) for more information. */ zone$settings$get$minify$setting: (params: Params$zone$settings$get$minify$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/minify\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/minify`; const headers = { Accept: "application/json" }; @@ -70302,7 +70299,7 @@ export const createClient = (apiClient: ApiClient, * Automatically minify certain assets for your website. Refer to [Using Cloudflare Auto Minify](https://support.cloudflare.com/hc/en-us/articles/200168196) for more information. */ zone$settings$change$minify$setting: (params: Params$zone$settings$change$minify$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/minify\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/minify`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70321,7 +70318,7 @@ export const createClient = (apiClient: ApiClient, * for more information. */ zone$settings$get$mirage$setting: (params: Params$zone$settings$get$mirage$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mirage\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mirage`; const headers = { Accept: "application/json" }; @@ -70336,7 +70333,7 @@ export const createClient = (apiClient: ApiClient, * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/mirage2-solving-mobile-speed) for more information. */ zone$settings$change$web$mirage$setting: (params: Params$zone$settings$change$web$mirage$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mirage\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mirage`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70353,7 +70350,7 @@ export const createClient = (apiClient: ApiClient, * Automatically redirect visitors on mobile devices to a mobile-optimized subdomain. Refer to [Understanding Cloudflare Mobile Redirect](https://support.cloudflare.com/hc/articles/200168336) for more information. */ zone$settings$get$mobile$redirect$setting: (params: Params$zone$settings$get$mobile$redirect$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect`; const headers = { Accept: "application/json" }; @@ -70368,7 +70365,7 @@ export const createClient = (apiClient: ApiClient, * Automatically redirect visitors on mobile devices to a mobile-optimized subdomain. Refer to [Understanding Cloudflare Mobile Redirect](https://support.cloudflare.com/hc/articles/200168336) for more information. */ zone$settings$change$mobile$redirect$setting: (params: Params$zone$settings$change$mobile$redirect$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/mobile_redirect`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70385,7 +70382,7 @@ export const createClient = (apiClient: ApiClient, * Enable Network Error Logging reporting on your zone. (Beta) */ zone$settings$get$nel$setting: (params: Params$zone$settings$get$nel$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/nel\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/nel`; const headers = { Accept: "application/json" }; @@ -70400,7 +70397,7 @@ export const createClient = (apiClient: ApiClient, * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/nel-solving-mobile-speed) for more information. */ zone$settings$change$nel$setting: (params: Params$zone$settings$change$nel$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/nel\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/nel`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70417,7 +70414,7 @@ export const createClient = (apiClient: ApiClient, * Gets Opportunistic Encryption setting. */ zone$settings$get$opportunistic$encryption$setting: (params: Params$zone$settings$get$opportunistic$encryption$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption`; const headers = { Accept: "application/json" }; @@ -70432,7 +70429,7 @@ export const createClient = (apiClient: ApiClient, * Changes Opportunistic Encryption setting. */ zone$settings$change$opportunistic$encryption$setting: (params: Params$zone$settings$change$opportunistic$encryption$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_encryption`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70449,7 +70446,7 @@ export const createClient = (apiClient: ApiClient, * Add an Alt-Svc header to all legitimate requests from Tor, allowing the connection to use our onion services instead of exit nodes. */ zone$settings$get$opportunistic$onion$setting: (params: Params$zone$settings$get$opportunistic$onion$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion`; const headers = { Accept: "application/json" }; @@ -70464,7 +70461,7 @@ export const createClient = (apiClient: ApiClient, * Add an Alt-Svc header to all legitimate requests from Tor, allowing the connection to use our onion services instead of exit nodes. */ zone$settings$change$opportunistic$onion$setting: (params: Params$zone$settings$change$opportunistic$onion$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/opportunistic_onion`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70482,7 +70479,7 @@ export const createClient = (apiClient: ApiClient, * zones also on Cloudflare. */ zone$settings$get$orange_to_orange$setting: (params: Params$zone$settings$get$orange_to_orange$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange`; const headers = { Accept: "application/json" }; @@ -70498,7 +70495,7 @@ export const createClient = (apiClient: ApiClient, * zones also on Cloudflare. */ zone$settings$change$orange_to_orange$setting: (params: Params$zone$settings$change$orange_to_orange$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/orange_to_orange`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70515,7 +70512,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default Cloudflare error page. This does not apply to 522 errors and is limited to Enterprise Zones. */ zone$settings$get$enable$error$pages$on$setting: (params: Params$zone$settings$get$enable$error$pages$on$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru`; const headers = { Accept: "application/json" }; @@ -70530,7 +70527,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default Cloudflare error page. This does not apply to 522 errors and is limited to Enterprise Zones. */ zone$settings$change$enable$error$pages$on$setting: (params: Params$zone$settings$change$enable$error$pages$on$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/origin_error_page_pass_thru`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70549,7 +70546,7 @@ export const createClient = (apiClient: ApiClient, * for more information. */ zone$settings$get$polish$setting: (params: Params$zone$settings$get$polish$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/polish\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/polish`; const headers = { Accept: "application/json" }; @@ -70564,7 +70561,7 @@ export const createClient = (apiClient: ApiClient, * Automatically optimize image loading for website visitors on mobile devices. Refer to our [blog post](http://blog.cloudflare.com/polish-solving-mobile-speed) for more information. */ zone$settings$change$polish$setting: (params: Params$zone$settings$change$polish$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/polish\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/polish`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70581,7 +70578,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare will prefetch any URLs that are included in the response headers. This is limited to Enterprise Zones. */ zone$settings$get$prefetch$preload$setting: (params: Params$zone$settings$get$prefetch$preload$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload`; const headers = { Accept: "application/json" }; @@ -70596,7 +70593,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare will prefetch any URLs that are included in the response headers. This is limited to Enterprise Zones. */ zone$settings$change$prefetch$preload$setting: (params: Params$zone$settings$change$prefetch$preload$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/prefetch_preload`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70613,7 +70610,7 @@ export const createClient = (apiClient: ApiClient, * Maximum time between two read operations from origin. */ zone$settings$get$proxy_read_timeout$setting: (params: Params$zone$settings$get$proxy_read_timeout$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout`; const headers = { Accept: "application/json" }; @@ -70628,7 +70625,7 @@ export const createClient = (apiClient: ApiClient, * Maximum time between two read operations from origin. */ zone$settings$change$proxy_read_timeout$setting: (params: Params$zone$settings$change$proxy_read_timeout$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/proxy_read_timeout`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70645,7 +70642,7 @@ export const createClient = (apiClient: ApiClient, * Value of the Pseudo IPv4 setting. */ zone$settings$get$pseudo$i$pv4$setting: (params: Params$zone$settings$get$pseudo$i$pv4$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4`; const headers = { Accept: "application/json" }; @@ -70660,7 +70657,7 @@ export const createClient = (apiClient: ApiClient, * Value of the Pseudo IPv4 setting. */ zone$settings$change$pseudo$i$pv4$setting: (params: Params$zone$settings$change$pseudo$i$pv4$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/pseudo_ipv4`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70677,7 +70674,7 @@ export const createClient = (apiClient: ApiClient, * Enables or disables buffering of responses from the proxied server. Cloudflare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks. By default, the proxied server streams directly and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ zone$settings$get$response$buffering$setting: (params: Params$zone$settings$get$response$buffering$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering`; const headers = { Accept: "application/json" }; @@ -70692,7 +70689,7 @@ export const createClient = (apiClient: ApiClient, * Enables or disables buffering of responses from the proxied server. Cloudflare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks. By default, the proxied server streams directly and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ zone$settings$change$response$buffering$setting: (params: Params$zone$settings$change$response$buffering$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/response_buffering`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70710,7 +70707,7 @@ export const createClient = (apiClient: ApiClient, * that prioritises rendering your content while loading your site's * Javascript asynchronously. Turning on Rocket Loader will immediately * improve a web page's rendering time sometimes measured as Time to First - * Paint (TTFP), and also the \`window.onload\` time (assuming there is + * Paint (TTFP), and also the `window.onload` time (assuming there is * JavaScript on the page). This can have a positive impact on your Google * search ranking. When turned on, Rocket Loader will automatically defer * the loading of all Javascript referenced in your HTML, with no @@ -70719,7 +70716,7 @@ export const createClient = (apiClient: ApiClient, * for more information. */ zone$settings$get$rocket_loader$setting: (params: Params$zone$settings$get$rocket_loader$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader`; const headers = { Accept: "application/json" }; @@ -70735,7 +70732,7 @@ export const createClient = (apiClient: ApiClient, * that prioritises rendering your content while loading your site's * Javascript asynchronously. Turning on Rocket Loader will immediately * improve a web page's rendering time sometimes measured as Time to First - * Paint (TTFP), and also the \`window.onload\` time (assuming there is + * Paint (TTFP), and also the `window.onload` time (assuming there is * JavaScript on the page). This can have a positive impact on your Google * search ranking. When turned on, Rocket Loader will automatically defer * the loading of all Javascript referenced in your HTML, with no @@ -70744,7 +70741,7 @@ export const createClient = (apiClient: ApiClient, * for more information. */ zone$settings$change$rocket_loader$setting: (params: Params$zone$settings$change$rocket_loader$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/rocket_loader`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70761,7 +70758,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare security header for a zone. */ zone$settings$get$security$header$$$hsts$$setting: (params: Params$zone$settings$get$security$header$$$hsts$$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_header\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_header`; const headers = { Accept: "application/json" }; @@ -70776,7 +70773,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare security header for a zone. */ zone$settings$change$security$header$$$hsts$$setting: (params: Params$zone$settings$change$security$header$$$hsts$$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_header\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_header`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70793,7 +70790,7 @@ export const createClient = (apiClient: ApiClient, * Choose the appropriate security profile for your website, which will automatically adjust each of the security settings. If you choose to customize an individual security setting, the profile will become Custom. (https://support.cloudflare.com/hc/en-us/articles/200170056). */ zone$settings$get$security$level$setting: (params: Params$zone$settings$get$security$level$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_level\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_level`; const headers = { Accept: "application/json" }; @@ -70808,7 +70805,7 @@ export const createClient = (apiClient: ApiClient, * Choose the appropriate security profile for your website, which will automatically adjust each of the security settings. If you choose to customize an individual security setting, the profile will become Custom. (https://support.cloudflare.com/hc/en-us/articles/200170056). */ zone$settings$change$security$level$setting: (params: Params$zone$settings$change$security$level$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/security_level\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/security_level`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70825,7 +70822,7 @@ export const createClient = (apiClient: ApiClient, * If there is sensitive content on your website that you want visible to real visitors, but that you want to hide from suspicious visitors, all you have to do is wrap the content with Cloudflare SSE tags. Wrap any content that you want to be excluded from suspicious visitors in the following SSE tags: . For example: Bad visitors won't see my phone number, 555-555-5555 . Note: SSE only will work with HTML. If you have HTML minification enabled, you won't see the SSE tags in your HTML source when it's served through Cloudflare. SSE will still function in this case, as Cloudflare's HTML minification and SSE functionality occur on-the-fly as the resource moves through our network to the visitor's computer. (https://support.cloudflare.com/hc/en-us/articles/200170036). */ zone$settings$get$server$side$exclude$setting: (params: Params$zone$settings$get$server$side$exclude$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude`; const headers = { Accept: "application/json" }; @@ -70840,7 +70837,7 @@ export const createClient = (apiClient: ApiClient, * If there is sensitive content on your website that you want visible to real visitors, but that you want to hide from suspicious visitors, all you have to do is wrap the content with Cloudflare SSE tags. Wrap any content that you want to be excluded from suspicious visitors in the following SSE tags: . For example: Bad visitors won't see my phone number, 555-555-5555 . Note: SSE only will work with HTML. If you have HTML minification enabled, you won't see the SSE tags in your HTML source when it's served through Cloudflare. SSE will still function in this case, as Cloudflare's HTML minification and SSE functionality occur on-the-fly as the resource moves through our network to the visitor's computer. (https://support.cloudflare.com/hc/en-us/articles/200170036). */ zone$settings$change$server$side$exclude$setting: (params: Params$zone$settings$change$server$side$exclude$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/server_side_exclude`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70857,7 +70854,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare will treat files with the same query strings as the same file in cache, regardless of the order of the query strings. This is limited to Enterprise Zones. */ zone$settings$get$enable$query$string$sort$setting: (params: Params$zone$settings$get$enable$query$string$sort$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache`; const headers = { Accept: "application/json" }; @@ -70872,7 +70869,7 @@ export const createClient = (apiClient: ApiClient, * Cloudflare will treat files with the same query strings as the same file in cache, regardless of the order of the query strings. This is limited to Enterprise Zones. */ zone$settings$change$enable$query$string$sort$setting: (params: Params$zone$settings$change$enable$query$string$sort$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/sort_query_string_for_cache`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70889,7 +70886,7 @@ export const createClient = (apiClient: ApiClient, * SSL encrypts your visitor's connection and safeguards credit card numbers and other personal data to and from your website. SSL can take up to 5 minutes to fully activate. Requires Cloudflare active on your root domain or www domain. Off: no SSL between the visitor and Cloudflare, and no SSL between Cloudflare and your web server (all HTTP traffic). Flexible: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, but no SSL between Cloudflare and your web server. You don't need to have an SSL cert on your web server, but your vistors will still see the site as being HTTPS enabled. Full: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have your own SSL cert or self-signed cert at the very least. Full (Strict): SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have a valid SSL certificate installed on your web server. This certificate must be signed by a certificate authority, have an expiration date in the future, and respond for the request domain name (hostname). (https://support.cloudflare.com/hc/en-us/articles/200170416). */ zone$settings$get$ssl$setting: (params: Params$zone$settings$get$ssl$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl`; const headers = { Accept: "application/json" }; @@ -70904,7 +70901,7 @@ export const createClient = (apiClient: ApiClient, * SSL encrypts your visitor's connection and safeguards credit card numbers and other personal data to and from your website. SSL can take up to 5 minutes to fully activate. Requires Cloudflare active on your root domain or www domain. Off: no SSL between the visitor and Cloudflare, and no SSL between Cloudflare and your web server (all HTTP traffic). Flexible: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, but no SSL between Cloudflare and your web server. You don't need to have an SSL cert on your web server, but your vistors will still see the site as being HTTPS enabled. Full: SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have your own SSL cert or self-signed cert at the very least. Full (Strict): SSL between the visitor and Cloudflare -- visitor sees HTTPS on your site, and SSL between Cloudflare and your web server. You'll need to have a valid SSL certificate installed on your web server. This certificate must be signed by a certificate authority, have an expiration date in the future, and respond for the request domain name (hostname). (https://support.cloudflare.com/hc/en-us/articles/200170416). */ zone$settings$change$ssl$setting: (params: Params$zone$settings$change$ssl$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70923,7 +70920,7 @@ export const createClient = (apiClient: ApiClient, * your origin servers support. */ zone$settings$get$ssl_recommender$setting: (params: Params$zone$settings$get$ssl_recommender$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender`; const headers = { Accept: "application/json" }; @@ -70940,7 +70937,7 @@ export const createClient = (apiClient: ApiClient, * your origin servers support. */ zone$settings$change$ssl_recommender$setting: (params: Params$zone$settings$change$ssl_recommender$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/ssl_recommender`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70957,7 +70954,7 @@ export const createClient = (apiClient: ApiClient, * Gets TLS 1.3 setting enabled for a zone. */ zone$settings$get$tls$1$$3$setting$enabled$for$a$zone: (params: Params$zone$settings$get$tls$1$$3$setting$enabled$for$a$zone, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3`; const headers = { Accept: "application/json" }; @@ -70972,7 +70969,7 @@ export const createClient = (apiClient: ApiClient, * Changes TLS 1.3 setting. */ zone$settings$change$tls$1$$3$setting: (params: Params$zone$settings$change$tls$1$$3$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_1_3`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -70989,7 +70986,7 @@ export const createClient = (apiClient: ApiClient, * TLS Client Auth requires Cloudflare to connect to your origin server using a client certificate (Enterprise Only). */ zone$settings$get$tls$client$auth$setting: (params: Params$zone$settings$get$tls$client$auth$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth`; const headers = { Accept: "application/json" }; @@ -71004,7 +71001,7 @@ export const createClient = (apiClient: ApiClient, * TLS Client Auth requires Cloudflare to connect to your origin server using a client certificate (Enterprise Only). */ zone$settings$change$tls$client$auth$setting: (params: Params$zone$settings$change$tls$client$auth$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/tls_client_auth`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71021,7 +71018,7 @@ export const createClient = (apiClient: ApiClient, * Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin. This is limited to Enterprise Zones. */ zone$settings$get$true$client$ip$setting: (params: Params$zone$settings$get$true$client$ip$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header`; const headers = { Accept: "application/json" }; @@ -71036,7 +71033,7 @@ export const createClient = (apiClient: ApiClient, * Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin. This is limited to Enterprise Zones. */ zone$settings$change$true$client$ip$setting: (params: Params$zone$settings$change$true$client$ip$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/true_client_ip_header`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71053,7 +71050,7 @@ export const createClient = (apiClient: ApiClient, * The WAF examines HTTP requests to your website. It inspects both GET and POST requests and applies rules to help filter out illegitimate traffic from legitimate website visitors. The Cloudflare WAF inspects website addresses or URLs to detect anything out of the ordinary. If the Cloudflare WAF determines suspicious user behavior, then the WAF will 'challenge' the web visitor with a page that asks them to submit a CAPTCHA successfully to continue their action. If the challenge is failed, the action will be stopped. What this means is that Cloudflare's WAF will block any traffic identified as illegitimate before it reaches your origin web server. (https://support.cloudflare.com/hc/en-us/articles/200172016). */ zone$settings$get$web$application$firewall$$$waf$$setting: (params: Params$zone$settings$get$web$application$firewall$$$waf$$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/waf\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/waf`; const headers = { Accept: "application/json" }; @@ -71068,7 +71065,7 @@ export const createClient = (apiClient: ApiClient, * The WAF examines HTTP requests to your website. It inspects both GET and POST requests and applies rules to help filter out illegitimate traffic from legitimate website visitors. The Cloudflare WAF inspects website addresses or URLs to detect anything out of the ordinary. If the Cloudflare WAF determines suspicious user behavior, then the WAF will 'challenge' the web visitor with a page that asks them to submit a CAPTCHA successfully to continue their action. If the challenge is failed, the action will be stopped. What this means is that Cloudflare's WAF will block any traffic identified as illegitimate before it reaches your origin web server. (https://support.cloudflare.com/hc/en-us/articles/200172016). */ zone$settings$change$web$application$firewall$$$waf$$setting: (params: Params$zone$settings$change$web$application$firewall$$$waf$$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/waf\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/waf`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71085,7 +71082,7 @@ export const createClient = (apiClient: ApiClient, * When the client requesting the image supports the WebP image codec, and WebP offers a performance advantage over the original image format, Cloudflare will serve a WebP version of the original image. */ zone$settings$get$web$p$setting: (params: Params$zone$settings$get$web$p$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/webp\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/webp`; const headers = { Accept: "application/json" }; @@ -71100,7 +71097,7 @@ export const createClient = (apiClient: ApiClient, * When the client requesting the image supports the WebP image codec, and WebP offers a performance advantage over the original image format, Cloudflare will serve a WebP version of the original image. */ zone$settings$change$web$p$setting: (params: Params$zone$settings$change$web$p$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/webp\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/webp`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71117,7 +71114,7 @@ export const createClient = (apiClient: ApiClient, * Gets Websockets setting. For more information about Websockets, please refer to [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ zone$settings$get$web$sockets$setting: (params: Params$zone$settings$get$web$sockets$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/websockets\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/websockets`; const headers = { Accept: "application/json" }; @@ -71132,7 +71129,7 @@ export const createClient = (apiClient: ApiClient, * Changes Websockets setting. For more information about Websockets, please refer to [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ zone$settings$change$web$sockets$setting: (params: Params$zone$settings$change$web$sockets$setting, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/websockets\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/websockets`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71149,7 +71146,7 @@ export const createClient = (apiClient: ApiClient, * Gets latest Zaraz configuration for a zone. It can be preview or published configuration, whichever was the last updated. Secret variables values will not be included. */ get$zones$zone_identifier$zaraz$config: (params: Params$get$zones$zone_identifier$zaraz$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config`; const headers = { Accept: "application/json" }; @@ -71164,7 +71161,7 @@ export const createClient = (apiClient: ApiClient, * Updates Zaraz configuration for a zone. */ put$zones$zone_identifier$zaraz$config: (params: Params$put$zones$zone_identifier$zaraz$config, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/config`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71181,7 +71178,7 @@ export const createClient = (apiClient: ApiClient, * Gets default Zaraz configuration for a zone. */ get$zones$zone_identifier$zaraz$default: (params: Params$get$zones$zone_identifier$zaraz$default, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/default\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/default`; const headers = { Accept: "application/json" }; @@ -71196,7 +71193,7 @@ export const createClient = (apiClient: ApiClient, * Exports full current published Zaraz configuration for a zone, secret variables included. */ get$zones$zone_identifier$zaraz$export: (params: Params$get$zones$zone_identifier$zaraz$export, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/export\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/export`; const headers = { Accept: "application/json" }; @@ -71211,7 +71208,7 @@ export const createClient = (apiClient: ApiClient, * Lists a history of published Zaraz configuration records for a zone. */ get$zones$zone_identifier$zaraz$history: (params: Params$get$zones$zone_identifier$zaraz$history, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history`; const headers = { Accept: "application/json" }; @@ -71233,7 +71230,7 @@ export const createClient = (apiClient: ApiClient, * Restores a historical published Zaraz configuration by ID for a zone. */ put$zones$zone_identifier$zaraz$history: (params: Params$put$zones$zone_identifier$zaraz$history, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71250,7 +71247,7 @@ export const createClient = (apiClient: ApiClient, * Gets a history of published Zaraz configurations by ID(s) for a zone. */ get$zones$zone_identifier$zaraz$config$history: (params: Params$get$zones$zone_identifier$zaraz$config$history, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history/configs\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/history/configs`; const headers = { Accept: "application/json" }; @@ -71269,7 +71266,7 @@ export const createClient = (apiClient: ApiClient, * Publish current Zaraz preview configuration for a zone. */ post$zones$zone_identifier$zaraz$publish: (params: Params$post$zones$zone_identifier$zaraz$publish, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/publish\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/publish`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71286,7 +71283,7 @@ export const createClient = (apiClient: ApiClient, * Gets Zaraz workflow for a zone. */ get$zones$zone_identifier$zaraz$workflow: (params: Params$get$zones$zone_identifier$zaraz$workflow, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow`; const headers = { Accept: "application/json" }; @@ -71301,7 +71298,7 @@ export const createClient = (apiClient: ApiClient, * Updates Zaraz workflow for a zone. */ put$zones$zone_identifier$zaraz$workflow: (params: Params$put$zones$zone_identifier$zaraz$workflow, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/settings/zaraz/workflow`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71318,7 +71315,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves quota for all plans, as well as the current zone quota. */ speed$get$availabilities: (params: Params$speed$get$availabilities, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/availabilities\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/availabilities`; const headers = { Accept: "application/json" }; @@ -71333,7 +71330,7 @@ export const createClient = (apiClient: ApiClient, * Lists all webpages which have been tested. */ speed$list$pages: (params: Params$speed$list$pages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages`; const headers = { Accept: "application/json" }; @@ -71348,7 +71345,7 @@ export const createClient = (apiClient: ApiClient, * Test history (list of tests) for a specific webpage. */ speed$list$test$history: (params: Params$speed$list$test$history, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { Accept: "application/json" }; @@ -71369,7 +71366,7 @@ export const createClient = (apiClient: ApiClient, * Starts a test for a specific webpage, in a specific region. */ speed$create$test: (params: Params$speed$create$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71386,7 +71383,7 @@ export const createClient = (apiClient: ApiClient, * Deletes all tests for a specific webpage from a specific region. Deleted tests are still counted as part of the quota. */ speed$delete$tests: (params: Params$speed$delete$tests, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests`; const headers = { Accept: "application/json" }; @@ -71405,7 +71402,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves the result of a specific test. */ speed$get$test: (params: Params$speed$get$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/tests/\${encodeURIComponent(params.parameter.test_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/tests/${encodeURIComponent(params.parameter.test_id)}`; const headers = { Accept: "application/json" }; @@ -71420,7 +71417,7 @@ export const createClient = (apiClient: ApiClient, * Lists the core web vital metrics trend over time for a specific page. */ speed$list$page$trend: (params: Params$speed$list$page$trend, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/\${encodeURIComponent(params.parameter.url)}/trend\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/pages/${encodeURIComponent(params.parameter.url)}/trend`; const headers = { Accept: "application/json" }; @@ -71444,7 +71441,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves the test schedule for a page in a specific region. */ speed$get$scheduled$test: (params: Params$speed$get$scheduled$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71463,7 +71460,7 @@ export const createClient = (apiClient: ApiClient, * Creates a scheduled test for a page. */ speed$create$scheduled$test: (params: Params$speed$create$scheduled$test, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71482,7 +71479,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a scheduled test for a page. */ speed$delete$test$schedule: (params: Params$speed$delete$test$schedule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/\${encodeURIComponent(params.parameter.url)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/speed_api/schedule/${encodeURIComponent(params.parameter.url)}`; const headers = { Accept: "application/json" }; @@ -71501,7 +71498,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the current URL normalization settings. */ url$normalization$get$url$normalization$settings: (params: Params$url$normalization$get$url$normalization$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/url_normalization\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/url_normalization`; const headers = { Accept: "application/json" }; @@ -71516,7 +71513,7 @@ export const createClient = (apiClient: ApiClient, * Updates the URL normalization settings. */ url$normalization$update$url$normalization$settings: (params: Params$url$normalization$update$url$normalization$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/url_normalization\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/url_normalization`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71530,7 +71527,7 @@ export const createClient = (apiClient: ApiClient, }, /** List Filters */ worker$filters$$$deprecated$$list$filters: (params: Params$worker$filters$$$deprecated$$list$filters, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters`; const headers = { Accept: "application/json" }; @@ -71542,7 +71539,7 @@ export const createClient = (apiClient: ApiClient, }, /** Create Filter */ worker$filters$$$deprecated$$create$filter: (params: Params$worker$filters$$$deprecated$$create$filter, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71556,7 +71553,7 @@ export const createClient = (apiClient: ApiClient, }, /** Update Filter */ worker$filters$$$deprecated$$update$filter: (params: Params$worker$filters$$$deprecated$$update$filter, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters/\${encodeURIComponent(params.parameter.filter_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters/${encodeURIComponent(params.parameter.filter_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71570,7 +71567,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Filter */ worker$filters$$$deprecated$$delete$filter: (params: Params$worker$filters$$$deprecated$$delete$filter, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/filters/\${encodeURIComponent(params.parameter.filter_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/filters/${encodeURIComponent(params.parameter.filter_id)}`; const headers = { Accept: "application/json" }; @@ -71585,7 +71582,7 @@ export const createClient = (apiClient: ApiClient, * Returns routes for a zone. */ worker$routes$list$routes: (params: Params$worker$routes$list$routes, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes`; const headers = { Accept: "application/json" }; @@ -71600,7 +71597,7 @@ export const createClient = (apiClient: ApiClient, * Creates a route that maps a URL pattern to a Worker. */ worker$routes$create$route: (params: Params$worker$routes$create$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71617,7 +71614,7 @@ export const createClient = (apiClient: ApiClient, * Returns information about a route, including URL pattern and Worker. */ worker$routes$get$route: (params: Params$worker$routes$get$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -71632,7 +71629,7 @@ export const createClient = (apiClient: ApiClient, * Updates the URL pattern or Worker associated with a route. */ worker$routes$update$route: (params: Params$worker$routes$update$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71649,7 +71646,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a route. */ worker$routes$delete$route: (params: Params$worker$routes$delete$route, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/routes/\${encodeURIComponent(params.parameter.route_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/routes/${encodeURIComponent(params.parameter.route_id)}`; const headers = { Accept: "application/json" }; @@ -71664,7 +71661,7 @@ export const createClient = (apiClient: ApiClient, * Fetch raw script content for your worker. Note this is the original script content, not JSON encoded. */ worker$script$$$deprecated$$download$worker: (params: Params$worker$script$$$deprecated$$download$worker, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = { Accept: "undefined" }; @@ -71679,7 +71676,7 @@ export const createClient = (apiClient: ApiClient, * Upload a worker, or a new version of a worker. */ worker$script$$$deprecated$$upload$worker: (params: Params$worker$script$$$deprecated$$upload$worker, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = { "Content-Type": "application/javascript", Accept: "application/json" @@ -71696,7 +71693,7 @@ export const createClient = (apiClient: ApiClient, * Delete your Worker. This call has no response body on a successful delete. */ worker$script$$$deprecated$$delete$worker: (params: Params$worker$script$$$deprecated$$delete$worker, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script`; const headers = {}; return apiClient.request({ httpMethod: "DELETE", @@ -71709,7 +71706,7 @@ export const createClient = (apiClient: ApiClient, * List the bindings for a Workers script. */ worker$binding$$$deprecated$$list$bindings: (params: Params$worker$binding$$$deprecated$$list$bindings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_id)}/workers/script/bindings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_id)}/workers/script/bindings`; const headers = { Accept: "application/json" }; @@ -71724,7 +71721,7 @@ export const createClient = (apiClient: ApiClient, * Get Total TLS Settings for a Zone. */ total$tls$total$tls$settings$details: (params: Params$total$tls$total$tls$settings$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls`; const headers = { Accept: "application/json" }; @@ -71739,7 +71736,7 @@ export const createClient = (apiClient: ApiClient, * Set Total TLS Settings or disable the feature for a Zone. */ total$tls$enable$or$disable$total$tls: (params: Params$total$tls$enable$or$disable$total$tls, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/acm/total_tls`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71756,7 +71753,7 @@ export const createClient = (apiClient: ApiClient, * This view provides a breakdown of analytics data by datacenter. Note: This is available to Enterprise customers only. */ zone$analytics$$$deprecated$$get$analytics$by$co$locations: (params: Params$zone$analytics$$$deprecated$$get$analytics$by$co$locations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/analytics/colos\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/analytics/colos`; const headers = { Accept: "application/json" }; @@ -71777,7 +71774,7 @@ export const createClient = (apiClient: ApiClient, * The dashboard view provides both totals and timeseries data for the given zone and time period across the entire Cloudflare network. */ zone$analytics$$$deprecated$$get$dashboard: (params: Params$zone$analytics$$$deprecated$$get$dashboard, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/analytics/dashboard\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/analytics/dashboard`; const headers = { Accept: "application/json" }; @@ -71798,7 +71795,7 @@ export const createClient = (apiClient: ApiClient, * Lists available plans the zone can subscribe to. */ zone$rate$plan$list$available$plans: (params: Params$zone$rate$plan$list$available$plans, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_plans\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_plans`; const headers = { Accept: "application/json" }; @@ -71813,7 +71810,7 @@ export const createClient = (apiClient: ApiClient, * Details of the available plan that the zone can subscribe to. */ zone$rate$plan$available$plan$details: (params: Params$zone$rate$plan$available$plan$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_plans/\${encodeURIComponent(params.parameter.plan_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_plans/${encodeURIComponent(params.parameter.plan_identifier)}`; const headers = { Accept: "application/json" }; @@ -71828,7 +71825,7 @@ export const createClient = (apiClient: ApiClient, * Lists all rate plans the zone can subscribe to. */ zone$rate$plan$list$available$rate$plans: (params: Params$zone$rate$plan$list$available$rate$plans, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/available_rate_plans\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/available_rate_plans`; const headers = { Accept: "application/json" }; @@ -71843,7 +71840,7 @@ export const createClient = (apiClient: ApiClient, * List Hostname Associations */ client$certificate$for$a$zone$list$hostname$associations: (params: Params$client$certificate$for$a$zone$list$hostname$associations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations`; const headers = { Accept: "application/json" }; @@ -71862,7 +71859,7 @@ export const createClient = (apiClient: ApiClient, * Replace Hostname Associations */ client$certificate$for$a$zone$put$hostname$associations: (params: Params$client$certificate$for$a$zone$put$hostname$associations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/certificate_authorities/hostname_associations`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71879,7 +71876,7 @@ export const createClient = (apiClient: ApiClient, * List all of your Zone's API Shield mTLS Client Certificates by Status and/or using Pagination */ client$certificate$for$a$zone$list$client$certificates: (params: Params$client$certificate$for$a$zone$list$client$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates`; const headers = { Accept: "application/json" }; @@ -71902,7 +71899,7 @@ export const createClient = (apiClient: ApiClient, * Create a new API Shield mTLS Client Certificate */ client$certificate$for$a$zone$create$client$certificate: (params: Params$client$certificate$for$a$zone$create$client$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -71919,7 +71916,7 @@ export const createClient = (apiClient: ApiClient, * Get Details for a single mTLS API Shield Client Certificate */ client$certificate$for$a$zone$client$certificate$details: (params: Params$client$certificate$for$a$zone$client$certificate$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -71934,7 +71931,7 @@ export const createClient = (apiClient: ApiClient, * Set a API Shield mTLS Client Certificate to pending_revocation status for processing to revoked status. */ client$certificate$for$a$zone$delete$client$certificate: (params: Params$client$certificate$for$a$zone$delete$client$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -71949,7 +71946,7 @@ export const createClient = (apiClient: ApiClient, * If a API Shield mTLS Client Certificate is in a pending_revocation state, you may reactivate it with this endpoint. */ client$certificate$for$a$zone$edit$client$certificate: (params: Params$client$certificate$for$a$zone$edit$client$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/\${encodeURIComponent(params.parameter.client_certificate_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/client_certificates/${encodeURIComponent(params.parameter.client_certificate_identifier)}`; const headers = { Accept: "application/json" }; @@ -71964,7 +71961,7 @@ export const createClient = (apiClient: ApiClient, * List, search, and filter all of your custom SSL certificates. The higher priority will break ties across overlapping 'legacy_custom' certificates, but 'legacy_custom' certificates will always supercede 'sni_custom' certificates. */ custom$ssl$for$a$zone$list$ssl$configurations: (params: Params$custom$ssl$for$a$zone$list$ssl$configurations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates`; const headers = { Accept: "application/json" }; @@ -71986,7 +71983,7 @@ export const createClient = (apiClient: ApiClient, * Upload a new SSL certificate for a zone. */ custom$ssl$for$a$zone$create$ssl$configuration: (params: Params$custom$ssl$for$a$zone$create$ssl$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72000,7 +71997,7 @@ export const createClient = (apiClient: ApiClient, }, /** SSL Configuration Details */ custom$ssl$for$a$zone$ssl$configuration$details: (params: Params$custom$ssl$for$a$zone$ssl$configuration$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72015,7 +72012,7 @@ export const createClient = (apiClient: ApiClient, * Remove a SSL certificate from a zone. */ custom$ssl$for$a$zone$delete$ssl$configuration: (params: Params$custom$ssl$for$a$zone$delete$ssl$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72030,7 +72027,7 @@ export const createClient = (apiClient: ApiClient, * Upload a new private key and/or PEM/CRT for the SSL certificate. Note: PATCHing a configuration for sni_custom certificates will result in a new resource id being returned, and the previous one being deleted. */ custom$ssl$for$a$zone$edit$ssl$configuration: (params: Params$custom$ssl$for$a$zone$edit$ssl$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72047,7 +72044,7 @@ export const createClient = (apiClient: ApiClient, * If a zone has multiple SSL certificates, you can set the order in which they should be used during a request. The higher priority will break ties across overlapping 'legacy_custom' certificates. */ custom$ssl$for$a$zone$re$prioritize$ssl$certificates: (params: Params$custom$ssl$for$a$zone$re$prioritize$ssl$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/prioritize\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_certificates/prioritize`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72064,7 +72061,7 @@ export const createClient = (apiClient: ApiClient, * List, search, sort, and filter all of your custom hostnames. */ custom$hostname$for$a$zone$list$custom$hostnames: (params: Params$custom$hostname$for$a$zone$list$custom$hostnames, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames`; const headers = { Accept: "application/json" }; @@ -72089,7 +72086,7 @@ export const createClient = (apiClient: ApiClient, * Add a new custom hostname and request that an SSL certificate be issued for it. One of three validation methods—http, txt, email—should be used, with 'http' recommended if the CNAME is already in place (or will be soon). Specifying 'email' will send an email to the WHOIS contacts on file for the base domain plus hostmaster, postmaster, webmaster, admin, administrator. If http is used and the domain is not already pointing to the Managed CNAME host, the PATCH method must be used once it is (to complete validation). */ custom$hostname$for$a$zone$create$custom$hostname: (params: Params$custom$hostname$for$a$zone$create$custom$hostname, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72103,7 +72100,7 @@ export const createClient = (apiClient: ApiClient, }, /** Custom Hostname Details */ custom$hostname$for$a$zone$custom$hostname$details: (params: Params$custom$hostname$for$a$zone$custom$hostname$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72115,7 +72112,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Custom Hostname (and any issued SSL certificates) */ custom$hostname$for$a$zone$delete$custom$hostname$$$and$any$issued$ssl$certificates$: (params: Params$custom$hostname$for$a$zone$delete$custom$hostname$$$and$any$issued$ssl$certificates$, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72130,7 +72127,7 @@ export const createClient = (apiClient: ApiClient, * Modify SSL configuration for a custom hostname. When sent with SSL config that matches existing config, used to indicate that hostname should pass domain control validation (DCV). Can also be used to change validation type, e.g., from 'http' to 'email'. */ custom$hostname$for$a$zone$edit$custom$hostname: (params: Params$custom$hostname$for$a$zone$edit$custom$hostname, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72144,7 +72141,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Fallback Origin for Custom Hostnames */ custom$hostname$fallback$origin$for$a$zone$get$fallback$origin$for$custom$hostnames: (params: Params$custom$hostname$fallback$origin$for$a$zone$get$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { Accept: "application/json" }; @@ -72156,7 +72153,7 @@ export const createClient = (apiClient: ApiClient, }, /** Update Fallback Origin for Custom Hostnames */ custom$hostname$fallback$origin$for$a$zone$update$fallback$origin$for$custom$hostnames: (params: Params$custom$hostname$fallback$origin$for$a$zone$update$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72170,7 +72167,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Fallback Origin for Custom Hostnames */ custom$hostname$fallback$origin$for$a$zone$delete$fallback$origin$for$custom$hostnames: (params: Params$custom$hostname$fallback$origin$for$a$zone$delete$fallback$origin$for$custom$hostnames, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_hostnames/fallback_origin`; const headers = { Accept: "application/json" }; @@ -72185,7 +72182,7 @@ export const createClient = (apiClient: ApiClient, * Fetches all the custom pages at the zone level. */ custom$pages$for$a$zone$list$custom$pages: (params: Params$custom$pages$for$a$zone$list$custom$pages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages`; const headers = { Accept: "application/json" }; @@ -72200,7 +72197,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a custom page. */ custom$pages$for$a$zone$get$a$custom$page: (params: Params$custom$pages$for$a$zone$get$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -72215,7 +72212,7 @@ export const createClient = (apiClient: ApiClient, * Updates the configuration of an existing custom page. */ custom$pages$for$a$zone$update$a$custom$page: (params: Params$custom$pages$for$a$zone$update$a$custom$page, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/custom_pages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72232,7 +72229,7 @@ export const createClient = (apiClient: ApiClient, * Retrieve the account and zone specific unique identifier used as part of the CNAME target for DCV Delegation. */ dcv$delegation$uuid$get: (params: Params$dcv$delegation$uuid$get, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/dcv_delegation/uuid\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/dcv_delegation/uuid`; const headers = { Accept: "application/json" }; @@ -72247,7 +72244,7 @@ export const createClient = (apiClient: ApiClient, * Get information about the settings for your Email Routing zone. */ email$routing$settings$get$email$routing$settings: (params: Params$email$routing$settings$get$email$routing$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing`; const headers = { Accept: "application/json" }; @@ -72262,7 +72259,7 @@ export const createClient = (apiClient: ApiClient, * Disable your Email Routing zone. Also removes additional MX records previously required for Email Routing to work. */ email$routing$settings$disable$email$routing: (params: Params$email$routing$settings$disable$email$routing, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/disable\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/disable`; const headers = { Accept: "application/json" }; @@ -72277,7 +72274,7 @@ export const createClient = (apiClient: ApiClient, * Show the DNS records needed to configure your Email Routing zone. */ email$routing$settings$email$routing$dns$settings: (params: Params$email$routing$settings$email$routing$dns$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/dns\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/dns`; const headers = { Accept: "application/json" }; @@ -72292,7 +72289,7 @@ export const createClient = (apiClient: ApiClient, * Enable you Email Routing zone. Add and lock the necessary MX and SPF records. */ email$routing$settings$enable$email$routing: (params: Params$email$routing$settings$enable$email$routing, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/enable\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/enable`; const headers = { Accept: "application/json" }; @@ -72307,7 +72304,7 @@ export const createClient = (apiClient: ApiClient, * Lists existing routing rules. */ email$routing$routing$rules$list$routing$rules: (params: Params$email$routing$routing$rules$list$routing$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules`; const headers = { Accept: "application/json" }; @@ -72328,7 +72325,7 @@ export const createClient = (apiClient: ApiClient, * Rules consist of a set of criteria for matching emails (such as an email being sent to a specific custom email address) plus a set of actions to take on the email (like forwarding it to a specific destination address). */ email$routing$routing$rules$create$routing$rule: (params: Params$email$routing$routing$rules$create$routing$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72345,7 +72342,7 @@ export const createClient = (apiClient: ApiClient, * Get information for a specific routing rule already created. */ email$routing$routing$rules$get$routing$rule: (params: Params$email$routing$routing$rules$get$routing$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -72360,7 +72357,7 @@ export const createClient = (apiClient: ApiClient, * Update actions and matches, or enable/disable specific routing rules. */ email$routing$routing$rules$update$routing$rule: (params: Params$email$routing$routing$rules$update$routing$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72377,7 +72374,7 @@ export const createClient = (apiClient: ApiClient, * Delete a specific routing rule. */ email$routing$routing$rules$delete$routing$rule: (params: Params$email$routing$routing$rules$delete$routing$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/\${encodeURIComponent(params.parameter.rule_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/${encodeURIComponent(params.parameter.rule_identifier)}`; const headers = { Accept: "application/json" }; @@ -72392,7 +72389,7 @@ export const createClient = (apiClient: ApiClient, * Get information on the default catch-all routing rule. */ email$routing$routing$rules$get$catch$all$rule: (params: Params$email$routing$routing$rules$get$catch$all$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all`; const headers = { Accept: "application/json" }; @@ -72407,7 +72404,7 @@ export const createClient = (apiClient: ApiClient, * Enable or disable catch-all routing rule, or change action to forward to specific destination address. */ email$routing$routing$rules$update$catch$all$rule: (params: Params$email$routing$routing$rules$update$catch$all$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/email/routing/rules/catch_all`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72424,7 +72421,7 @@ export const createClient = (apiClient: ApiClient, * Fetches filters in a zone. You can filter the results using several optional parameters. */ filters$list$filters: (params: Params$filters$list$filters, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { Accept: "application/json" }; @@ -72449,7 +72446,7 @@ export const createClient = (apiClient: ApiClient, * Updates one or more existing filters. */ filters$update$filters: (params: Params$filters$update$filters, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72466,7 +72463,7 @@ export const createClient = (apiClient: ApiClient, * Creates one or more filters. */ filters$create$filters: (params: Params$filters$create$filters, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72483,7 +72480,7 @@ export const createClient = (apiClient: ApiClient, * Deletes one or more existing filters. */ filters$delete$filters: (params: Params$filters$delete$filters, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72500,7 +72497,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a filter. */ filters$get$a$filter: (params: Params$filters$get$a$filter, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72515,7 +72512,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing filter. */ filters$update$a$filter: (params: Params$filters$update$a$filter, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72532,7 +72529,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing filter. */ filters$delete$a$filter: (params: Params$filters$delete$a$filter, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/filters/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/filters/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72547,7 +72544,7 @@ export const createClient = (apiClient: ApiClient, * Fetches Zone Lockdown rules. You can filter the results using several optional parameters. */ zone$lockdown$list$zone$lockdown$rules: (params: Params$zone$lockdown$list$zone$lockdown$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns`; const headers = { Accept: "application/json" }; @@ -72576,7 +72573,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Zone Lockdown rule. */ zone$lockdown$create$a$zone$lockdown$rule: (params: Params$zone$lockdown$create$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72593,7 +72590,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a Zone Lockdown rule. */ zone$lockdown$get$a$zone$lockdown$rule: (params: Params$zone$lockdown$get$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72608,7 +72605,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing Zone Lockdown rule. */ zone$lockdown$update$a$zone$lockdown$rule: (params: Params$zone$lockdown$update$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72625,7 +72622,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing Zone Lockdown rule. */ zone$lockdown$delete$a$zone$lockdown$rule: (params: Params$zone$lockdown$delete$a$zone$lockdown$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/lockdowns/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72640,7 +72637,7 @@ export const createClient = (apiClient: ApiClient, * Fetches firewall rules in a zone. You can filter the results using several optional parameters. */ firewall$rules$list$firewall$rules: (params: Params$firewall$rules$list$firewall$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { Accept: "application/json" }; @@ -72664,7 +72661,7 @@ export const createClient = (apiClient: ApiClient, * Updates one or more existing firewall rules. */ firewall$rules$update$firewall$rules: (params: Params$firewall$rules$update$firewall$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72681,7 +72678,7 @@ export const createClient = (apiClient: ApiClient, * Create one or more firewall rules. */ firewall$rules$create$firewall$rules: (params: Params$firewall$rules$create$firewall$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72698,7 +72695,7 @@ export const createClient = (apiClient: ApiClient, * Deletes existing firewall rules. */ firewall$rules$delete$firewall$rules: (params: Params$firewall$rules$delete$firewall$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72715,7 +72712,7 @@ export const createClient = (apiClient: ApiClient, * Updates the priority of existing firewall rules. */ firewall$rules$update$priority$of$firewall$rules: (params: Params$firewall$rules$update$priority$of$firewall$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72732,7 +72729,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a firewall rule. */ firewall$rules$get$a$firewall$rule: (params: Params$firewall$rules$get$a$firewall$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72751,7 +72748,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing firewall rule. */ firewall$rules$update$a$firewall$rule: (params: Params$firewall$rules$update$a$firewall$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72768,7 +72765,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing firewall rule. */ firewall$rules$delete$a$firewall$rule: (params: Params$firewall$rules$delete$a$firewall$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72785,7 +72782,7 @@ export const createClient = (apiClient: ApiClient, * Updates the priority of an existing firewall rule. */ firewall$rules$update$priority$of$a$firewall$rule: (params: Params$firewall$rules$update$priority$of$a$firewall$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72802,7 +72799,7 @@ export const createClient = (apiClient: ApiClient, * Fetches User Agent Blocking rules in a zone. You can filter the results using several optional parameters. */ user$agent$blocking$rules$list$user$agent$blocking$rules: (params: Params$user$agent$blocking$rules$list$user$agent$blocking$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules`; const headers = { Accept: "application/json" }; @@ -72825,7 +72822,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new User Agent Blocking rule in a zone. */ user$agent$blocking$rules$create$a$user$agent$blocking$rule: (params: Params$user$agent$blocking$rules$create$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72842,7 +72839,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a User Agent Blocking rule. */ user$agent$blocking$rules$get$a$user$agent$blocking$rule: (params: Params$user$agent$blocking$rules$get$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72857,7 +72854,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing User Agent Blocking rule. */ user$agent$blocking$rules$update$a$user$agent$blocking$rule: (params: Params$user$agent$blocking$rules$update$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72874,7 +72871,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing User Agent Blocking rule. */ user$agent$blocking$rules$delete$a$user$agent$blocking$rule: (params: Params$user$agent$blocking$rules$delete$a$user$agent$blocking$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/ua_rules/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72891,7 +72888,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$overrides$list$waf$overrides: (params: Params$waf$overrides$list$waf$overrides, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides`; const headers = { Accept: "application/json" }; @@ -72913,7 +72910,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$overrides$create$a$waf$override: (params: Params$waf$overrides$create$a$waf$override, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72932,7 +72929,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$overrides$get$a$waf$override: (params: Params$waf$overrides$get$a$waf$override, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72949,7 +72946,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$overrides$update$waf$override: (params: Params$waf$overrides$update$waf$override, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -72968,7 +72965,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$overrides$delete$a$waf$override: (params: Params$waf$overrides$delete$a$waf$override, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/overrides/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -72985,7 +72982,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$packages$list$waf$packages: (params: Params$waf$packages$list$waf$packages, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages`; const headers = { Accept: "application/json" }; @@ -73011,7 +73008,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$packages$get$a$waf$package: (params: Params$waf$packages$get$a$waf$package, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73028,7 +73025,7 @@ export const createClient = (apiClient: ApiClient, * **Note:** Applies only to the [previous version of WAF managed rules](https://developers.cloudflare.com/support/firewall/managed-rules-web-application-firewall-waf/understanding-waf-managed-rules-web-application-firewall/). */ waf$packages$update$a$waf$package: (params: Params$waf$packages$update$a$waf$package, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/firewall/waf/packages/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73045,7 +73042,7 @@ export const createClient = (apiClient: ApiClient, * List configured health checks. */ health$checks$list$health$checks: (params: Params$health$checks$list$health$checks, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks`; const headers = { Accept: "application/json" }; @@ -73060,7 +73057,7 @@ export const createClient = (apiClient: ApiClient, * Create a new health check. */ health$checks$create$health$check: (params: Params$health$checks$create$health$check, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73077,7 +73074,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single configured health check. */ health$checks$health$check$details: (params: Params$health$checks$health$check$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73092,7 +73089,7 @@ export const createClient = (apiClient: ApiClient, * Update a configured health check. */ health$checks$update$health$check: (params: Params$health$checks$update$health$check, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73109,7 +73106,7 @@ export const createClient = (apiClient: ApiClient, * Delete a health check. */ health$checks$delete$health$check: (params: Params$health$checks$delete$health$check, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73124,7 +73121,7 @@ export const createClient = (apiClient: ApiClient, * Patch a configured health check. */ health$checks$patch$health$check: (params: Params$health$checks$patch$health$check, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73141,7 +73138,7 @@ export const createClient = (apiClient: ApiClient, * Create a new preview health check. */ health$checks$create$preview$health$check: (params: Params$health$checks$create$preview$health$check, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73158,7 +73155,7 @@ export const createClient = (apiClient: ApiClient, * Fetch a single configured health check preview. */ health$checks$health$check$preview$details: (params: Params$health$checks$health$check$preview$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73173,7 +73170,7 @@ export const createClient = (apiClient: ApiClient, * Delete a health check. */ health$checks$delete$preview$health$check: (params: Params$health$checks$delete$preview$health$check, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/healthchecks/preview/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73188,7 +73185,7 @@ export const createClient = (apiClient: ApiClient, * List the requested TLS setting for the hostnames under this zone. */ per$hostname$tls$settings$list: (params: Params$per$hostname$tls$settings$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}`; const headers = { Accept: "application/json" }; @@ -73203,7 +73200,7 @@ export const createClient = (apiClient: ApiClient, * Update the tls setting value for the hostname. */ per$hostname$tls$settings$put: (params: Params$per$hostname$tls$settings$put, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}/\${encodeURIComponent(params.parameter.hostname)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}/${encodeURIComponent(params.parameter.hostname)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73220,7 +73217,7 @@ export const createClient = (apiClient: ApiClient, * Delete the tls setting value for the hostname. */ per$hostname$tls$settings$delete: (params: Params$per$hostname$tls$settings$delete, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/\${encodeURIComponent(params.parameter.tls_setting)}/\${encodeURIComponent(params.parameter.hostname)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/hostnames/settings/${encodeURIComponent(params.parameter.tls_setting)}/${encodeURIComponent(params.parameter.hostname)}`; const headers = { Accept: "application/json" }; @@ -73235,7 +73232,7 @@ export const createClient = (apiClient: ApiClient, * List all Keyless SSL configurations for a given zone. */ keyless$ssl$for$a$zone$list$keyless$ssl$configurations: (params: Params$keyless$ssl$for$a$zone$list$keyless$ssl$configurations, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates`; const headers = { Accept: "application/json" }; @@ -73247,7 +73244,7 @@ export const createClient = (apiClient: ApiClient, }, /** Create Keyless SSL Configuration */ keyless$ssl$for$a$zone$create$keyless$ssl$configuration: (params: Params$keyless$ssl$for$a$zone$create$keyless$ssl$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73264,7 +73261,7 @@ export const createClient = (apiClient: ApiClient, * Get details for one Keyless SSL configuration. */ keyless$ssl$for$a$zone$get$keyless$ssl$configuration: (params: Params$keyless$ssl$for$a$zone$get$keyless$ssl$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73276,7 +73273,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Keyless SSL Configuration */ keyless$ssl$for$a$zone$delete$keyless$ssl$configuration: (params: Params$keyless$ssl$for$a$zone$delete$keyless$ssl$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73291,7 +73288,7 @@ export const createClient = (apiClient: ApiClient, * This will update attributes of a Keyless SSL. Consists of one or more of the following: host,name,port. */ keyless$ssl$for$a$zone$edit$keyless$ssl$configuration: (params: Params$keyless$ssl$for$a$zone$edit$keyless$ssl$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/keyless_certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73308,7 +73305,7 @@ export const createClient = (apiClient: ApiClient, * Gets log retention flag for Logpull API. */ logs$received$get$log$retention$flag: (params: Params$logs$received$get$log$retention$flag, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag`; const headers = { Accept: "application/json" }; @@ -73323,7 +73320,7 @@ export const createClient = (apiClient: ApiClient, * Updates log retention flag for Logpull API. */ logs$received$update$log$retention$flag: (params: Params$logs$received$update$log$retention$flag, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/control/retention/flag`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73337,10 +73334,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Get logs RayIDs - * The \`/rayids\` api route allows lookups by specific rayid. The rayids route will return zero, one, or more records (ray ids are not unique). + * The `/rayids` api route allows lookups by specific rayid. The rayids route will return zero, one, or more records (ray ids are not unique). */ logs$received$get$logs$ray$i$ds: (params: Params$logs$received$get$logs$ray$i$ds, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/rayids/\${encodeURIComponent(params.parameter.ray_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/rayids/${encodeURIComponent(params.parameter.ray_identifier)}`; const headers = { Accept: "application/json" }; @@ -73357,10 +73354,10 @@ export const createClient = (apiClient: ApiClient, }, /** * Get logs received - * The \`/received\` api route allows customers to retrieve their edge HTTP logs. The basic access pattern is "give me all the logs for zone Z for minute M", where the minute M refers to the time records were received at Cloudflare's central data center. \`start\` is inclusive, and \`end\` is exclusive. Because of that, to get all data, at minutely cadence, starting at 10AM, the proper values are: \`start=2018-05-20T10:00:00Z&end=2018-05-20T10:01:00Z\`, then \`start=2018-05-20T10:01:00Z&end=2018-05-20T10:02:00Z\` and so on; the overlap will be handled properly. + * The `/received` api route allows customers to retrieve their edge HTTP logs. The basic access pattern is "give me all the logs for zone Z for minute M", where the minute M refers to the time records were received at Cloudflare's central data center. `start` is inclusive, and `end` is exclusive. Because of that, to get all data, at minutely cadence, starting at 10AM, the proper values are: `start=2018-05-20T10:00:00Z&end=2018-05-20T10:01:00Z`, then `start=2018-05-20T10:01:00Z&end=2018-05-20T10:02:00Z` and so on; the overlap will be handled properly. */ logs$received$get$logs$received: (params: Params$logs$received$get$logs$received, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/received\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/received`; const headers = { Accept: "application/json" }; @@ -73384,7 +73381,7 @@ export const createClient = (apiClient: ApiClient, * Lists all fields available. The response is json object with key-value pairs, where keys are field names, and values are descriptions. */ logs$received$list$fields: (params: Params$logs$received$list$fields, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/logs/received/fields\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/logs/received/fields`; const headers = { Accept: "application/json" }; @@ -73396,7 +73393,7 @@ export const createClient = (apiClient: ApiClient, }, /** List Certificates */ zone$level$authenticated$origin$pulls$list$certificates: (params: Params$zone$level$authenticated$origin$pulls$list$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth`; const headers = { Accept: "application/json" }; @@ -73411,7 +73408,7 @@ export const createClient = (apiClient: ApiClient, * Upload your own certificate you want Cloudflare to use for edge-to-origin communication to override the shared certificate. Please note that it is important to keep only one certificate active. Also, make sure to enable zone-level authenticated origin pulls by making a PUT call to settings endpoint to see the uploaded certificate in use. */ zone$level$authenticated$origin$pulls$upload$certificate: (params: Params$zone$level$authenticated$origin$pulls$upload$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73425,7 +73422,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get Certificate Details */ zone$level$authenticated$origin$pulls$get$certificate$details: (params: Params$zone$level$authenticated$origin$pulls$get$certificate$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73437,7 +73434,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Certificate */ zone$level$authenticated$origin$pulls$delete$certificate: (params: Params$zone$level$authenticated$origin$pulls$delete$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73452,7 +73449,7 @@ export const createClient = (apiClient: ApiClient, * Associate a hostname to a certificate and enable, disable or invalidate the association. If disabled, client certificate will not be sent to the hostname even if activated at the zone level. 100 maximum associations on a single certificate are allowed. Note: Use a null value for parameter *enabled* to invalidate the association. */ per$hostname$authenticated$origin$pull$enable$or$disable$a$hostname$for$client$authentication: (params: Params$per$hostname$authenticated$origin$pull$enable$or$disable$a$hostname$for$client$authentication, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73466,7 +73463,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get the Hostname Status for Client Authentication */ per$hostname$authenticated$origin$pull$get$the$hostname$status$for$client$authentication: (params: Params$per$hostname$authenticated$origin$pull$get$the$hostname$status$for$client$authentication, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/\${encodeURIComponent(params.parameter.hostname)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/${encodeURIComponent(params.parameter.hostname)}`; const headers = { Accept: "application/json" }; @@ -73478,7 +73475,7 @@ export const createClient = (apiClient: ApiClient, }, /** List Certificates */ per$hostname$authenticated$origin$pull$list$certificates: (params: Params$per$hostname$authenticated$origin$pull$list$certificates, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates`; const headers = { Accept: "application/json" }; @@ -73493,7 +73490,7 @@ export const createClient = (apiClient: ApiClient, * Upload a certificate to be used for client authentication on a hostname. 10 hostname certificates per zone are allowed. */ per$hostname$authenticated$origin$pull$upload$a$hostname$client$certificate: (params: Params$per$hostname$authenticated$origin$pull$upload$a$hostname$client$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73510,7 +73507,7 @@ export const createClient = (apiClient: ApiClient, * Get the certificate by ID to be used for client authentication on a hostname. */ per$hostname$authenticated$origin$pull$get$the$hostname$client$certificate: (params: Params$per$hostname$authenticated$origin$pull$get$the$hostname$client$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73522,7 +73519,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Hostname Client Certificate */ per$hostname$authenticated$origin$pull$delete$hostname$client$certificate: (params: Params$per$hostname$authenticated$origin$pull$delete$hostname$client$certificate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/hostnames/certificates/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73537,7 +73534,7 @@ export const createClient = (apiClient: ApiClient, * Get whether zone-level authenticated origin pulls is enabled or not. It is false by default. */ zone$level$authenticated$origin$pulls$get$enablement$setting$for$zone: (params: Params$zone$level$authenticated$origin$pulls$get$enablement$setting$for$zone, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings`; const headers = { Accept: "application/json" }; @@ -73552,7 +73549,7 @@ export const createClient = (apiClient: ApiClient, * Enable or disable zone-level authenticated origin pulls. 'enabled' should be set true either before/after the certificate is uploaded to see the certificate in use. */ zone$level$authenticated$origin$pulls$set$enablement$for$zone: (params: Params$zone$level$authenticated$origin$pulls$set$enablement$for$zone, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/origin_tls_client_auth/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73569,7 +73566,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the rate limits for a zone. */ rate$limits$for$a$zone$list$rate$limits: (params: Params$rate$limits$for$a$zone$list$rate$limits, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits`; const headers = { Accept: "application/json" }; @@ -73589,7 +73586,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new rate limit for a zone. Refer to the object definition for a list of required attributes. */ rate$limits$for$a$zone$create$a$rate$limit: (params: Params$rate$limits$for$a$zone$create$a$rate$limit, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73606,7 +73603,7 @@ export const createClient = (apiClient: ApiClient, * Fetches the details of a rate limit. */ rate$limits$for$a$zone$get$a$rate$limit: (params: Params$rate$limits$for$a$zone$get$a$rate$limit, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73621,7 +73618,7 @@ export const createClient = (apiClient: ApiClient, * Updates an existing rate limit. */ rate$limits$for$a$zone$update$a$rate$limit: (params: Params$rate$limits$for$a$zone$update$a$rate$limit, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73638,7 +73635,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an existing rate limit. */ rate$limits$for$a$zone$delete$a$rate$limit: (params: Params$rate$limits$for$a$zone$delete$a$rate$limit, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/\${encodeURIComponent(params.parameter.id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/rate_limits/${encodeURIComponent(params.parameter.id)}`; const headers = { Accept: "application/json" }; @@ -73653,7 +73650,7 @@ export const createClient = (apiClient: ApiClient, * Sends AXFR zone transfer request to primary nameserver(s). */ secondary$dns$$$secondary$zone$$force$axfr: (params: Params$secondary$dns$$$secondary$zone$$force$axfr, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/force_axfr\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/force_axfr`; const headers = { Accept: "application/json" }; @@ -73668,7 +73665,7 @@ export const createClient = (apiClient: ApiClient, * Get secondary zone configuration for incoming zone transfers. */ secondary$dns$$$secondary$zone$$secondary$zone$configuration$details: (params: Params$secondary$dns$$$secondary$zone$$secondary$zone$configuration$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { Accept: "application/json" }; @@ -73683,7 +73680,7 @@ export const createClient = (apiClient: ApiClient, * Update secondary zone configuration for incoming zone transfers. */ secondary$dns$$$secondary$zone$$update$secondary$zone$configuration: (params: Params$secondary$dns$$$secondary$zone$$update$secondary$zone$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73700,7 +73697,7 @@ export const createClient = (apiClient: ApiClient, * Create secondary zone configuration for incoming zone transfers. */ secondary$dns$$$secondary$zone$$create$secondary$zone$configuration: (params: Params$secondary$dns$$$secondary$zone$$create$secondary$zone$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73717,7 +73714,7 @@ export const createClient = (apiClient: ApiClient, * Delete secondary zone configuration for incoming zone transfers. */ secondary$dns$$$secondary$zone$$delete$secondary$zone$configuration: (params: Params$secondary$dns$$$secondary$zone$$delete$secondary$zone$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/incoming`; const headers = { Accept: "application/json" }; @@ -73732,7 +73729,7 @@ export const createClient = (apiClient: ApiClient, * Get primary zone configuration for outgoing zone transfers. */ secondary$dns$$$primary$zone$$primary$zone$configuration$details: (params: Params$secondary$dns$$$primary$zone$$primary$zone$configuration$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { Accept: "application/json" }; @@ -73747,7 +73744,7 @@ export const createClient = (apiClient: ApiClient, * Update primary zone configuration for outgoing zone transfers. */ secondary$dns$$$primary$zone$$update$primary$zone$configuration: (params: Params$secondary$dns$$$primary$zone$$update$primary$zone$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73764,7 +73761,7 @@ export const createClient = (apiClient: ApiClient, * Create primary zone configuration for outgoing zone transfers. */ secondary$dns$$$primary$zone$$create$primary$zone$configuration: (params: Params$secondary$dns$$$primary$zone$$create$primary$zone$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73781,7 +73778,7 @@ export const createClient = (apiClient: ApiClient, * Delete primary zone configuration for outgoing zone transfers. */ secondary$dns$$$primary$zone$$delete$primary$zone$configuration: (params: Params$secondary$dns$$$primary$zone$$delete$primary$zone$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing`; const headers = { Accept: "application/json" }; @@ -73796,7 +73793,7 @@ export const createClient = (apiClient: ApiClient, * Disable outgoing zone transfers for primary zone and clears IXFR backlog of primary zone. */ secondary$dns$$$primary$zone$$disable$outgoing$zone$transfers: (params: Params$secondary$dns$$$primary$zone$$disable$outgoing$zone$transfers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/disable\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/disable`; const headers = { Accept: "application/json" }; @@ -73811,7 +73808,7 @@ export const createClient = (apiClient: ApiClient, * Enable outgoing zone transfers for primary zone. */ secondary$dns$$$primary$zone$$enable$outgoing$zone$transfers: (params: Params$secondary$dns$$$primary$zone$$enable$outgoing$zone$transfers, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/enable\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/enable`; const headers = { Accept: "application/json" }; @@ -73826,7 +73823,7 @@ export const createClient = (apiClient: ApiClient, * Notifies the secondary nameserver(s) and clears IXFR backlog of primary zone. */ secondary$dns$$$primary$zone$$force$dns$notify: (params: Params$secondary$dns$$$primary$zone$$force$dns$notify, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/force_notify\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/force_notify`; const headers = { Accept: "application/json" }; @@ -73841,7 +73838,7 @@ export const createClient = (apiClient: ApiClient, * Get primary zone transfer status. */ secondary$dns$$$primary$zone$$get$outgoing$zone$transfer$status: (params: Params$secondary$dns$$$primary$zone$$get$outgoing$zone$transfer$status, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/status\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/secondary_dns/outgoing/status`; const headers = { Accept: "application/json" }; @@ -73853,7 +73850,7 @@ export const createClient = (apiClient: ApiClient, }, /** All Snippets */ zone$snippets: (params: Params$zone$snippets, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets`; const headers = { Accept: "application/json" }; @@ -73865,7 +73862,7 @@ export const createClient = (apiClient: ApiClient, }, /** Snippet */ zone$snippets$snippet: (params: Params$zone$snippets$snippet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { Accept: "application/json" }; @@ -73877,7 +73874,7 @@ export const createClient = (apiClient: ApiClient, }, /** Put Snippet */ zone$snippets$snippet$put: (params: Params$zone$snippets$snippet$put, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { "Content-Type": "multipart/form-data", Accept: "application/json" @@ -73891,7 +73888,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Snippet */ zone$snippets$snippet$delete: (params: Params$zone$snippets$snippet$delete, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}`; const headers = { Accept: "application/json" }; @@ -73903,7 +73900,7 @@ export const createClient = (apiClient: ApiClient, }, /** Snippet Content */ zone$snippets$snippet$content: (params: Params$zone$snippets$snippet$content, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/\${encodeURIComponent(params.parameter.snippet_name)}/content\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/${encodeURIComponent(params.parameter.snippet_name)}/content`; const headers = { Accept: "multipart/form-data" }; @@ -73915,7 +73912,7 @@ export const createClient = (apiClient: ApiClient, }, /** Rules */ zone$snippets$snippet$rules: (params: Params$zone$snippets$snippet$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules`; const headers = { Accept: "application/json" }; @@ -73927,7 +73924,7 @@ export const createClient = (apiClient: ApiClient, }, /** Put Rules */ zone$snippets$snippet$rules$put: (params: Params$zone$snippets$snippet$rules$put, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/snippets/snippet_rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -73944,7 +73941,7 @@ export const createClient = (apiClient: ApiClient, * For a given zone, list all active certificate packs. */ certificate$packs$list$certificate$packs: (params: Params$certificate$packs$list$certificate$packs, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs`; const headers = { Accept: "application/json" }; @@ -73963,7 +73960,7 @@ export const createClient = (apiClient: ApiClient, * For a given zone, get a certificate pack. */ certificate$packs$get$certificate$pack: (params: Params$certificate$packs$get$certificate$pack, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73978,7 +73975,7 @@ export const createClient = (apiClient: ApiClient, * For a given zone, delete an advanced certificate pack. */ certificate$packs$delete$advanced$certificate$manager$certificate$pack: (params: Params$certificate$packs$delete$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -73993,7 +73990,7 @@ export const createClient = (apiClient: ApiClient, * For a given zone, restart validation for an advanced certificate pack. This is only a validation operation for a Certificate Pack in a validation_timed_out status. */ certificate$packs$restart$validation$for$advanced$certificate$manager$certificate$pack: (params: Params$certificate$packs$restart$validation$for$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74008,7 +74005,7 @@ export const createClient = (apiClient: ApiClient, * For a given zone, order an advanced certificate pack. */ certificate$packs$order$advanced$certificate$manager$certificate$pack: (params: Params$certificate$packs$order$advanced$certificate$manager$certificate$pack, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/order\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/order`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74025,7 +74022,7 @@ export const createClient = (apiClient: ApiClient, * For a given zone, list certificate pack quotas. */ certificate$packs$get$certificate$pack$quotas: (params: Params$certificate$packs$get$certificate$pack$quotas, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/quota\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/certificate_packs/quota`; const headers = { Accept: "application/json" }; @@ -74040,7 +74037,7 @@ export const createClient = (apiClient: ApiClient, * Retrieve the SSL/TLS Recommender's recommendation for a zone. */ ssl$$tls$mode$recommendation$ssl$$tls$recommendation: (params: Params$ssl$$tls$mode$recommendation$ssl$$tls$recommendation, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/recommendation\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/recommendation`; const headers = { Accept: "application/json" }; @@ -74055,7 +74052,7 @@ export const createClient = (apiClient: ApiClient, * Get Universal SSL Settings for a Zone. */ universal$ssl$settings$for$a$zone$universal$ssl$settings$details: (params: Params$universal$ssl$settings$for$a$zone$universal$ssl$settings$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings`; const headers = { Accept: "application/json" }; @@ -74070,7 +74067,7 @@ export const createClient = (apiClient: ApiClient, * Patch Universal SSL Settings for a Zone. */ universal$ssl$settings$for$a$zone$edit$universal$ssl$settings: (params: Params$universal$ssl$settings$for$a$zone$edit$universal$ssl$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/universal/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74087,7 +74084,7 @@ export const createClient = (apiClient: ApiClient, * Get SSL Verification Info for a Zone. */ ssl$verification$ssl$verification$details: (params: Params$ssl$verification$ssl$verification$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification`; const headers = { Accept: "application/json" }; @@ -74106,7 +74103,7 @@ export const createClient = (apiClient: ApiClient, * Edit SSL validation method for a certificate pack. A PATCH request will request an immediate validation check on any certificate, and return the updated status. If a validation method is provided, the validation will be immediately attempted using that method. */ ssl$verification$edit$ssl$certificate$pack$validation$method: (params: Params$ssl$verification$edit$ssl$certificate$pack$validation$method, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification/\${encodeURIComponent(params.parameter.cert_pack_uuid)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/ssl/verification/${encodeURIComponent(params.parameter.cert_pack_uuid)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74123,7 +74120,7 @@ export const createClient = (apiClient: ApiClient, * Lists waiting rooms. */ waiting$room$list$waiting$rooms: (params: Params$waiting$room$list$waiting$rooms, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms`; const headers = { Accept: "application/json" }; @@ -74138,7 +74135,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new waiting room. */ waiting$room$create$waiting$room: (params: Params$waiting$room$create$waiting$room, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74155,7 +74152,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single configured waiting room. */ waiting$room$waiting$room$details: (params: Params$waiting$room$waiting$room$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { Accept: "application/json" }; @@ -74170,7 +74167,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured waiting room. */ waiting$room$update$waiting$room: (params: Params$waiting$room$update$waiting$room, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74187,7 +74184,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a waiting room. */ waiting$room$delete$waiting$room: (params: Params$waiting$room$delete$waiting$room, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { Accept: "application/json" }; @@ -74202,7 +74199,7 @@ export const createClient = (apiClient: ApiClient, * Patches a configured waiting room. */ waiting$room$patch$waiting$room: (params: Params$waiting$room$patch$waiting$room, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74219,7 +74216,7 @@ export const createClient = (apiClient: ApiClient, * Lists events for a waiting room. */ waiting$room$list$events: (params: Params$waiting$room$list$events, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events`; const headers = { Accept: "application/json" }; @@ -74234,7 +74231,7 @@ export const createClient = (apiClient: ApiClient, * Only available for the Waiting Room Advanced subscription. Creates an event for a waiting room. An event takes place during a specified period of time, temporarily changing the behavior of a waiting room. While the event is active, some of the properties in the event's configuration may either override or inherit from the waiting room's configuration. Note that events cannot overlap with each other, so only one event can be active at a time. */ waiting$room$create$event: (params: Params$waiting$room$create$event, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74251,7 +74248,7 @@ export const createClient = (apiClient: ApiClient, * Fetches a single configured event for a waiting room. */ waiting$room$event$details: (params: Params$waiting$room$event$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { Accept: "application/json" }; @@ -74266,7 +74263,7 @@ export const createClient = (apiClient: ApiClient, * Updates a configured event for a waiting room. */ waiting$room$update$event: (params: Params$waiting$room$update$event, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74283,7 +74280,7 @@ export const createClient = (apiClient: ApiClient, * Deletes an event for a waiting room. */ waiting$room$delete$event: (params: Params$waiting$room$delete$event, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { Accept: "application/json" }; @@ -74298,7 +74295,7 @@ export const createClient = (apiClient: ApiClient, * Patches a configured event for a waiting room. */ waiting$room$patch$event: (params: Params$waiting$room$patch$event, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74315,7 +74312,7 @@ export const createClient = (apiClient: ApiClient, * Previews an event's configuration as if it was active. Inherited fields from the waiting room will be displayed with their current values. */ waiting$room$preview$active$event$details: (params: Params$waiting$room$preview$active$event$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/events/\${encodeURIComponent(params.parameter.event_id)}/details\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/events/${encodeURIComponent(params.parameter.event_id)}/details`; const headers = { Accept: "application/json" }; @@ -74330,7 +74327,7 @@ export const createClient = (apiClient: ApiClient, * Lists rules for a waiting room. */ waiting$room$list$waiting$room$rules: (params: Params$waiting$room$list$waiting$room$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { Accept: "application/json" }; @@ -74345,7 +74342,7 @@ export const createClient = (apiClient: ApiClient, * Only available for the Waiting Room Advanced subscription. Replaces all rules for a waiting room. */ waiting$room$replace$waiting$room$rules: (params: Params$waiting$room$replace$waiting$room$rules, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74362,7 +74359,7 @@ export const createClient = (apiClient: ApiClient, * Only available for the Waiting Room Advanced subscription. Creates a rule for a waiting room. */ waiting$room$create$waiting$room$rule: (params: Params$waiting$room$create$waiting$room$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74379,7 +74376,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a rule for a waiting room. */ waiting$room$delete$waiting$room$rule: (params: Params$waiting$room$delete$waiting$room$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { Accept: "application/json" }; @@ -74394,7 +74391,7 @@ export const createClient = (apiClient: ApiClient, * Patches a rule for a waiting room. */ waiting$room$patch$waiting$room$rule: (params: Params$waiting$room$patch$waiting$room$rule, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/rules/\${encodeURIComponent(params.parameter.rule_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/rules/${encodeURIComponent(params.parameter.rule_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74409,17 +74406,17 @@ export const createClient = (apiClient: ApiClient, /** * Get waiting room status * Fetches the status of a configured waiting room. Response fields include: - * 1. \`status\`: String indicating the status of the waiting room. The possible status are: + * 1. `status`: String indicating the status of the waiting room. The possible status are: * - **not_queueing** indicates that the configured thresholds have not been met and all users are going through to the origin. * - **queueing** indicates that the thresholds have been met and some users are held in the waiting room. * - **event_prequeueing** indicates that an event is active and is currently prequeueing users before it starts. - * 2. \`event_id\`: String of the current event's \`id\` if an event is active, otherwise an empty string. - * 3. \`estimated_queued_users\`: Integer of the estimated number of users currently waiting in the queue. - * 4. \`estimated_total_active_users\`: Integer of the estimated number of users currently active on the origin. - * 5. \`max_estimated_time_minutes\`: Integer of the maximum estimated time currently presented to the users. + * 2. `event_id`: String of the current event's `id` if an event is active, otherwise an empty string. + * 3. `estimated_queued_users`: Integer of the estimated number of users currently waiting in the queue. + * 4. `estimated_total_active_users`: Integer of the estimated number of users currently active on the origin. + * 5. `max_estimated_time_minutes`: Integer of the maximum estimated time currently presented to the users. */ waiting$room$get$waiting$room$status: (params: Params$waiting$room$get$waiting$room$status, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/\${encodeURIComponent(params.parameter.waiting_room_id)}/status\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/${encodeURIComponent(params.parameter.waiting_room_id)}/status`; const headers = { Accept: "application/json" }; @@ -74431,27 +74428,27 @@ export const createClient = (apiClient: ApiClient, }, /** * Create a custom waiting room page preview - * Creates a waiting room page preview. Upload a custom waiting room page for preview. You will receive a preview URL in the form \`http://waitingrooms.dev/preview/\`. You can use the following query parameters to change the state of the preview: - * 1. \`force_queue\`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website (also known as queueAll). - * 2. \`queue_is_full\`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. - * 3. \`queueing_method\`: The queueing method currently used by the waiting room. + * Creates a waiting room page preview. Upload a custom waiting room page for preview. You will receive a preview URL in the form `http://waitingrooms.dev/preview/`. You can use the following query parameters to change the state of the preview: + * 1. `force_queue`: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website (also known as queueAll). + * 2. `queue_is_full`: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment. + * 3. `queueing_method`: The queueing method currently used by the waiting room. * - **fifo** indicates a FIFO queue. * - **random** indicates a Random queue. - * - **passthrough** indicates a Passthrough queue. Keep in mind that the waiting room page will only be displayed if \`force_queue=true\` or \`event=prequeueing\` — for other cases the request will pass through to the origin. For our preview, this will be a fake origin website returning "Welcome". + * - **passthrough** indicates a Passthrough queue. Keep in mind that the waiting room page will only be displayed if `force_queue=true` or `event=prequeueing` — for other cases the request will pass through to the origin. For our preview, this will be a fake origin website returning "Welcome". * - **reject** indicates a Reject queue. - * 4. \`event\`: Used to preview a waiting room event. + * 4. `event`: Used to preview a waiting room event. * - **none** indicates no event is occurring. - * - **prequeueing** indicates that an event is prequeueing (between \`prequeue_start_time\` and \`event_start_time\`). - * - **started** indicates that an event has started (between \`event_start_time\` and \`event_end_time\`). - * 5. \`shuffle_at_event_start\`: Boolean indicating if the event will shuffle users in the prequeue when it starts. This can only be set to **true** if an event is active (\`event\` is not **none**). + * - **prequeueing** indicates that an event is prequeueing (between `prequeue_start_time` and `event_start_time`). + * - **started** indicates that an event has started (between `event_start_time` and `event_end_time`). + * 5. `shuffle_at_event_start`: Boolean indicating if the event will shuffle users in the prequeue when it starts. This can only be set to **true** if an event is active (`event` is not **none**). * - * For example, you can make a request to \`http://waitingrooms.dev/preview/?force_queue=false&queue_is_full=false&queueing_method=random&event=started&shuffle_at_event_start=true\` - * 6. \`waitTime\`: Non-zero, positive integer indicating the estimated wait time in minutes. The default value is 10 minutes. + * For example, you can make a request to `http://waitingrooms.dev/preview/?force_queue=false&queue_is_full=false&queueing_method=random&event=started&shuffle_at_event_start=true` + * 6. `waitTime`: Non-zero, positive integer indicating the estimated wait time in minutes. The default value is 10 minutes. * - * For example, you can make a request to \`http://waitingrooms.dev/preview/?waitTime=50\` to configure the estimated wait time as 50 minutes. + * For example, you can make a request to `http://waitingrooms.dev/preview/?waitTime=50` to configure the estimated wait time as 50 minutes. */ waiting$room$create$a$custom$waiting$room$page$preview: (params: Params$waiting$room$create$a$custom$waiting$room$page$preview, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/preview\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/preview`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74465,7 +74462,7 @@ export const createClient = (apiClient: ApiClient, }, /** Get zone-level Waiting Room settings */ waiting$room$get$zone$settings: (params: Params$waiting$room$get$zone$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { Accept: "application/json" }; @@ -74477,7 +74474,7 @@ export const createClient = (apiClient: ApiClient, }, /** Update zone-level Waiting Room settings */ waiting$room$update$zone$settings: (params: Params$waiting$room$update$zone$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74491,7 +74488,7 @@ export const createClient = (apiClient: ApiClient, }, /** Patch zone-level Waiting Room settings */ waiting$room$patch$zone$settings: (params: Params$waiting$room$patch$zone$settings, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/waiting_rooms/settings`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74505,7 +74502,7 @@ export const createClient = (apiClient: ApiClient, }, /** List Web3 Hostnames */ web3$hostname$list$web3$hostnames: (params: Params$web3$hostname$list$web3$hostnames, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames`; const headers = { Accept: "application/json" }; @@ -74517,7 +74514,7 @@ export const createClient = (apiClient: ApiClient, }, /** Create Web3 Hostname */ web3$hostname$create$web3$hostname: (params: Params$web3$hostname$create$web3$hostname, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74531,7 +74528,7 @@ export const createClient = (apiClient: ApiClient, }, /** Web3 Hostname Details */ web3$hostname$web3$hostname$details: (params: Params$web3$hostname$web3$hostname$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74543,7 +74540,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete Web3 Hostname */ web3$hostname$delete$web3$hostname: (params: Params$web3$hostname$delete$web3$hostname, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { Accept: "application/json" }; @@ -74555,7 +74552,7 @@ export const createClient = (apiClient: ApiClient, }, /** Edit Web3 Hostname */ web3$hostname$edit$web3$hostname: (params: Params$web3$hostname$edit$web3$hostname, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74569,7 +74566,7 @@ export const createClient = (apiClient: ApiClient, }, /** IPFS Universal Path Gateway Content List Details */ web3$hostname$ipfs$universal$path$gateway$content$list$details: (params: Params$web3$hostname$ipfs$universal$path$gateway$content$list$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list`; const headers = { Accept: "application/json" }; @@ -74581,7 +74578,7 @@ export const createClient = (apiClient: ApiClient, }, /** Update IPFS Universal Path Gateway Content List */ web3$hostname$update$ipfs$universal$path$gateway$content$list: (params: Params$web3$hostname$update$ipfs$universal$path$gateway$content$list, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74595,7 +74592,7 @@ export const createClient = (apiClient: ApiClient, }, /** List IPFS Universal Path Gateway Content List Entries */ web3$hostname$list$ipfs$universal$path$gateway$content$list$entries: (params: Params$web3$hostname$list$ipfs$universal$path$gateway$content$list$entries, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries`; const headers = { Accept: "application/json" }; @@ -74607,7 +74604,7 @@ export const createClient = (apiClient: ApiClient, }, /** Create IPFS Universal Path Gateway Content List Entry */ web3$hostname$create$ipfs$universal$path$gateway$content$list$entry: (params: Params$web3$hostname$create$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74621,7 +74618,7 @@ export const createClient = (apiClient: ApiClient, }, /** IPFS Universal Path Gateway Content List Entry Details */ web3$hostname$ipfs$universal$path$gateway$content$list$entry$details: (params: Params$web3$hostname$ipfs$universal$path$gateway$content$list$entry$details, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { Accept: "application/json" }; @@ -74633,7 +74630,7 @@ export const createClient = (apiClient: ApiClient, }, /** Edit IPFS Universal Path Gateway Content List Entry */ web3$hostname$edit$ipfs$universal$path$gateway$content$list$entry: (params: Params$web3$hostname$edit$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74647,7 +74644,7 @@ export const createClient = (apiClient: ApiClient, }, /** Delete IPFS Universal Path Gateway Content List Entry */ web3$hostname$delete$ipfs$universal$path$gateway$content$list$entry: (params: Params$web3$hostname$delete$ipfs$universal$path$gateway$content$list$entry, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/\${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/\${encodeURIComponent(params.parameter.content_list_entry_identifier)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone_identifier)}/web3/hostnames/${encodeURIComponent(params.parameter.identifier)}/ipfs_universal_path/content_list/entries/${encodeURIComponent(params.parameter.content_list_entry_identifier)}`; const headers = { Accept: "application/json" }; @@ -74662,7 +74659,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves analytics aggregated from the last minute of usage on Spectrum applications underneath a given zone. */ spectrum$aggregate$analytics$get$current$aggregated$analytics: (params: Params$spectrum$aggregate$analytics$get$current$aggregated$analytics, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/aggregate/current\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/aggregate/current`; const headers = { Accept: "application/json" }; @@ -74683,7 +74680,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves a list of aggregate metrics grouped by time interval. */ spectrum$analytics$$$by$time$$get$analytics$by$time: (params: Params$spectrum$analytics$$$by$time$$get$analytics$by$time, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/bytime\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/bytime`; const headers = { Accept: "application/json" }; @@ -74708,7 +74705,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves a list of summarised aggregate metrics over a given time period. */ spectrum$analytics$$$summary$$get$analytics$summary: (params: Params$spectrum$analytics$$$summary$$get$analytics$summary, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/summary\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/analytics/events/summary`; const headers = { Accept: "application/json" }; @@ -74732,7 +74729,7 @@ export const createClient = (apiClient: ApiClient, * Retrieves a list of currently existing Spectrum applications inside a zone. */ spectrum$applications$list$spectrum$applications: (params: Params$spectrum$applications$list$spectrum$applications, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps`; const headers = { Accept: "application/json" }; @@ -74754,7 +74751,7 @@ export const createClient = (apiClient: ApiClient, * Creates a new Spectrum application from a configuration using a name for the origin. */ spectrum$applications$create$spectrum$application$using$a$name$for$the$origin: (params: Params$spectrum$applications$create$spectrum$application$using$a$name$for$the$origin, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74771,7 +74768,7 @@ export const createClient = (apiClient: ApiClient, * Gets the application configuration of a specific application inside a zone. */ spectrum$applications$get$spectrum$application$configuration: (params: Params$spectrum$applications$get$spectrum$application$configuration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -74786,7 +74783,7 @@ export const createClient = (apiClient: ApiClient, * Updates a previously existing application's configuration that uses a name for the origin. */ spectrum$applications$update$spectrum$application$configuration$using$a$name$for$the$origin: (params: Params$spectrum$applications$update$spectrum$application$configuration$using$a$name$for$the$origin, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { "Content-Type": "application/json", Accept: "application/json" @@ -74803,7 +74800,7 @@ export const createClient = (apiClient: ApiClient, * Deletes a previously existing application. */ spectrum$applications$delete$spectrum$application: (params: Params$spectrum$applications$delete$spectrum$application, option?: RequestOption): Promise => { - const url = _baseUrl + \`/zones/\${encodeURIComponent(params.parameter.zone)}/spectrum/apps/\${encodeURIComponent(params.parameter.app_id)}\`; + const url = _baseUrl + `/zones/${encodeURIComponent(params.parameter.zone)}/spectrum/apps/${encodeURIComponent(params.parameter.app_id)}`; const headers = { Accept: "application/json" }; @@ -74817,5 +74814,3 @@ export const createClient = (apiClient: ApiClient, }; type ClientFunction = typeof createClient; export type Client = ReturnType>; -" -`; diff --git a/test/__tests__/functional/__snapshots__/format.domain.ts.snap b/test/__tests__/functional/__snapshots__/format.domain/code.ts similarity index 90% rename from test/__tests__/functional/__snapshots__/format.domain.ts.snap rename to test/__tests__/functional/__snapshots__/format.domain/code.ts index 4d016c76..6992167e 100644 --- a/test/__tests__/functional/__snapshots__/format.domain.ts.snap +++ b/test/__tests__/functional/__snapshots__/format.domain/code.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Format Types > format.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -62,10 +59,8 @@ export interface ApiClient { request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; } export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); + const _baseUrl = baseUrl.replace(/\/$/, ""); return {}; }; type ClientFunction = typeof createClient; export type Client = ReturnType>; -" -`; diff --git a/test/__tests__/functional/__snapshots__/kubernetes-test.ts.snap b/test/__tests__/functional/__snapshots__/kubernetes/client-v1.18.5.ts similarity index 92% rename from test/__tests__/functional/__snapshots__/kubernetes-test.ts.snap rename to test/__tests__/functional/__snapshots__/kubernetes/client-v1.18.5.ts index 54587231..30f3de3a 100644 --- a/test/__tests__/functional/__snapshots__/kubernetes-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/kubernetes/client-v1.18.5.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Kubernetes > client-v1.18.5.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.0 // @@ -12,7 +9,7 @@ exports[`Kubernetes > client-v1.18.5.ts 1`] = ` export namespace Schemas { /** MutatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1$MutatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ admissionReviewVersions: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail. */ @@ -20,9 +17,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Equivalent" */ @@ -79,7 +76,7 @@ export namespace Schemas { /** * Resources is a list of resources this rule applies to. * - * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\\\*' means all subresources of pods. '\\*\\\\/scale' means all scale subresources. '\\*\\/\\*' means all resources and their subresources. + * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\*' means all subresources of pods. '\*\\/scale' means all scale subresources. '\*\/\*' means all resources and their subresources. * * If wildcard is present, the validation rule will ensure resources do not overlap with each other. * @@ -91,18 +88,18 @@ export namespace Schemas { } /** ServiceReference holds a reference to Service.legacy.k8s.io */ export interface io$k8s$api$admissionregistration$v1$ServiceReference { - /** \`name\` is the name of the service. Required */ + /** `name` is the name of the service. Required */ name: string; - /** \`namespace\` is the namespace of the service. Required */ + /** `namespace` is the namespace of the service. Required */ namespace: string; - /** \`path\` is an optional URL path which will be sent in any request to this service. */ + /** `path` is an optional URL path which will be sent in any request to this service. */ path?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** ValidatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1$ValidatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ admissionReviewVersions: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail. */ @@ -110,9 +107,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Equivalent" */ @@ -150,15 +147,15 @@ export namespace Schemas { } /** WebhookClientConfig contains the information to make a TLS connection with the webhook */ export interface io$k8s$api$admissionregistration$v1$WebhookClientConfig { - /** \`caBundle\` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + /** `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ caBundle?: string; service?: Schemas.io$k8s$api$admissionregistration$v1$ServiceReference; /** - * \`url\` gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -170,7 +167,7 @@ export namespace Schemas { } /** MutatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1beta1$MutatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to \`['v1beta1']\`. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`. */ admissionReviewVersions?: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1beta1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. */ @@ -178,9 +175,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Exact" */ @@ -237,7 +234,7 @@ export namespace Schemas { /** * Resources is a list of resources this rule applies to. * - * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\\\*' means all subresources of pods. '\\*\\\\/scale' means all scale subresources. '\\*\\/\\*' means all resources and their subresources. + * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\*' means all subresources of pods. '\*\\/scale' means all scale subresources. '\*\/\*' means all resources and their subresources. * * If wildcard is present, the validation rule will ensure resources do not overlap with each other. * @@ -249,18 +246,18 @@ export namespace Schemas { } /** ServiceReference holds a reference to Service.legacy.k8s.io */ export interface io$k8s$api$admissionregistration$v1beta1$ServiceReference { - /** \`name\` is the name of the service. Required */ + /** `name` is the name of the service. Required */ name: string; - /** \`namespace\` is the namespace of the service. Required */ + /** `namespace` is the namespace of the service. Required */ namespace: string; - /** \`path\` is an optional URL path which will be sent in any request to this service. */ + /** `path` is an optional URL path which will be sent in any request to this service. */ path?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** ValidatingWebhook describes an admission webhook and the resources and operations it applies to. */ export interface io$k8s$api$admissionregistration$v1beta1$ValidatingWebhook { - /** AdmissionReviewVersions is an ordered list of preferred \`AdmissionReview\` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to \`['v1beta1']\`. */ + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`. */ admissionReviewVersions?: string[]; clientConfig: Schemas.io$k8s$api$admissionregistration$v1beta1$WebhookClientConfig; /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. */ @@ -268,9 +265,9 @@ export namespace Schemas { /** * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". * - * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. * - * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included \`apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]\`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. * * Defaults to "Exact" */ @@ -308,15 +305,15 @@ export namespace Schemas { } /** WebhookClientConfig contains the information to make a TLS connection with the webhook */ export interface io$k8s$api$admissionregistration$v1beta1$WebhookClientConfig { - /** \`caBundle\` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + /** `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ caBundle?: string; service?: Schemas.io$k8s$api$admissionregistration$v1beta1$ServiceReference; /** - * \`url\` gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -600,7 +597,7 @@ export namespace Schemas { } /** A StatefulSetSpec is the specification of a StatefulSet. */ export interface io$k8s$api$apps$v1$StatefulSetSpec { - /** podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is \`OrderedReady\`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is \`Parallel\` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. */ + /** podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. */ podManagementPolicy?: string; /** replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. */ replicas?: number; @@ -674,13 +671,13 @@ export namespace Schemas { } /** ServiceReference holds a reference to Service.legacy.k8s.io */ export interface io$k8s$api$auditregistration$v1alpha1$ServiceReference { - /** \`name\` is the name of the service. Required */ + /** `name` is the name of the service. Required */ name: string; - /** \`namespace\` is the namespace of the service. Required */ + /** `namespace` is the namespace of the service. Required */ namespace: string; - /** \`path\` is an optional URL path which will be sent in any request to this service. */ + /** `path` is an optional URL path which will be sent in any request to this service. */ path?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** Webhook holds the configuration of the webhook */ @@ -690,15 +687,15 @@ export namespace Schemas { } /** WebhookClientConfig contains the information to make a connection with the webhook */ export interface io$k8s$api$auditregistration$v1alpha1$WebhookClientConfig { - /** \`caBundle\` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + /** `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ caBundle?: string; service?: Schemas.io$k8s$api$auditregistration$v1alpha1$ServiceReference; /** - * \`url\` gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -879,7 +876,7 @@ export namespace Schemas { resourceNames?: string[]; /** * Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. - * "\\*\\\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. + * "\*\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. */ resources?: string[]; /** Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all. */ @@ -1010,7 +1007,7 @@ export namespace Schemas { resourceNames?: string[]; /** * Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. - * "\\*\\\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. + * "\*\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. */ resources?: string[]; /** Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all. */ @@ -1246,7 +1243,7 @@ export namespace Schemas { /** observedGeneration is the most recent generation observed by this autoscaler. */ observedGeneration?: number; } - /** MetricSpec specifies how to scale based on a single metric (only \`type\` and one other matching field should be set at once). */ + /** MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once). */ export interface io$k8s$api$autoscaling$v2beta1$MetricSpec { external?: Schemas.io$k8s$api$autoscaling$v2beta1$ExternalMetricSource; object?: Schemas.io$k8s$api$autoscaling$v2beta1$ObjectMetricSource; @@ -1306,7 +1303,7 @@ export namespace Schemas { } /** ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. */ export interface io$k8s$api$autoscaling$v2beta1$ResourceMetricStatus { - /** currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if \`targetAverageValue\` was set in the corresponding metric specification. */ + /** currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification. */ currentAverageUtilization?: number; currentAverageValue: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; /** name is the name of the resource in question. */ @@ -1417,7 +1414,7 @@ export namespace Schemas { name: string; selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; } - /** MetricSpec specifies how to scale based on a single metric (only \`type\` and one other matching field should be set at once). */ + /** MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once). */ export interface io$k8s$api$autoscaling$v2beta2$MetricSpec { external?: Schemas.io$k8s$api$autoscaling$v2beta2$ExternalMetricSource; object?: Schemas.io$k8s$api$autoscaling$v2beta2$ObjectMetricSource; @@ -1526,7 +1523,7 @@ export namespace Schemas { backoffLimit?: number; /** Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ completions?: number; - /** manualSelector controls generation of pod labels and pod selectors. Leave \`manualSelector\` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see \`manualSelector=true\` in jobs that were created with the old \`extensions/v1beta1\` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector */ + /** manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector */ manualSelector?: boolean; /** Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ parallelism?: number; @@ -1680,13 +1677,13 @@ export namespace Schemas { /** Base64-encoded PKCS#10 CSR data */ request: string; /** - * Requested signer for the request. It is a qualified name in the form: \`scope-hostname.io/name\`. If empty, it will be defaulted: + * Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted: * 1. If it's a kubelet client certificate, it is assigned * "kubernetes.io/kube-apiserver-client-kubelet". * 2. If it's a kubelet serving certificate, it is assigned * "kubernetes.io/kubelet-serving". * 3. Otherwise, it is assigned "kubernetes.io/legacy-unknown". - * Distribution of trust for signers happens out of band. You can select on this field using \`spec.signerName\`. + * Distribution of trust for signers happens out of band. You can select on this field using `spec.signerName`. */ signerName?: string; /** UID information about the requesting user. See user.Info interface for details. */ @@ -2351,9 +2348,9 @@ export namespace Schemas { /** This should be a short, machine understandable string that gives the reason for the transition into the object's current status. */ reason?: string; related?: Schemas.io$k8s$api$core$v1$ObjectReference; - /** Name of the controller that emitted this Event, e.g. \`kubernetes.io/kubelet\`. */ + /** Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. */ reportingComponent?: string; - /** ID of the controller instance, e.g. \`kubelet-xyzf\`. */ + /** ID of the controller instance, e.g. `kubelet-xyzf`. */ reportingInstance?: string; series?: Schemas.io$k8s$api$core$v1$EventSeries; source?: Schemas.io$k8s$api$core$v1$EventSource; @@ -3209,7 +3206,7 @@ export namespace Schemas { export interface io$k8s$api$core$v1$PodStatus { /** Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions */ conditions?: Schemas.io$k8s$api$core$v1$PodCondition[]; - /** The list has one entry per container in the manifest. Each entry is currently the output of \`docker inspect\`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status */ + /** The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status */ containerStatuses?: Schemas.io$k8s$api$core$v1$ContainerStatus[]; /** Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature. */ ephemeralContainerStatuses?: Schemas.io$k8s$api$core$v1$ContainerStatus[]; @@ -4019,9 +4016,9 @@ export namespace Schemas { reason?: string; regarding?: Schemas.io$k8s$api$core$v1$ObjectReference; related?: Schemas.io$k8s$api$core$v1$ObjectReference; - /** Name of the controller that emitted this Event, e.g. \`kubernetes.io/kubelet\`. */ + /** Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. */ reportingController?: string; - /** ID of the controller instance, e.g. \`kubelet-xyzf\`. */ + /** ID of the controller instance, e.g. `kubelet-xyzf`. */ reportingInstance?: string; series?: Schemas.io$k8s$api$events$v1beta1$EventSeries; /** Type of this event (Normal, Warning), new types could be added in the future. */ @@ -4102,7 +4099,7 @@ export namespace Schemas { /** * Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to * the IP in the Spec of the parent Ingress. - * 2. The \`:\` delimiter is not respected because ports are not allowed. + * 2. The `:` delimiter is not respected because ports are not allowed. * Currently the port of an Ingress is implicitly :80 for http and * :443 for https. * Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. @@ -4115,7 +4112,7 @@ export namespace Schemas { /** IngressSpec describes the Ingress the user wishes to exist. */ export interface io$k8s$api$extensions$v1beta1$IngressSpec { backend?: Schemas.io$k8s$api$extensions$v1beta1$IngressBackend; - /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated \`kubernetes.io/ingress.class\` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ + /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ ingressClassName?: string; /** A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. */ rules?: Schemas.io$k8s$api$extensions$v1beta1$IngressRule[]; @@ -4135,7 +4132,7 @@ export namespace Schemas { } /** FlowDistinguisherMethod specifies the method of a flow distinguisher. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowDistinguisherMethod { - /** \`type\` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required. */ + /** `type` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required. */ type: string; } /** FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher". */ @@ -4151,20 +4148,20 @@ export namespace Schemas { /** FlowSchemaCondition describes conditions for a FlowSchema. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaCondition { lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; - /** \`message\` is a human-readable message indicating details about last transition. */ + /** `message` is a human-readable message indicating details about last transition. */ message?: string; - /** \`reason\` is a unique, one-word, CamelCase reason for the condition's last transition. */ + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ reason?: string; - /** \`status\` is the status of the condition. Can be True, False, Unknown. Required. */ + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ status?: string; - /** \`type\` is the type of the condition. Required. */ + /** `type` is the type of the condition. Required. */ type?: string; } /** FlowSchemaList is a list of FlowSchema objects. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaList { /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ apiVersion?: string; - /** \`items\` is a list of FlowSchemas. */ + /** `items` is a list of FlowSchemas. */ items: Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema[]; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -4173,15 +4170,15 @@ export namespace Schemas { /** FlowSchemaSpec describes how the FlowSchema's specification looks like. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaSpec { distinguisherMethod?: Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowDistinguisherMethod; - /** \`matchingPrecedence\` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default. */ + /** `matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default. */ matchingPrecedence?: number; priorityLevelConfiguration: Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationReference; - /** \`rules\` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema. */ + /** `rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema. */ rules?: Schemas.io$k8s$api$flowcontrol$v1alpha1$PolicyRulesWithSubjects[]; } /** FlowSchemaStatus represents the current state of a FlowSchema. */ export interface io$k8s$api$flowcontrol$v1alpha1$FlowSchemaStatus { - /** \`conditions\` is a list of the current states of FlowSchema. */ + /** `conditions` is a list of the current states of FlowSchema. */ conditions?: Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchemaCondition[]; } /** GroupSubject holds detailed information for group-kind subject. */ @@ -4192,7 +4189,7 @@ export namespace Schemas { /** LimitResponse defines how to handle requests that can not be executed right now. */ export interface io$k8s$api$flowcontrol$v1alpha1$LimitResponse { queuing?: Schemas.io$k8s$api$flowcontrol$v1alpha1$QueuingConfiguration; - /** \`type\` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required. */ + /** `type` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required. */ type: string; } /** @@ -4202,7 +4199,7 @@ export namespace Schemas { */ export interface io$k8s$api$flowcontrol$v1alpha1$LimitedPriorityLevelConfiguration { /** - * \`assuredConcurrencyShares\` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level: + * `assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level: * * ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) ) * @@ -4214,23 +4211,23 @@ export namespace Schemas { /** NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request. */ export interface io$k8s$api$flowcontrol$v1alpha1$NonResourcePolicyRule { /** - * \`nonResourceURLs\` is a set of url prefixes that a user should have access to and may not be empty. For example: + * `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example: * - "/healthz" is legal * - "/hea*" is illegal * - "/hea" is legal but matches nothing - * - "/hea/\\\\*" also matches nothing + * - "/hea/\\*" also matches nothing * - "/healthz/*" matches all per-component health checks. * "*" matches all non-resource urls. if it is present, it must be the only entry. Required. */ nonResourceURLs: string[]; - /** \`verbs\` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. */ + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. */ verbs: string[]; } /** PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request. */ export interface io$k8s$api$flowcontrol$v1alpha1$PolicyRulesWithSubjects { - /** \`nonResourceRules\` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL. */ + /** `nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL. */ nonResourceRules?: Schemas.io$k8s$api$flowcontrol$v1alpha1$NonResourcePolicyRule[]; - /** \`resourceRules\` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of \`resourceRules\` and \`nonResourceRules\` has to be non-empty. */ + /** `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty. */ resourceRules?: Schemas.io$k8s$api$flowcontrol$v1alpha1$ResourcePolicyRule[]; /** subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required. */ subjects: Schemas.io$k8s$api$flowcontrol$v1alpha1$Subject[]; @@ -4248,20 +4245,20 @@ export namespace Schemas { /** PriorityLevelConfigurationCondition defines the condition of priority level. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationCondition { lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; - /** \`message\` is a human-readable message indicating details about last transition. */ + /** `message` is a human-readable message indicating details about last transition. */ message?: string; - /** \`reason\` is a unique, one-word, CamelCase reason for the condition's last transition. */ + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ reason?: string; - /** \`status\` is the status of the condition. Can be True, False, Unknown. Required. */ + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ status?: string; - /** \`type\` is the type of the condition. Required. */ + /** `type` is the type of the condition. Required. */ type?: string; } /** PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationList { /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ apiVersion?: string; - /** \`items\` is a list of request-priorities. */ + /** `items` is a list of request-priorities. */ items: Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration[]; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -4269,47 +4266,47 @@ export namespace Schemas { } /** PriorityLevelConfigurationReference contains information that points to the "request-priority" being used. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationReference { - /** \`name\` is the name of the priority level configuration being referenced Required. */ + /** `name` is the name of the priority level configuration being referenced Required. */ name: string; } /** PriorityLevelConfigurationSpec specifies the configuration of a priority level. */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationSpec { limited?: Schemas.io$k8s$api$flowcontrol$v1alpha1$LimitedPriorityLevelConfiguration; - /** \`type\` indicates whether this priority level is subject to limitation on request execution. A value of \`"Exempt"\` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of \`"Limited"\` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required. */ + /** `type` indicates whether this priority level is subject to limitation on request execution. A value of `"Exempt"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `"Limited"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required. */ type: string; } /** PriorityLevelConfigurationStatus represents the current state of a "request-priority". */ export interface io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationStatus { - /** \`conditions\` is the current state of "request-priority". */ + /** `conditions` is the current state of "request-priority". */ conditions?: Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfigurationCondition[]; } /** QueuingConfiguration holds the configuration parameters for queuing */ export interface io$k8s$api$flowcontrol$v1alpha1$QueuingConfiguration { - /** \`handSize\` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. \`handSize\` must be no larger than \`queues\`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8. */ + /** `handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8. */ handSize?: number; - /** \`queueLengthLimit\` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50. */ + /** `queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50. */ queueLengthLimit?: number; - /** \`queues\` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64. */ + /** `queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64. */ queues?: number; } /** ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request. */ export interface io$k8s$api$flowcontrol$v1alpha1$ResourcePolicyRule { - /** \`apiGroups\` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required. */ + /** `apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required. */ apiGroups: string[]; - /** \`clusterScope\` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the \`namespaces\` field must contain a non-empty list. */ + /** `clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list. */ clusterScope?: boolean; - /** \`namespaces\` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the \`clusterScope\` field for that). This list may be empty, but only if \`clusterScope\` is true. */ + /** `namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true. */ namespaces?: string[]; - /** \`resources\` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required. */ + /** `resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required. */ resources: string[]; - /** \`verbs\` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required. */ + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required. */ verbs: string[]; } /** ServiceAccountSubject holds detailed information for service-account-kind subject. */ export interface io$k8s$api$flowcontrol$v1alpha1$ServiceAccountSubject { - /** \`name\` is the name of matching ServiceAccount objects, or "*" to match regardless of name. Required. */ + /** `name` is the name of matching ServiceAccount objects, or "*" to match regardless of name. Required. */ name: string; - /** \`namespace\` is the namespace of matching ServiceAccount objects. Required. */ + /** `namespace` is the namespace of matching ServiceAccount objects. Required. */ namespace: string; } /** Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account. */ @@ -4322,7 +4319,7 @@ export namespace Schemas { } /** UserSubject holds detailed information for user-kind subject. */ export interface io$k8s$api$flowcontrol$v1alpha1$UserSubject { - /** \`name\` is the username that matches, or "*" to match all usernames. Required. */ + /** `name` is the username that matches, or "*" to match all usernames. Required. */ name: string; } /** IPBlock describes a particular CIDR (Ex. "192.168.1.1/24","2001:db9::/64") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule. */ @@ -4429,7 +4426,7 @@ export namespace Schemas { serviceName?: string; servicePort?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; } - /** IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The \`ingressclass.kubernetes.io/is-default-class\` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class. */ + /** IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class. */ export interface io$k8s$api$networking$v1beta1$IngressClass { /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ apiVersion?: string; @@ -4469,7 +4466,7 @@ export namespace Schemas { /** * Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to * the IP in the Spec of the parent Ingress. - * 2. The \`:\` delimiter is not respected because ports are not allowed. + * 2. The `:` delimiter is not respected because ports are not allowed. * Currently the port of an Ingress is implicitly :80 for http and * :443 for https. * Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. @@ -4482,7 +4479,7 @@ export namespace Schemas { /** IngressSpec describes the Ingress the user wishes to exist. */ export interface io$k8s$api$networking$v1beta1$IngressSpec { backend?: Schemas.io$k8s$api$networking$v1beta1$IngressBackend; - /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated \`kubernetes.io/ingress.class\` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ + /** IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. */ ingressClassName?: string; /** A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. */ rules?: Schemas.io$k8s$api$networking$v1beta1$IngressRule[]; @@ -4593,9 +4590,9 @@ export namespace Schemas { /** AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. */ export interface io$k8s$api$policy$v1beta1$AllowedHostPath { /** - * pathPrefix is the path prefix that the host volume must match. It does not support \`*\`. Trailing slashes are trimmed when validating the path prefix with a host path. + * pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. * - * Examples: \`/foo\` would allow \`/foo\`, \`/foo/\` and \`/foo/bar\` \`/foo\` would not allow \`/food\` or \`/etc/foo\` + * Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo` */ pathPrefix?: string; /** when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly. */ @@ -4709,7 +4706,7 @@ export namespace Schemas { /** * allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection. * - * Examples: e.g. "foo/\\\\*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc. + * Examples: e.g. "foo/\\*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc. */ allowedUnsafeSysctls?: string[]; /** defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list. */ @@ -4719,7 +4716,7 @@ export namespace Schemas { /** * forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden. * - * Examples: e.g. "foo/\\\\*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc. + * Examples: e.g. "foo/\\*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc. */ forbiddenSysctls?: string[]; fsGroup: Schemas.io$k8s$api$policy$v1beta1$FSGroupStrategyOptions; @@ -5076,7 +5073,7 @@ export namespace Schemas { nonResourceURLs?: string[]; /** ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. */ resourceNames?: string[]; - /** Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '\\*\\\\/foo' represents the subresource 'foo' for all resources in the specified apiGroups. */ + /** Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '\*\\/foo' represents the subresource 'foo' for all resources in the specified apiGroups. */ resources?: string[]; /** Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. */ verbs: string[]; @@ -5148,7 +5145,7 @@ export namespace Schemas { apiVersion?: string; /** description is an arbitrary string that usually provides guidelines on when this priority class should be used. */ description?: string; - /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as \`globalDefault\`. However, if more than one PriorityClasses exists with their \`globalDefault\` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ + /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ globalDefault?: boolean; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -5174,7 +5171,7 @@ export namespace Schemas { apiVersion?: string; /** description is an arbitrary string that usually provides guidelines on when this priority class should be used. */ description?: string; - /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as \`globalDefault\`. However, if more than one PriorityClasses exists with their \`globalDefault\` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ + /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ globalDefault?: boolean; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -5200,7 +5197,7 @@ export namespace Schemas { apiVersion?: string; /** description is an arbitrary string that usually provides guidelines on when this priority class should be used. */ description?: string; - /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as \`globalDefault\`. However, if more than one PriorityClasses exists with their \`globalDefault\` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ + /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ globalDefault?: boolean; /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ kind?: string; @@ -5654,7 +5651,7 @@ export namespace Schemas { /** CustomResourceConversion describes how to convert different versions of a CR. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceConversion { /** - * strategy specifies how custom resources are converted between versions. Allowed values are: - \`None\`: The converter only change the apiVersion and would not touch any other field in the custom resource. - \`Webhook\`: API Server will call to an external webhook to do the conversion. Additional information + * strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information * is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set. */ strategy: string; @@ -5694,28 +5691,28 @@ export namespace Schemas { } /** CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames { - /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like \`kubectl get all\`. */ + /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`. */ categories?: string[]; - /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the \`kind\` attribute in API calls. */ + /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls. */ kind: string; - /** listKind is the serialized kind of the list for this resource. Defaults to "\`kind\`List". */ + /** listKind is the serialized kind of the list for this resource. Defaults to "`kind`List". */ listKind?: string; - /** plural is the plural name of the resource to serve. The custom resources are served under \`/apis///.../\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). Must be all lowercase. */ + /** plural is the plural name of the resource to serve. The custom resources are served under `/apis///.../`. Must match the name of the CustomResourceDefinition (in the form `.`). Must be all lowercase. */ plural: string; - /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like \`kubectl get \`. It must be all lowercase. */ + /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get `. It must be all lowercase. */ shortNames?: string[]; - /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased \`kind\`. */ + /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`. */ singular?: string; } /** CustomResourceDefinitionSpec describes how a user wants their resource to appear */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionSpec { conversion?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceConversion; - /** group is the API group of the defined custom resource. The custom resources are served under \`/apis//...\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). */ + /** group is the API group of the defined custom resource. The custom resources are served under `/apis//...`. Must match the name of the CustomResourceDefinition (in the form `.`). */ group: string; names: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames; - /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting \`x-preserve-unknown-fields\` to true in \`spec.versions[*].schema.openAPIV3Schema\`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ + /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ preserveUnknownFields?: boolean; - /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are \`Cluster\` and \`Namespaced\`. */ + /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. */ scope: string; /** versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ versions: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionVersion[]; @@ -5725,14 +5722,14 @@ export namespace Schemas { acceptedNames?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames; /** conditions indicate state for particular aspects of a CustomResourceDefinition */ conditions?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionCondition[]; - /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from \`spec.versions\` while they exist in this list. */ + /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list. */ storedVersions?: string[]; } /** CustomResourceDefinitionVersion describes a version for CRD. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionVersion { /** additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used. */ additionalPrinterColumns?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceColumnDefinition[]; - /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at \`/apis///...\` if \`served\` is true. */ + /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis///...` if `served` is true. */ name: string; schema?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceValidation; /** served is a flag enabling/disabling this version from being served via REST APIs */ @@ -5743,14 +5740,14 @@ export namespace Schemas { } /** CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceScale { - /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.selector\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\` or \`.spec\`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the \`status.selector\` value in the \`/scale\` subresource will default to the empty string. */ + /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string. */ labelSelectorPath?: string; - /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`spec.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.spec\`. If there is no value under the given path in the custom resource, the \`/scale\` subresource will return an error on GET. */ + /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET. */ specReplicasPath: string; - /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\`. If there is no value under the given path in the custom resource, the \`status.replicas\` value in the \`/scale\` subresource will default to 0. */ + /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0. */ statusReplicasPath: string; } - /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the \`.status\` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ + /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceStatus { } /** CustomResourceSubresources defines the status and scale subresources for CustomResources. */ @@ -5793,7 +5790,7 @@ export namespace Schemas { /** * format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated: * - * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. + * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. */ format?: string; id?: string; @@ -5837,7 +5834,7 @@ export namespace Schemas { */ "x-kubernetes-int-or-string"?: boolean; /** - * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type \`map\` by specifying the keys used as the index of the map. + * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map. * * This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). * @@ -5847,14 +5844,14 @@ export namespace Schemas { /** * x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values: * - * 1) \`atomic\`: the list is treated as a single entity, like a scalar. + * 1) `atomic`: the list is treated as a single entity, like a scalar. * Atomic lists will be entirely replaced when updated. This extension * may be used on any type of list (struct, scalar, ...). - * 2) \`set\`: + * 2) `set`: * Sets are lists that must not have multiple items with the same value. Each - * value must be a scalar, an object with x-kubernetes-map-type \`atomic\` or an - * array with x-kubernetes-list-type \`atomic\`. - * 3) \`map\`: + * value must be a scalar, an object with x-kubernetes-map-type `atomic` or an + * array with x-kubernetes-list-type `atomic`. + * 3) `map`: * These lists are like maps in that their elements have a non-index key * used to identify them. Order is preserved upon merge. The map tag * must only be used on a list with elements of type object. @@ -5864,11 +5861,11 @@ export namespace Schemas { /** * x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: * - * 1) \`granular\`: + * 1) `granular`: * These maps are actual maps (key-value pairs) and each fields are independent * from each other (they can each be manipulated by separate actors). This is * the default behaviour for all maps. - * 2) \`atomic\`: the list is treated as a single entity, like a scalar. + * 2) `atomic`: the list is treated as a single entity, like a scalar. * Atomic maps will be entirely replaced when updated. */ "x-kubernetes-map-type"?: string; @@ -5889,7 +5886,7 @@ export namespace Schemas { namespace: string; /** path is an optional URL path at which the webhook will be contacted. */ path?: string; - /** port is an optional service port at which the webhook will be contacted. \`port\` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ + /** port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ port?: number; } /** WebhookClientConfig contains the information to make a TLS connection with the webhook. */ @@ -5898,11 +5895,11 @@ export namespace Schemas { caBundle?: string; service?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ServiceReference; /** - * url gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -5915,7 +5912,7 @@ export namespace Schemas { /** WebhookConversion describes how to call a conversion webhook */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookConversion { clientConfig?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookClientConfig; - /** conversionReviewVersions is an ordered list of preferred \`ConversionReview\` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. */ + /** conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. */ conversionReviewVersions: string[]; } /** CustomResourceColumnDefinition specifies a column for server side printing. */ @@ -5935,10 +5932,10 @@ export namespace Schemas { } /** CustomResourceConversion describes how to convert different versions of a CR. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceConversion { - /** conversionReviewVersions is an ordered list of preferred \`ConversionReview\` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to \`["v1beta1"]\`. */ + /** conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `["v1beta1"]`. */ conversionReviewVersions?: string[]; /** - * strategy specifies how custom resources are converted between versions. Allowed values are: - \`None\`: The converter only change the apiVersion and would not touch any other field in the custom resource. - \`Webhook\`: API Server will call to an external webhook to do the conversion. Additional information + * strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information * is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set. */ strategy: string; @@ -5978,17 +5975,17 @@ export namespace Schemas { } /** CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionNames { - /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like \`kubectl get all\`. */ + /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`. */ categories?: string[]; - /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the \`kind\` attribute in API calls. */ + /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls. */ kind: string; - /** listKind is the serialized kind of the list for this resource. Defaults to "\`kind\`List". */ + /** listKind is the serialized kind of the list for this resource. Defaults to "`kind`List". */ listKind?: string; - /** plural is the plural name of the resource to serve. The custom resources are served under \`/apis///.../\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). Must be all lowercase. */ + /** plural is the plural name of the resource to serve. The custom resources are served under `/apis///.../`. Must match the name of the CustomResourceDefinition (in the form `.`). Must be all lowercase. */ plural: string; - /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like \`kubectl get \`. It must be all lowercase. */ + /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get `. It must be all lowercase. */ shortNames?: string[]; - /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased \`kind\`. */ + /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`. */ singular?: string; } /** CustomResourceDefinitionSpec describes how a user wants their resource to appear */ @@ -5996,18 +5993,18 @@ export namespace Schemas { /** additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If present, this field configures columns for all versions. Top-level and per-version columns are mutually exclusive. If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used. */ additionalPrinterColumns?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceColumnDefinition[]; conversion?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceConversion; - /** group is the API group of the defined custom resource. The custom resources are served under \`/apis//...\`. Must match the name of the CustomResourceDefinition (in the form \`.\`). */ + /** group is the API group of the defined custom resource. The custom resources are served under `/apis//...`. Must match the name of the CustomResourceDefinition (in the form `.`). */ group: string; names: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionNames; - /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the \`x-kubernetes-preserve-unknown-fields: true\` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ + /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the `x-kubernetes-preserve-unknown-fields: true` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details. */ preserveUnknownFields?: boolean; - /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are \`Cluster\` and \`Namespaced\`. Default is \`Namespaced\`. */ + /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`. */ scope: string; subresources?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceSubresources; validation?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceValidation; - /** version is the API version of the defined custom resource. The custom resources are served under \`/apis///...\`. Must match the name of the first item in the \`versions\` list if \`version\` and \`versions\` are both specified. Optional if \`versions\` is specified. Deprecated: use \`versions\` instead. */ + /** version is the API version of the defined custom resource. The custom resources are served under `/apis///...`. Must match the name of the first item in the `versions` list if `version` and `versions` are both specified. Optional if `versions` is specified. Deprecated: use `versions` instead. */ version?: string; - /** versions is the list of all API versions of the defined custom resource. Optional if \`version\` is specified. The name of the first item in the \`versions\` list must match the \`version\` field if \`version\` and \`versions\` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ + /** versions is the list of all API versions of the defined custom resource. Optional if `version` is specified. The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ versions?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionVersion[]; } /** CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition */ @@ -6015,14 +6012,14 @@ export namespace Schemas { acceptedNames?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionNames; /** conditions indicate state for particular aspects of a CustomResourceDefinition */ conditions?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionCondition[]; - /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from \`spec.versions\` while they exist in this list. */ + /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list. */ storedVersions?: string[]; } /** CustomResourceDefinitionVersion describes a version for CRD. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinitionVersion { /** additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used. */ additionalPrinterColumns?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceColumnDefinition[]; - /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at \`/apis///...\` if \`served\` is true. */ + /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis///...` if `served` is true. */ name: string; schema?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceValidation; /** served is a flag enabling/disabling this version from being served via REST APIs */ @@ -6033,14 +6030,14 @@ export namespace Schemas { } /** CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources. */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceSubresourceScale { - /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.selector\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\` or \`.spec\`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the \`status.selector\` value in the \`/scale\` subresource will default to the empty string. */ + /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string. */ labelSelectorPath?: string; - /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`spec.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.spec\`. If there is no value under the given path in the custom resource, the \`/scale\` subresource will return an error on GET. */ + /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET. */ specReplicasPath: string; - /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale \`status.replicas\`. Only JSON paths without the array notation are allowed. Must be a JSON Path under \`.status\`. If there is no value under the given path in the custom resource, the \`status.replicas\` value in the \`/scale\` subresource will default to 0. */ + /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0. */ statusReplicasPath: string; } - /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the \`.status\` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ + /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceSubresourceStatus { } /** CustomResourceSubresources defines the status and scale subresources for CustomResources. */ @@ -6083,7 +6080,7 @@ export namespace Schemas { /** * format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated: * - * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. + * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. */ format?: string; id?: string; @@ -6127,7 +6124,7 @@ export namespace Schemas { */ "x-kubernetes-int-or-string"?: boolean; /** - * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type \`map\` by specifying the keys used as the index of the map. + * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map. * * This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). * @@ -6137,14 +6134,14 @@ export namespace Schemas { /** * x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values: * - * 1) \`atomic\`: the list is treated as a single entity, like a scalar. + * 1) `atomic`: the list is treated as a single entity, like a scalar. * Atomic lists will be entirely replaced when updated. This extension * may be used on any type of list (struct, scalar, ...). - * 2) \`set\`: + * 2) `set`: * Sets are lists that must not have multiple items with the same value. Each - * value must be a scalar, an object with x-kubernetes-map-type \`atomic\` or an - * array with x-kubernetes-list-type \`atomic\`. - * 3) \`map\`: + * value must be a scalar, an object with x-kubernetes-map-type `atomic` or an + * array with x-kubernetes-list-type `atomic`. + * 3) `map`: * These lists are like maps in that their elements have a non-index key * used to identify them. Order is preserved upon merge. The map tag * must only be used on a list with elements of type object. @@ -6154,11 +6151,11 @@ export namespace Schemas { /** * x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: * - * 1) \`granular\`: + * 1) `granular`: * These maps are actual maps (key-value pairs) and each fields are independent * from each other (they can each be manipulated by separate actors). This is * the default behaviour for all maps. - * 2) \`atomic\`: the list is treated as a single entity, like a scalar. + * 2) `atomic`: the list is treated as a single entity, like a scalar. * Atomic maps will be entirely replaced when updated. */ "x-kubernetes-map-type"?: string; @@ -6179,7 +6176,7 @@ export namespace Schemas { namespace: string; /** path is an optional URL path at which the webhook will be contacted. */ path?: string; - /** port is an optional service port at which the webhook will be contacted. \`port\` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ + /** port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ port?: number; } /** WebhookClientConfig contains the information to make a TLS connection with the webhook. */ @@ -6188,11 +6185,11 @@ export namespace Schemas { caBundle?: string; service?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$ServiceReference; /** - * url gives the location of the webhook, in standard URL form (\`scheme://host:port/path\`). Exactly one of \`url\` or \`service\` must be specified. + * url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. * - * The \`host\` should not refer to a service running in the cluster; use the \`service\` field instead. The host might be resolved via external DNS in some apiservers (e.g., \`kube-apiserver\` cannot resolve in-cluster DNS as that would be a layering violation). \`host\` may also be an IP address. + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. * - * Please note that using \`localhost\` or \`127.0.0.1\` as a \`host\` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. * * The scheme must be "https"; the URL must begin with "https://". * @@ -6535,17 +6532,17 @@ export namespace Schemas { * To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. * * // Internal package: type MyAPIObject struct { - * runtime.TypeMeta \`json:",inline"\` - * MyPlugin runtime.Object \`json:"myPlugin"\` + * runtime.TypeMeta `json:",inline"` + * MyPlugin runtime.Object `json:"myPlugin"` * } type PluginA struct { - * AOption string \`json:"aOption"\` + * AOption string `json:"aOption"` * } * * // External package: type MyAPIObject struct { - * runtime.TypeMeta \`json:",inline"\` - * MyPlugin runtime.RawExtension \`json:"myPlugin"\` + * runtime.TypeMeta `json:",inline"` + * MyPlugin runtime.RawExtension `json:"myPlugin"` * } type PluginA struct { - * AOption string \`json:"aOption"\` + * AOption string `json:"aOption"` * } * * // On the wire, the JSON will look something like this: { @@ -6633,7 +6630,7 @@ export namespace Schemas { name?: string; /** Namespace is the namespace of the service */ namespace?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } /** APIService represents a server for a particular GroupVersion. Name must be "version.group". */ @@ -6694,7 +6691,7 @@ export namespace Schemas { name?: string; /** Namespace is the namespace of the service */ namespace?: string; - /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. \`port\` should be a valid port number (1-65535, inclusive). */ + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ port?: number; } } @@ -7122,7 +7119,7 @@ export interface Parameter$listCoreV1ComponentStatus { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7168,7 +7165,7 @@ export interface Parameter$listCoreV1ConfigMapForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7203,7 +7200,7 @@ export interface Parameter$listCoreV1EndpointsForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7238,7 +7235,7 @@ export interface Parameter$listCoreV1EventForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7273,7 +7270,7 @@ export interface Parameter$listCoreV1LimitRangeForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7310,7 +7307,7 @@ export interface Parameter$listCoreV1Namespace { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7395,7 +7392,7 @@ export interface Parameter$listCoreV1NamespacedConfigMap { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7462,7 +7459,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedConfigMap { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7589,7 +7586,7 @@ export interface Parameter$listCoreV1NamespacedEndpoints { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7656,7 +7653,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEndpoints { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7783,7 +7780,7 @@ export interface Parameter$listCoreV1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7850,7 +7847,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -7977,7 +7974,7 @@ export interface Parameter$listCoreV1NamespacedLimitRange { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8044,7 +8041,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedLimitRange { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8171,7 +8168,7 @@ export interface Parameter$listCoreV1NamespacedPersistentVolumeClaim { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8238,7 +8235,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPersistentVolumeClaim /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8421,7 +8418,7 @@ export interface Parameter$listCoreV1NamespacedPod { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -8488,7 +8485,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPod { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9015,7 +9012,7 @@ export interface Parameter$listCoreV1NamespacedPodTemplate { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9082,7 +9079,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedPodTemplate { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9209,7 +9206,7 @@ export interface Parameter$listCoreV1NamespacedReplicationController { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9276,7 +9273,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedReplicationController /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9515,7 +9512,7 @@ export interface Parameter$listCoreV1NamespacedResourceQuota { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9582,7 +9579,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedResourceQuota { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9765,7 +9762,7 @@ export interface Parameter$listCoreV1NamespacedSecret { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9832,7 +9829,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedSecret { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -9959,7 +9956,7 @@ export interface Parameter$listCoreV1NamespacedServiceAccount { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10026,7 +10023,7 @@ export interface Parameter$deleteCoreV1CollectionNamespacedServiceAccount { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10183,7 +10180,7 @@ export interface Parameter$listCoreV1NamespacedService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10693,7 +10690,7 @@ export interface Parameter$listCoreV1Node { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -10756,7 +10753,7 @@ export interface Parameter$deleteCoreV1CollectionNode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11047,7 +11044,7 @@ export interface Parameter$listCoreV1PersistentVolumeClaimForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11084,7 +11081,7 @@ export interface Parameter$listCoreV1PersistentVolume { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11147,7 +11144,7 @@ export interface Parameter$deleteCoreV1CollectionPersistentVolume { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11312,7 +11309,7 @@ export interface Parameter$listCoreV1PodForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11347,7 +11344,7 @@ export interface Parameter$listCoreV1PodTemplateForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11382,7 +11379,7 @@ export interface Parameter$listCoreV1ReplicationControllerForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11417,7 +11414,7 @@ export interface Parameter$listCoreV1ResourceQuotaForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11452,7 +11449,7 @@ export interface Parameter$listCoreV1SecretForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11487,7 +11484,7 @@ export interface Parameter$listCoreV1ServiceAccountForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11522,7 +11519,7 @@ export interface Parameter$listCoreV1ServiceForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11557,7 +11554,7 @@ export interface Parameter$watchCoreV1ConfigMapListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11592,7 +11589,7 @@ export interface Parameter$watchCoreV1EndpointsListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11627,7 +11624,7 @@ export interface Parameter$watchCoreV1EventListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11662,7 +11659,7 @@ export interface Parameter$watchCoreV1LimitRangeListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11697,7 +11694,7 @@ export interface Parameter$watchCoreV1NamespaceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11732,7 +11729,7 @@ export interface Parameter$watchCoreV1NamespacedConfigMapList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11769,7 +11766,7 @@ export interface Parameter$watchCoreV1NamespacedConfigMap { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11808,7 +11805,7 @@ export interface Parameter$watchCoreV1NamespacedEndpointsList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11845,7 +11842,7 @@ export interface Parameter$watchCoreV1NamespacedEndpoints { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11884,7 +11881,7 @@ export interface Parameter$watchCoreV1NamespacedEventList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11921,7 +11918,7 @@ export interface Parameter$watchCoreV1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11960,7 +11957,7 @@ export interface Parameter$watchCoreV1NamespacedLimitRangeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -11997,7 +11994,7 @@ export interface Parameter$watchCoreV1NamespacedLimitRange { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12036,7 +12033,7 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaimList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12073,7 +12070,7 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12112,7 +12109,7 @@ export interface Parameter$watchCoreV1NamespacedPodList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12149,7 +12146,7 @@ export interface Parameter$watchCoreV1NamespacedPod { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12188,7 +12185,7 @@ export interface Parameter$watchCoreV1NamespacedPodTemplateList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12225,7 +12222,7 @@ export interface Parameter$watchCoreV1NamespacedPodTemplate { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12264,7 +12261,7 @@ export interface Parameter$watchCoreV1NamespacedReplicationControllerList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12301,7 +12298,7 @@ export interface Parameter$watchCoreV1NamespacedReplicationController { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12340,7 +12337,7 @@ export interface Parameter$watchCoreV1NamespacedResourceQuotaList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12377,7 +12374,7 @@ export interface Parameter$watchCoreV1NamespacedResourceQuota { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12416,7 +12413,7 @@ export interface Parameter$watchCoreV1NamespacedSecretList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12453,7 +12450,7 @@ export interface Parameter$watchCoreV1NamespacedSecret { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12492,7 +12489,7 @@ export interface Parameter$watchCoreV1NamespacedServiceAccountList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12529,7 +12526,7 @@ export interface Parameter$watchCoreV1NamespacedServiceAccount { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12568,7 +12565,7 @@ export interface Parameter$watchCoreV1NamespacedServiceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12605,7 +12602,7 @@ export interface Parameter$watchCoreV1NamespacedService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12644,7 +12641,7 @@ export interface Parameter$watchCoreV1Namespace { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12681,7 +12678,7 @@ export interface Parameter$watchCoreV1NodeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12716,7 +12713,7 @@ export interface Parameter$watchCoreV1Node { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12753,7 +12750,7 @@ export interface Parameter$watchCoreV1PersistentVolumeClaimListForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12788,7 +12785,7 @@ export interface Parameter$watchCoreV1PersistentVolumeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12823,7 +12820,7 @@ export interface Parameter$watchCoreV1PersistentVolume { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12860,7 +12857,7 @@ export interface Parameter$watchCoreV1PodListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12895,7 +12892,7 @@ export interface Parameter$watchCoreV1PodTemplateListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12930,7 +12927,7 @@ export interface Parameter$watchCoreV1ReplicationControllerListForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -12965,7 +12962,7 @@ export interface Parameter$watchCoreV1ResourceQuotaListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13000,7 +12997,7 @@ export interface Parameter$watchCoreV1SecretListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13035,7 +13032,7 @@ export interface Parameter$watchCoreV1ServiceAccountListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13070,7 +13067,7 @@ export interface Parameter$watchCoreV1ServiceListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13122,7 +13119,7 @@ export interface Parameter$listAdmissionregistrationV1MutatingWebhookConfigurati /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13185,7 +13182,7 @@ export interface Parameter$deleteAdmissionregistrationV1CollectionMutatingWebhoo /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13302,7 +13299,7 @@ export interface Parameter$listAdmissionregistrationV1ValidatingWebhookConfigura /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13365,7 +13362,7 @@ export interface Parameter$deleteAdmissionregistrationV1CollectionValidatingWebh /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13480,7 +13477,7 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13515,7 +13512,7 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13552,7 +13549,7 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13587,7 +13584,7 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13631,7 +13628,7 @@ export interface Parameter$listAdmissionregistrationV1beta1MutatingWebhookConfig /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13694,7 +13691,7 @@ export interface Parameter$deleteAdmissionregistrationV1beta1CollectionMutatingW /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13811,7 +13808,7 @@ export interface Parameter$listAdmissionregistrationV1beta1ValidatingWebhookConf /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13874,7 +13871,7 @@ export interface Parameter$deleteAdmissionregistrationV1beta1CollectionValidatin /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -13989,7 +13986,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14024,7 +14021,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1MutatingWebhookConfi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14061,7 +14058,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14096,7 +14093,7 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingWebhookCon /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14145,7 +14142,7 @@ export interface Parameter$listApiextensionsV1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14208,7 +14205,7 @@ export interface Parameter$deleteApiextensionsV1CollectionCustomResourceDefiniti /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14373,7 +14370,7 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinitionList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14408,7 +14405,7 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14452,7 +14449,7 @@ export interface Parameter$listApiextensionsV1beta1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14515,7 +14512,7 @@ export interface Parameter$deleteApiextensionsV1beta1CollectionCustomResourceDef /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14680,7 +14677,7 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinitionList /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14715,7 +14712,7 @@ export interface Parameter$watchApiextensionsV1beta1CustomResourceDefinition { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14764,7 +14761,7 @@ export interface Parameter$listApiregistrationV1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14827,7 +14824,7 @@ export interface Parameter$deleteApiregistrationV1CollectionAPIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -14992,7 +14989,7 @@ export interface Parameter$watchApiregistrationV1APIServiceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15027,7 +15024,7 @@ export interface Parameter$watchApiregistrationV1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15071,7 +15068,7 @@ export interface Parameter$listApiregistrationV1beta1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15134,7 +15131,7 @@ export interface Parameter$deleteApiregistrationV1beta1CollectionAPIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15299,7 +15296,7 @@ export interface Parameter$watchApiregistrationV1beta1APIServiceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15334,7 +15331,7 @@ export interface Parameter$watchApiregistrationV1beta1APIService { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15381,7 +15378,7 @@ export interface Parameter$listAppsV1ControllerRevisionForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15416,7 +15413,7 @@ export interface Parameter$listAppsV1DaemonSetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15451,7 +15448,7 @@ export interface Parameter$listAppsV1DeploymentForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15488,7 +15485,7 @@ export interface Parameter$listAppsV1NamespacedControllerRevision { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15555,7 +15552,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedControllerRevision { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15682,7 +15679,7 @@ export interface Parameter$listAppsV1NamespacedDaemonSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15749,7 +15746,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDaemonSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15932,7 +15929,7 @@ export interface Parameter$listAppsV1NamespacedDeployment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -15999,7 +15996,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedDeployment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16238,7 +16235,7 @@ export interface Parameter$listAppsV1NamespacedReplicaSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16305,7 +16302,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedReplicaSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16544,7 +16541,7 @@ export interface Parameter$listAppsV1NamespacedStatefulSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16611,7 +16608,7 @@ export interface Parameter$deleteAppsV1CollectionNamespacedStatefulSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16848,7 +16845,7 @@ export interface Parameter$listAppsV1ReplicaSetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16883,7 +16880,7 @@ export interface Parameter$listAppsV1StatefulSetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16918,7 +16915,7 @@ export interface Parameter$watchAppsV1ControllerRevisionListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16953,7 +16950,7 @@ export interface Parameter$watchAppsV1DaemonSetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -16988,7 +16985,7 @@ export interface Parameter$watchAppsV1DeploymentListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17023,7 +17020,7 @@ export interface Parameter$watchAppsV1NamespacedControllerRevisionList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17060,7 +17057,7 @@ export interface Parameter$watchAppsV1NamespacedControllerRevision { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17099,7 +17096,7 @@ export interface Parameter$watchAppsV1NamespacedDaemonSetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17136,7 +17133,7 @@ export interface Parameter$watchAppsV1NamespacedDaemonSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17175,7 +17172,7 @@ export interface Parameter$watchAppsV1NamespacedDeploymentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17212,7 +17209,7 @@ export interface Parameter$watchAppsV1NamespacedDeployment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17251,7 +17248,7 @@ export interface Parameter$watchAppsV1NamespacedReplicaSetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17288,7 +17285,7 @@ export interface Parameter$watchAppsV1NamespacedReplicaSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17327,7 +17324,7 @@ export interface Parameter$watchAppsV1NamespacedStatefulSetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17364,7 +17361,7 @@ export interface Parameter$watchAppsV1NamespacedStatefulSet { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17403,7 +17400,7 @@ export interface Parameter$watchAppsV1ReplicaSetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17438,7 +17435,7 @@ export interface Parameter$watchAppsV1StatefulSetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17485,7 +17482,7 @@ export interface Parameter$listAuditregistrationV1alpha1AuditSink { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17548,7 +17545,7 @@ export interface Parameter$deleteAuditregistrationV1alpha1CollectionAuditSink { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17663,7 +17660,7 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSinkList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -17698,7 +17695,7 @@ export interface Parameter$watchAuditregistrationV1alpha1AuditSink { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18039,7 +18036,7 @@ export interface Parameter$listAutoscalingV1HorizontalPodAutoscalerForAllNamespa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18076,7 +18073,7 @@ export interface Parameter$listAutoscalingV1NamespacedHorizontalPodAutoscaler { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18143,7 +18140,7 @@ export interface Parameter$deleteAutoscalingV1CollectionNamespacedHorizontalPodA /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18324,7 +18321,7 @@ export interface Parameter$watchAutoscalingV1HorizontalPodAutoscalerListForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18359,7 +18356,7 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerLi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18396,7 +18393,7 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18440,7 +18437,7 @@ export interface Parameter$listAutoscalingV2beta1HorizontalPodAutoscalerForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18477,7 +18474,7 @@ export interface Parameter$listAutoscalingV2beta1NamespacedHorizontalPodAutoscal /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18544,7 +18541,7 @@ export interface Parameter$deleteAutoscalingV2beta1CollectionNamespacedHorizonta /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18725,7 +18722,7 @@ export interface Parameter$watchAutoscalingV2beta1HorizontalPodAutoscalerListFor /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18760,7 +18757,7 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18797,7 +18794,7 @@ export interface Parameter$watchAutoscalingV2beta1NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18841,7 +18838,7 @@ export interface Parameter$listAutoscalingV2beta2HorizontalPodAutoscalerForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18878,7 +18875,7 @@ export interface Parameter$listAutoscalingV2beta2NamespacedHorizontalPodAutoscal /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -18945,7 +18942,7 @@ export interface Parameter$deleteAutoscalingV2beta2CollectionNamespacedHorizonta /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19126,7 +19123,7 @@ export interface Parameter$watchAutoscalingV2beta2HorizontalPodAutoscalerListFor /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19161,7 +19158,7 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19198,7 +19195,7 @@ export interface Parameter$watchAutoscalingV2beta2NamespacedHorizontalPodAutosca /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19247,7 +19244,7 @@ export interface Parameter$listBatchV1JobForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19284,7 +19281,7 @@ export interface Parameter$listBatchV1NamespacedJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19351,7 +19348,7 @@ export interface Parameter$deleteBatchV1CollectionNamespacedJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19532,7 +19529,7 @@ export interface Parameter$watchBatchV1JobListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19567,7 +19564,7 @@ export interface Parameter$watchBatchV1NamespacedJobList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19604,7 +19601,7 @@ export interface Parameter$watchBatchV1NamespacedJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19648,7 +19645,7 @@ export interface Parameter$listBatchV1beta1CronJobForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19685,7 +19682,7 @@ export interface Parameter$listBatchV1beta1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19752,7 +19749,7 @@ export interface Parameter$deleteBatchV1beta1CollectionNamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19933,7 +19930,7 @@ export interface Parameter$watchBatchV1beta1CronJobListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -19968,7 +19965,7 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJobList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20005,7 +20002,7 @@ export interface Parameter$watchBatchV1beta1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20049,7 +20046,7 @@ export interface Parameter$listBatchV2alpha1CronJobForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20086,7 +20083,7 @@ export interface Parameter$listBatchV2alpha1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20153,7 +20150,7 @@ export interface Parameter$deleteBatchV2alpha1CollectionNamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20334,7 +20331,7 @@ export interface Parameter$watchBatchV2alpha1CronJobListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20369,7 +20366,7 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJobList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20406,7 +20403,7 @@ export interface Parameter$watchBatchV2alpha1NamespacedCronJob { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20457,7 +20454,7 @@ export interface Parameter$listCertificatesV1beta1CertificateSigningRequest { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20520,7 +20517,7 @@ export interface Parameter$deleteCertificatesV1beta1CollectionCertificateSigning /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20706,7 +20703,7 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequestList /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20741,7 +20738,7 @@ export interface Parameter$watchCertificatesV1beta1CertificateSigningRequest { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20788,7 +20785,7 @@ export interface Parameter$listCoordinationV1LeaseForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20825,7 +20822,7 @@ export interface Parameter$listCoordinationV1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -20892,7 +20889,7 @@ export interface Parameter$deleteCoordinationV1CollectionNamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21017,7 +21014,7 @@ export interface Parameter$watchCoordinationV1LeaseListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21052,7 +21049,7 @@ export interface Parameter$watchCoordinationV1NamespacedLeaseList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21089,7 +21086,7 @@ export interface Parameter$watchCoordinationV1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21133,7 +21130,7 @@ export interface Parameter$listCoordinationV1beta1LeaseForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21170,7 +21167,7 @@ export interface Parameter$listCoordinationV1beta1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21237,7 +21234,7 @@ export interface Parameter$deleteCoordinationV1beta1CollectionNamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21362,7 +21359,7 @@ export interface Parameter$watchCoordinationV1beta1LeaseListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21397,7 +21394,7 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLeaseList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21434,7 +21431,7 @@ export interface Parameter$watchCoordinationV1beta1NamespacedLease { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21483,7 +21480,7 @@ export interface Parameter$listDiscoveryV1beta1EndpointSliceForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21520,7 +21517,7 @@ export interface Parameter$listDiscoveryV1beta1NamespacedEndpointSlice { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21587,7 +21584,7 @@ export interface Parameter$deleteDiscoveryV1beta1CollectionNamespacedEndpointSli /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21712,7 +21709,7 @@ export interface Parameter$watchDiscoveryV1beta1EndpointSliceListForAllNamespace /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21747,7 +21744,7 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSliceList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21784,7 +21781,7 @@ export interface Parameter$watchDiscoveryV1beta1NamespacedEndpointSlice { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21833,7 +21830,7 @@ export interface Parameter$listEventsV1beta1EventForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21870,7 +21867,7 @@ export interface Parameter$listEventsV1beta1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -21937,7 +21934,7 @@ export interface Parameter$deleteEventsV1beta1CollectionNamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22062,7 +22059,7 @@ export interface Parameter$watchEventsV1beta1EventListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22097,7 +22094,7 @@ export interface Parameter$watchEventsV1beta1NamespacedEventList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22134,7 +22131,7 @@ export interface Parameter$watchEventsV1beta1NamespacedEvent { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22183,7 +22180,7 @@ export interface Parameter$listExtensionsV1beta1IngressForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22220,7 +22217,7 @@ export interface Parameter$listExtensionsV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22287,7 +22284,7 @@ export interface Parameter$deleteExtensionsV1beta1CollectionNamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22468,7 +22465,7 @@ export interface Parameter$watchExtensionsV1beta1IngressListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22503,7 +22500,7 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngressList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22540,7 +22537,7 @@ export interface Parameter$watchExtensionsV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22591,7 +22588,7 @@ export interface Parameter$listFlowcontrolApiserverV1alpha1FlowSchema { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22654,7 +22651,7 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1CollectionFlowSchem /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22821,7 +22818,7 @@ export interface Parameter$listFlowcontrolApiserverV1alpha1PriorityLevelConfigur /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -22884,7 +22881,7 @@ export interface Parameter$deleteFlowcontrolApiserverV1alpha1CollectionPriorityL /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23049,7 +23046,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchemaList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23084,7 +23081,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1FlowSchema { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23121,7 +23118,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23156,7 +23153,7 @@ export interface Parameter$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigu /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23205,7 +23202,7 @@ export interface Parameter$listNetworkingV1NamespacedNetworkPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23272,7 +23269,7 @@ export interface Parameter$deleteNetworkingV1CollectionNamespacedNetworkPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23397,7 +23394,7 @@ export interface Parameter$listNetworkingV1NetworkPolicyForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23432,7 +23429,7 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicyList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23469,7 +23466,7 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23508,7 +23505,7 @@ export interface Parameter$watchNetworkingV1NetworkPolicyListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23550,7 +23547,7 @@ export interface Parameter$listNetworkingV1beta1IngressClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23613,7 +23610,7 @@ export interface Parameter$deleteNetworkingV1beta1CollectionIngressClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23728,7 +23725,7 @@ export interface Parameter$listNetworkingV1beta1IngressForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23765,7 +23762,7 @@ export interface Parameter$listNetworkingV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -23832,7 +23829,7 @@ export interface Parameter$deleteNetworkingV1beta1CollectionNamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24013,7 +24010,7 @@ export interface Parameter$watchNetworkingV1beta1IngressClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24048,7 +24045,7 @@ export interface Parameter$watchNetworkingV1beta1IngressClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24085,7 +24082,7 @@ export interface Parameter$watchNetworkingV1beta1IngressListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24120,7 +24117,7 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngressList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24157,7 +24154,7 @@ export interface Parameter$watchNetworkingV1beta1NamespacedIngress { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24208,7 +24205,7 @@ export interface Parameter$listNodeV1alpha1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24271,7 +24268,7 @@ export interface Parameter$deleteNodeV1alpha1CollectionRuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24386,7 +24383,7 @@ export interface Parameter$watchNodeV1alpha1RuntimeClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24421,7 +24418,7 @@ export interface Parameter$watchNodeV1alpha1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24465,7 +24462,7 @@ export interface Parameter$listNodeV1beta1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24528,7 +24525,7 @@ export interface Parameter$deleteNodeV1beta1CollectionRuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24643,7 +24640,7 @@ export interface Parameter$watchNodeV1beta1RuntimeClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24678,7 +24675,7 @@ export interface Parameter$watchNodeV1beta1RuntimeClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24727,7 +24724,7 @@ export interface Parameter$listPolicyV1beta1NamespacedPodDisruptionBudget { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24794,7 +24791,7 @@ export interface Parameter$deletePolicyV1beta1CollectionNamespacedPodDisruptionB /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -24975,7 +24972,7 @@ export interface Parameter$listPolicyV1beta1PodDisruptionBudgetForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25012,7 +25009,7 @@ export interface Parameter$listPolicyV1beta1PodSecurityPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25075,7 +25072,7 @@ export interface Parameter$deletePolicyV1beta1CollectionPodSecurityPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25190,7 +25187,7 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudgetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25227,7 +25224,7 @@ export interface Parameter$watchPolicyV1beta1NamespacedPodDisruptionBudget { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25266,7 +25263,7 @@ export interface Parameter$watchPolicyV1beta1PodDisruptionBudgetListForAllNamesp /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25301,7 +25298,7 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicyList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25336,7 +25333,7 @@ export interface Parameter$watchPolicyV1beta1PodSecurityPolicy { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25385,7 +25382,7 @@ export interface Parameter$listRbacAuthorizationV1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25448,7 +25445,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionClusterRoleBinding /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25561,7 +25558,7 @@ export interface Parameter$listRbacAuthorizationV1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25624,7 +25621,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25737,7 +25734,7 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25804,7 +25801,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRoleBind /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25927,7 +25924,7 @@ export interface Parameter$listRbacAuthorizationV1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -25994,7 +25991,7 @@ export interface Parameter$deleteRbacAuthorizationV1CollectionNamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26115,7 +26112,7 @@ export interface Parameter$listRbacAuthorizationV1RoleBindingForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26150,7 +26147,7 @@ export interface Parameter$listRbacAuthorizationV1RoleForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26185,7 +26182,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBindingList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26220,7 +26217,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26257,7 +26254,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26292,7 +26289,7 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26329,7 +26326,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26366,7 +26363,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26405,7 +26402,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26442,7 +26439,7 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26481,7 +26478,7 @@ export interface Parameter$watchRbacAuthorizationV1RoleBindingListForAllNamespac /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26516,7 +26513,7 @@ export interface Parameter$watchRbacAuthorizationV1RoleListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26558,7 +26555,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26621,7 +26618,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionClusterRoleB /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26734,7 +26731,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26797,7 +26794,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionClusterRole /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26910,7 +26907,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -26977,7 +26974,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27100,7 +27097,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27167,7 +27164,7 @@ export interface Parameter$deleteRbacAuthorizationV1alpha1CollectionNamespacedRo /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27288,7 +27285,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1RoleBindingForAllNamespa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27323,7 +27320,7 @@ export interface Parameter$listRbacAuthorizationV1alpha1RoleForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27358,7 +27355,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBindingList /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27393,7 +27390,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27430,7 +27427,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27465,7 +27462,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27502,7 +27499,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBindingLi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27539,7 +27536,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27578,7 +27575,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27615,7 +27612,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27654,7 +27651,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1RoleBindingListForAllNa /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27689,7 +27686,7 @@ export interface Parameter$watchRbacAuthorizationV1alpha1RoleListForAllNamespace /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27731,7 +27728,7 @@ export interface Parameter$listRbacAuthorizationV1beta1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27794,7 +27791,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionClusterRoleBi /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27907,7 +27904,7 @@ export interface Parameter$listRbacAuthorizationV1beta1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -27970,7 +27967,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28083,7 +28080,7 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28150,7 +28147,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28273,7 +28270,7 @@ export interface Parameter$listRbacAuthorizationV1beta1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28340,7 +28337,7 @@ export interface Parameter$deleteRbacAuthorizationV1beta1CollectionNamespacedRol /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28461,7 +28458,7 @@ export interface Parameter$listRbacAuthorizationV1beta1RoleBindingForAllNamespac /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28496,7 +28493,7 @@ export interface Parameter$listRbacAuthorizationV1beta1RoleForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28531,7 +28528,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBindingList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28566,7 +28563,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28603,7 +28600,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28638,7 +28635,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1ClusterRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28675,7 +28672,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBindingLis /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28712,7 +28709,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleBinding { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28751,7 +28748,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRoleList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28788,7 +28785,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1NamespacedRole { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28827,7 +28824,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1RoleBindingListForAllNam /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28862,7 +28859,7 @@ export interface Parameter$watchRbacAuthorizationV1beta1RoleListForAllNamespaces /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28909,7 +28906,7 @@ export interface Parameter$listSchedulingV1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -28972,7 +28969,7 @@ export interface Parameter$deleteSchedulingV1CollectionPriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29087,7 +29084,7 @@ export interface Parameter$watchSchedulingV1PriorityClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29122,7 +29119,7 @@ export interface Parameter$watchSchedulingV1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29166,7 +29163,7 @@ export interface Parameter$listSchedulingV1alpha1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29229,7 +29226,7 @@ export interface Parameter$deleteSchedulingV1alpha1CollectionPriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29344,7 +29341,7 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29379,7 +29376,7 @@ export interface Parameter$watchSchedulingV1alpha1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29423,7 +29420,7 @@ export interface Parameter$listSchedulingV1beta1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29486,7 +29483,7 @@ export interface Parameter$deleteSchedulingV1beta1CollectionPriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29601,7 +29598,7 @@ export interface Parameter$watchSchedulingV1beta1PriorityClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29636,7 +29633,7 @@ export interface Parameter$watchSchedulingV1beta1PriorityClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29685,7 +29682,7 @@ export interface Parameter$listSettingsV1alpha1NamespacedPodPreset { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29752,7 +29749,7 @@ export interface Parameter$deleteSettingsV1alpha1CollectionNamespacedPodPreset { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29877,7 +29874,7 @@ export interface Parameter$listSettingsV1alpha1PodPresetForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29912,7 +29909,7 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPresetList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29949,7 +29946,7 @@ export interface Parameter$watchSettingsV1alpha1NamespacedPodPreset { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -29988,7 +29985,7 @@ export interface Parameter$watchSettingsV1alpha1PodPresetListForAllNamespaces { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30035,7 +30032,7 @@ export interface Parameter$listStorageV1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30098,7 +30095,7 @@ export interface Parameter$deleteStorageV1CollectionCSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30215,7 +30212,7 @@ export interface Parameter$listStorageV1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30278,7 +30275,7 @@ export interface Parameter$deleteStorageV1CollectionCSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30395,7 +30392,7 @@ export interface Parameter$listStorageV1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30458,7 +30455,7 @@ export interface Parameter$deleteStorageV1CollectionStorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30575,7 +30572,7 @@ export interface Parameter$listStorageV1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30638,7 +30635,7 @@ export interface Parameter$deleteStorageV1CollectionVolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30803,7 +30800,7 @@ export interface Parameter$watchStorageV1CSIDriverList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30838,7 +30835,7 @@ export interface Parameter$watchStorageV1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30875,7 +30872,7 @@ export interface Parameter$watchStorageV1CSINodeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30910,7 +30907,7 @@ export interface Parameter$watchStorageV1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30947,7 +30944,7 @@ export interface Parameter$watchStorageV1StorageClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -30982,7 +30979,7 @@ export interface Parameter$watchStorageV1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31019,7 +31016,7 @@ export interface Parameter$watchStorageV1VolumeAttachmentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31054,7 +31051,7 @@ export interface Parameter$watchStorageV1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31098,7 +31095,7 @@ export interface Parameter$listStorageV1alpha1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31161,7 +31158,7 @@ export interface Parameter$deleteStorageV1alpha1CollectionVolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31276,7 +31273,7 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachmentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31311,7 +31308,7 @@ export interface Parameter$watchStorageV1alpha1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31355,7 +31352,7 @@ export interface Parameter$listStorageV1beta1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31418,7 +31415,7 @@ export interface Parameter$deleteStorageV1beta1CollectionCSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31535,7 +31532,7 @@ export interface Parameter$listStorageV1beta1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31598,7 +31595,7 @@ export interface Parameter$deleteStorageV1beta1CollectionCSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31715,7 +31712,7 @@ export interface Parameter$listStorageV1beta1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31778,7 +31775,7 @@ export interface Parameter$deleteStorageV1beta1CollectionStorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31895,7 +31892,7 @@ export interface Parameter$listStorageV1beta1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -31958,7 +31955,7 @@ export interface Parameter$deleteStorageV1beta1CollectionVolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32073,7 +32070,7 @@ export interface Parameter$watchStorageV1beta1CSIDriverList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32108,7 +32105,7 @@ export interface Parameter$watchStorageV1beta1CSIDriver { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32145,7 +32142,7 @@ export interface Parameter$watchStorageV1beta1CSINodeList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32180,7 +32177,7 @@ export interface Parameter$watchStorageV1beta1CSINode { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32217,7 +32214,7 @@ export interface Parameter$watchStorageV1beta1StorageClassList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32252,7 +32249,7 @@ export interface Parameter$watchStorageV1beta1StorageClass { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32289,7 +32286,7 @@ export interface Parameter$watchStorageV1beta1VolumeAttachmentList { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -32324,7 +32321,7 @@ export interface Parameter$watchStorageV1beta1VolumeAttachment { /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ labelSelector?: string; /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the \`continue\` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. * * 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. */ @@ -41044,11 +41041,11 @@ export interface ApiClient { request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; } export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); + const _baseUrl = baseUrl.replace(/\/$/, ""); return { /** get available API versions */ getCoreAPIVersions: (params: Params$getCoreAPIVersions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/\`; + const url = _baseUrl + `/api/`; const headers = { Accept: params.headers.Accept }; @@ -41060,7 +41057,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getCoreV1APIResources: (params: Params$getCoreV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/\`; + const url = _baseUrl + `/api/v1/`; const headers = { Accept: params.headers.Accept }; @@ -41072,7 +41069,7 @@ export const createClient = (apiClient: ApiClient, }, /** list objects of kind ComponentStatus */ listCoreV1ComponentStatus: (params: Params$listCoreV1ComponentStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/componentstatuses\`; + const url = _baseUrl + `/api/v1/componentstatuses`; const headers = { Accept: params.headers.Accept }; @@ -41096,7 +41093,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ComponentStatus */ readCoreV1ComponentStatus: (params: Params$readCoreV1ComponentStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/componentstatuses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/componentstatuses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41112,7 +41109,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ConfigMap */ listCoreV1ConfigMapForAllNamespaces: (params: Params$listCoreV1ConfigMapForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/configmaps\`; + const url = _baseUrl + `/api/v1/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -41136,7 +41133,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Endpoints */ listCoreV1EndpointsForAllNamespaces: (params: Params$listCoreV1EndpointsForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/endpoints\`; + const url = _baseUrl + `/api/v1/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -41160,7 +41157,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Event */ listCoreV1EventForAllNamespaces: (params: Params$listCoreV1EventForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/events\`; + const url = _baseUrl + `/api/v1/events`; const headers = { Accept: params.headers.Accept }; @@ -41184,7 +41181,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind LimitRange */ listCoreV1LimitRangeForAllNamespaces: (params: Params$listCoreV1LimitRangeForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/limitranges\`; + const url = _baseUrl + `/api/v1/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -41208,7 +41205,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Namespace */ listCoreV1Namespace: (params: Params$listCoreV1Namespace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces\`; + const url = _baseUrl + `/api/v1/namespaces`; const headers = { Accept: params.headers.Accept }; @@ -41232,7 +41229,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Namespace */ createCoreV1Namespace: (params: Params$createCoreV1Namespace, option?: RequestOption): Promise<(Response$createCoreV1Namespace$Status$200 | Response$createCoreV1Namespace$Status$201 | Response$createCoreV1Namespace$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces\`; + const url = _baseUrl + `/api/v1/namespaces`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41252,7 +41249,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Binding */ createCoreV1NamespacedBinding: (params: Params$createCoreV1NamespacedBinding, option?: RequestOption): Promise<(Response$createCoreV1NamespacedBinding$Status$200 | Response$createCoreV1NamespacedBinding$Status$201 | Response$createCoreV1NamespacedBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/bindings\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/bindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41272,7 +41269,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ConfigMap */ listCoreV1NamespacedConfigMap: (params: Params$listCoreV1NamespacedConfigMap, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -41296,7 +41293,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ConfigMap */ createCoreV1NamespacedConfigMap: (params: Params$createCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$createCoreV1NamespacedConfigMap$Status$200 | Response$createCoreV1NamespacedConfigMap$Status$201 | Response$createCoreV1NamespacedConfigMap$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41316,7 +41313,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ConfigMap */ deleteCoreV1CollectionNamespacedConfigMap: (params: Params$deleteCoreV1CollectionNamespacedConfigMap, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41346,7 +41343,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ConfigMap */ readCoreV1NamespacedConfigMap: (params: Params$readCoreV1NamespacedConfigMap, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41364,7 +41361,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ConfigMap */ replaceCoreV1NamespacedConfigMap: (params: Params$replaceCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedConfigMap$Status$200 | Response$replaceCoreV1NamespacedConfigMap$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41384,7 +41381,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ConfigMap */ deleteCoreV1NamespacedConfigMap: (params: Params$deleteCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedConfigMap$Status$200 | Response$deleteCoreV1NamespacedConfigMap$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41406,7 +41403,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ConfigMap */ patchCoreV1NamespacedConfigMap: (params: Params$patchCoreV1NamespacedConfigMap, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41427,7 +41424,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Endpoints */ listCoreV1NamespacedEndpoints: (params: Params$listCoreV1NamespacedEndpoints, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -41451,7 +41448,7 @@ export const createClient = (apiClient: ApiClient, }, /** create Endpoints */ createCoreV1NamespacedEndpoints: (params: Params$createCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$createCoreV1NamespacedEndpoints$Status$200 | Response$createCoreV1NamespacedEndpoints$Status$201 | Response$createCoreV1NamespacedEndpoints$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41471,7 +41468,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Endpoints */ deleteCoreV1CollectionNamespacedEndpoints: (params: Params$deleteCoreV1CollectionNamespacedEndpoints, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41501,7 +41498,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Endpoints */ readCoreV1NamespacedEndpoints: (params: Params$readCoreV1NamespacedEndpoints, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41519,7 +41516,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Endpoints */ replaceCoreV1NamespacedEndpoints: (params: Params$replaceCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedEndpoints$Status$200 | Response$replaceCoreV1NamespacedEndpoints$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41539,7 +41536,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete Endpoints */ deleteCoreV1NamespacedEndpoints: (params: Params$deleteCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedEndpoints$Status$200 | Response$deleteCoreV1NamespacedEndpoints$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41561,7 +41558,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Endpoints */ patchCoreV1NamespacedEndpoints: (params: Params$patchCoreV1NamespacedEndpoints, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41582,7 +41579,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Event */ listCoreV1NamespacedEvent: (params: Params$listCoreV1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -41606,7 +41603,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an Event */ createCoreV1NamespacedEvent: (params: Params$createCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$createCoreV1NamespacedEvent$Status$200 | Response$createCoreV1NamespacedEvent$Status$201 | Response$createCoreV1NamespacedEvent$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41626,7 +41623,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Event */ deleteCoreV1CollectionNamespacedEvent: (params: Params$deleteCoreV1CollectionNamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41656,7 +41653,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Event */ readCoreV1NamespacedEvent: (params: Params$readCoreV1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41674,7 +41671,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Event */ replaceCoreV1NamespacedEvent: (params: Params$replaceCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedEvent$Status$200 | Response$replaceCoreV1NamespacedEvent$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41694,7 +41691,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an Event */ deleteCoreV1NamespacedEvent: (params: Params$deleteCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedEvent$Status$200 | Response$deleteCoreV1NamespacedEvent$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41716,7 +41713,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Event */ patchCoreV1NamespacedEvent: (params: Params$patchCoreV1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41737,7 +41734,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind LimitRange */ listCoreV1NamespacedLimitRange: (params: Params$listCoreV1NamespacedLimitRange, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -41761,7 +41758,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a LimitRange */ createCoreV1NamespacedLimitRange: (params: Params$createCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$createCoreV1NamespacedLimitRange$Status$200 | Response$createCoreV1NamespacedLimitRange$Status$201 | Response$createCoreV1NamespacedLimitRange$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41781,7 +41778,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of LimitRange */ deleteCoreV1CollectionNamespacedLimitRange: (params: Params$deleteCoreV1CollectionNamespacedLimitRange, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41811,7 +41808,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified LimitRange */ readCoreV1NamespacedLimitRange: (params: Params$readCoreV1NamespacedLimitRange, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41829,7 +41826,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified LimitRange */ replaceCoreV1NamespacedLimitRange: (params: Params$replaceCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedLimitRange$Status$200 | Response$replaceCoreV1NamespacedLimitRange$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41849,7 +41846,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a LimitRange */ deleteCoreV1NamespacedLimitRange: (params: Params$deleteCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedLimitRange$Status$200 | Response$deleteCoreV1NamespacedLimitRange$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41871,7 +41868,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified LimitRange */ patchCoreV1NamespacedLimitRange: (params: Params$patchCoreV1NamespacedLimitRange, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -41892,7 +41889,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PersistentVolumeClaim */ listCoreV1NamespacedPersistentVolumeClaim: (params: Params$listCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -41916,7 +41913,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PersistentVolumeClaim */ createCoreV1NamespacedPersistentVolumeClaim: (params: Params$createCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$201 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41936,7 +41933,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PersistentVolumeClaim */ deleteCoreV1CollectionNamespacedPersistentVolumeClaim: (params: Params$deleteCoreV1CollectionNamespacedPersistentVolumeClaim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -41966,7 +41963,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PersistentVolumeClaim */ readCoreV1NamespacedPersistentVolumeClaim: (params: Params$readCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -41984,7 +41981,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PersistentVolumeClaim */ replaceCoreV1NamespacedPersistentVolumeClaim: (params: Params$replaceCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42004,7 +42001,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PersistentVolumeClaim */ deleteCoreV1NamespacedPersistentVolumeClaim: (params: Params$deleteCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42026,7 +42023,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PersistentVolumeClaim */ patchCoreV1NamespacedPersistentVolumeClaim: (params: Params$patchCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42047,7 +42044,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified PersistentVolumeClaim */ readCoreV1NamespacedPersistentVolumeClaimStatus: (params: Params$readCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -42063,7 +42060,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified PersistentVolumeClaim */ replaceCoreV1NamespacedPersistentVolumeClaimStatus: (params: Params$replaceCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42083,7 +42080,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified PersistentVolumeClaim */ patchCoreV1NamespacedPersistentVolumeClaimStatus: (params: Params$patchCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42104,7 +42101,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Pod */ listCoreV1NamespacedPod: (params: Params$listCoreV1NamespacedPod, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { Accept: params.headers.Accept }; @@ -42128,7 +42125,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Pod */ createCoreV1NamespacedPod: (params: Params$createCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPod$Status$200 | Response$createCoreV1NamespacedPod$Status$201 | Response$createCoreV1NamespacedPod$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42148,7 +42145,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Pod */ deleteCoreV1CollectionNamespacedPod: (params: Params$deleteCoreV1CollectionNamespacedPod, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42178,7 +42175,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Pod */ readCoreV1NamespacedPod: (params: Params$readCoreV1NamespacedPod, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -42196,7 +42193,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Pod */ replaceCoreV1NamespacedPod: (params: Params$replaceCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPod$Status$200 | Response$replaceCoreV1NamespacedPod$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42216,7 +42213,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Pod */ deleteCoreV1NamespacedPod: (params: Params$deleteCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPod$Status$200 | Response$deleteCoreV1NamespacedPod$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42238,7 +42235,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Pod */ patchCoreV1NamespacedPod: (params: Params$patchCoreV1NamespacedPod, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42259,7 +42256,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to attach of Pod */ connectCoreV1GetNamespacedPodAttach: (params: Params$connectCoreV1GetNamespacedPodAttach, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/attach\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/attach`; const headers = { Accept: "*/*" }; @@ -42279,7 +42276,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to attach of Pod */ connectCoreV1PostNamespacedPodAttach: (params: Params$connectCoreV1PostNamespacedPodAttach, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/attach\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/attach`; const headers = { Accept: "*/*" }; @@ -42299,7 +42296,7 @@ export const createClient = (apiClient: ApiClient, }, /** create binding of a Pod */ createCoreV1NamespacedPodBinding: (params: Params$createCoreV1NamespacedPodBinding, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodBinding$Status$200 | Response$createCoreV1NamespacedPodBinding$Status$201 | Response$createCoreV1NamespacedPodBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/binding\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/binding`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42319,7 +42316,7 @@ export const createClient = (apiClient: ApiClient, }, /** create eviction of a Pod */ createCoreV1NamespacedPodEviction: (params: Params$createCoreV1NamespacedPodEviction, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodEviction$Status$200 | Response$createCoreV1NamespacedPodEviction$Status$201 | Response$createCoreV1NamespacedPodEviction$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/eviction\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/eviction`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42339,7 +42336,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to exec of Pod */ connectCoreV1GetNamespacedPodExec: (params: Params$connectCoreV1GetNamespacedPodExec, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/exec\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/exec`; const headers = { Accept: "*/*" }; @@ -42360,7 +42357,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to exec of Pod */ connectCoreV1PostNamespacedPodExec: (params: Params$connectCoreV1PostNamespacedPodExec, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/exec\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/exec`; const headers = { Accept: "*/*" }; @@ -42381,7 +42378,7 @@ export const createClient = (apiClient: ApiClient, }, /** read log of the specified Pod */ readCoreV1NamespacedPodLog: (params: Params$readCoreV1NamespacedPodLog, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/log\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/log`; const headers = { Accept: params.headers.Accept }; @@ -42405,7 +42402,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to portforward of Pod */ connectCoreV1GetNamespacedPodPortforward: (params: Params$connectCoreV1GetNamespacedPodPortforward, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/portforward\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/portforward`; const headers = { Accept: "*/*" }; @@ -42421,7 +42418,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to portforward of Pod */ connectCoreV1PostNamespacedPodPortforward: (params: Params$connectCoreV1PostNamespacedPodPortforward, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/portforward\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/portforward`; const headers = { Accept: "*/*" }; @@ -42437,7 +42434,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to proxy of Pod */ connectCoreV1GetNamespacedPodProxy: (params: Params$connectCoreV1GetNamespacedPodProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42453,7 +42450,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PUT requests to proxy of Pod */ connectCoreV1PutNamespacedPodProxy: (params: Params$connectCoreV1PutNamespacedPodProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42469,7 +42466,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to proxy of Pod */ connectCoreV1PostNamespacedPodProxy: (params: Params$connectCoreV1PostNamespacedPodProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42485,7 +42482,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect DELETE requests to proxy of Pod */ connectCoreV1DeleteNamespacedPodProxy: (params: Params$connectCoreV1DeleteNamespacedPodProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42501,7 +42498,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect OPTIONS requests to proxy of Pod */ connectCoreV1OptionsNamespacedPodProxy: (params: Params$connectCoreV1OptionsNamespacedPodProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42517,7 +42514,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect HEAD requests to proxy of Pod */ connectCoreV1HeadNamespacedPodProxy: (params: Params$connectCoreV1HeadNamespacedPodProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42533,7 +42530,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PATCH requests to proxy of Pod */ connectCoreV1PatchNamespacedPodProxy: (params: Params$connectCoreV1PatchNamespacedPodProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -42549,7 +42546,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to proxy of Pod */ connectCoreV1GetNamespacedPodProxyWithPath: (params: Params$connectCoreV1GetNamespacedPodProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42565,7 +42562,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PUT requests to proxy of Pod */ connectCoreV1PutNamespacedPodProxyWithPath: (params: Params$connectCoreV1PutNamespacedPodProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42581,7 +42578,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to proxy of Pod */ connectCoreV1PostNamespacedPodProxyWithPath: (params: Params$connectCoreV1PostNamespacedPodProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42597,7 +42594,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect DELETE requests to proxy of Pod */ connectCoreV1DeleteNamespacedPodProxyWithPath: (params: Params$connectCoreV1DeleteNamespacedPodProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42613,7 +42610,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect OPTIONS requests to proxy of Pod */ connectCoreV1OptionsNamespacedPodProxyWithPath: (params: Params$connectCoreV1OptionsNamespacedPodProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42629,7 +42626,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect HEAD requests to proxy of Pod */ connectCoreV1HeadNamespacedPodProxyWithPath: (params: Params$connectCoreV1HeadNamespacedPodProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42645,7 +42642,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PATCH requests to proxy of Pod */ connectCoreV1PatchNamespacedPodProxyWithPath: (params: Params$connectCoreV1PatchNamespacedPodProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -42661,7 +42658,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Pod */ readCoreV1NamespacedPodStatus: (params: Params$readCoreV1NamespacedPodStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -42677,7 +42674,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Pod */ replaceCoreV1NamespacedPodStatus: (params: Params$replaceCoreV1NamespacedPodStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPodStatus$Status$200 | Response$replaceCoreV1NamespacedPodStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42697,7 +42694,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Pod */ patchCoreV1NamespacedPodStatus: (params: Params$patchCoreV1NamespacedPodStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42718,7 +42715,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PodTemplate */ listCoreV1NamespacedPodTemplate: (params: Params$listCoreV1NamespacedPodTemplate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -42742,7 +42739,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PodTemplate */ createCoreV1NamespacedPodTemplate: (params: Params$createCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodTemplate$Status$200 | Response$createCoreV1NamespacedPodTemplate$Status$201 | Response$createCoreV1NamespacedPodTemplate$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42762,7 +42759,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PodTemplate */ deleteCoreV1CollectionNamespacedPodTemplate: (params: Params$deleteCoreV1CollectionNamespacedPodTemplate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42792,7 +42789,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PodTemplate */ readCoreV1NamespacedPodTemplate: (params: Params$readCoreV1NamespacedPodTemplate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -42810,7 +42807,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PodTemplate */ replaceCoreV1NamespacedPodTemplate: (params: Params$replaceCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPodTemplate$Status$200 | Response$replaceCoreV1NamespacedPodTemplate$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42830,7 +42827,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PodTemplate */ deleteCoreV1NamespacedPodTemplate: (params: Params$deleteCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPodTemplate$Status$200 | Response$deleteCoreV1NamespacedPodTemplate$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42852,7 +42849,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PodTemplate */ patchCoreV1NamespacedPodTemplate: (params: Params$patchCoreV1NamespacedPodTemplate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -42873,7 +42870,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ReplicationController */ listCoreV1NamespacedReplicationController: (params: Params$listCoreV1NamespacedReplicationController, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -42897,7 +42894,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ReplicationController */ createCoreV1NamespacedReplicationController: (params: Params$createCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$createCoreV1NamespacedReplicationController$Status$200 | Response$createCoreV1NamespacedReplicationController$Status$201 | Response$createCoreV1NamespacedReplicationController$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42917,7 +42914,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ReplicationController */ deleteCoreV1CollectionNamespacedReplicationController: (params: Params$deleteCoreV1CollectionNamespacedReplicationController, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42947,7 +42944,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ReplicationController */ readCoreV1NamespacedReplicationController: (params: Params$readCoreV1NamespacedReplicationController, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -42965,7 +42962,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ReplicationController */ replaceCoreV1NamespacedReplicationController: (params: Params$replaceCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationController$Status$200 | Response$replaceCoreV1NamespacedReplicationController$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -42985,7 +42982,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ReplicationController */ deleteCoreV1NamespacedReplicationController: (params: Params$deleteCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedReplicationController$Status$200 | Response$deleteCoreV1NamespacedReplicationController$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43007,7 +43004,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ReplicationController */ patchCoreV1NamespacedReplicationController: (params: Params$patchCoreV1NamespacedReplicationController, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43028,7 +43025,7 @@ export const createClient = (apiClient: ApiClient, }, /** read scale of the specified ReplicationController */ readCoreV1NamespacedReplicationControllerScale: (params: Params$readCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -43044,7 +43041,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace scale of the specified ReplicationController */ replaceCoreV1NamespacedReplicationControllerScale: (params: Params$replaceCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerScale$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43064,7 +43061,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update scale of the specified ReplicationController */ patchCoreV1NamespacedReplicationControllerScale: (params: Params$patchCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43085,7 +43082,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified ReplicationController */ readCoreV1NamespacedReplicationControllerStatus: (params: Params$readCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -43101,7 +43098,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified ReplicationController */ replaceCoreV1NamespacedReplicationControllerStatus: (params: Params$replaceCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43121,7 +43118,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified ReplicationController */ patchCoreV1NamespacedReplicationControllerStatus: (params: Params$patchCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43142,7 +43139,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ResourceQuota */ listCoreV1NamespacedResourceQuota: (params: Params$listCoreV1NamespacedResourceQuota, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -43166,7 +43163,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ResourceQuota */ createCoreV1NamespacedResourceQuota: (params: Params$createCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$createCoreV1NamespacedResourceQuota$Status$200 | Response$createCoreV1NamespacedResourceQuota$Status$201 | Response$createCoreV1NamespacedResourceQuota$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43186,7 +43183,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ResourceQuota */ deleteCoreV1CollectionNamespacedResourceQuota: (params: Params$deleteCoreV1CollectionNamespacedResourceQuota, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43216,7 +43213,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ResourceQuota */ readCoreV1NamespacedResourceQuota: (params: Params$readCoreV1NamespacedResourceQuota, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43234,7 +43231,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ResourceQuota */ replaceCoreV1NamespacedResourceQuota: (params: Params$replaceCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedResourceQuota$Status$200 | Response$replaceCoreV1NamespacedResourceQuota$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43254,7 +43251,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ResourceQuota */ deleteCoreV1NamespacedResourceQuota: (params: Params$deleteCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedResourceQuota$Status$200 | Response$deleteCoreV1NamespacedResourceQuota$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43276,7 +43273,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ResourceQuota */ patchCoreV1NamespacedResourceQuota: (params: Params$patchCoreV1NamespacedResourceQuota, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43297,7 +43294,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified ResourceQuota */ readCoreV1NamespacedResourceQuotaStatus: (params: Params$readCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -43313,7 +43310,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified ResourceQuota */ replaceCoreV1NamespacedResourceQuotaStatus: (params: Params$replaceCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 | Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43333,7 +43330,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified ResourceQuota */ patchCoreV1NamespacedResourceQuotaStatus: (params: Params$patchCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43354,7 +43351,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Secret */ listCoreV1NamespacedSecret: (params: Params$listCoreV1NamespacedSecret, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { Accept: params.headers.Accept }; @@ -43378,7 +43375,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Secret */ createCoreV1NamespacedSecret: (params: Params$createCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$createCoreV1NamespacedSecret$Status$200 | Response$createCoreV1NamespacedSecret$Status$201 | Response$createCoreV1NamespacedSecret$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43398,7 +43395,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Secret */ deleteCoreV1CollectionNamespacedSecret: (params: Params$deleteCoreV1CollectionNamespacedSecret, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43428,7 +43425,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Secret */ readCoreV1NamespacedSecret: (params: Params$readCoreV1NamespacedSecret, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43446,7 +43443,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Secret */ replaceCoreV1NamespacedSecret: (params: Params$replaceCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedSecret$Status$200 | Response$replaceCoreV1NamespacedSecret$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43466,7 +43463,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Secret */ deleteCoreV1NamespacedSecret: (params: Params$deleteCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedSecret$Status$200 | Response$deleteCoreV1NamespacedSecret$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43488,7 +43485,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Secret */ patchCoreV1NamespacedSecret: (params: Params$patchCoreV1NamespacedSecret, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43509,7 +43506,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ServiceAccount */ listCoreV1NamespacedServiceAccount: (params: Params$listCoreV1NamespacedServiceAccount, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -43533,7 +43530,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ServiceAccount */ createCoreV1NamespacedServiceAccount: (params: Params$createCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$createCoreV1NamespacedServiceAccount$Status$200 | Response$createCoreV1NamespacedServiceAccount$Status$201 | Response$createCoreV1NamespacedServiceAccount$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43553,7 +43550,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ServiceAccount */ deleteCoreV1CollectionNamespacedServiceAccount: (params: Params$deleteCoreV1CollectionNamespacedServiceAccount, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43583,7 +43580,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ServiceAccount */ readCoreV1NamespacedServiceAccount: (params: Params$readCoreV1NamespacedServiceAccount, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43601,7 +43598,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ServiceAccount */ replaceCoreV1NamespacedServiceAccount: (params: Params$replaceCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedServiceAccount$Status$200 | Response$replaceCoreV1NamespacedServiceAccount$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43621,7 +43618,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ServiceAccount */ deleteCoreV1NamespacedServiceAccount: (params: Params$deleteCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedServiceAccount$Status$200 | Response$deleteCoreV1NamespacedServiceAccount$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43643,7 +43640,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ServiceAccount */ patchCoreV1NamespacedServiceAccount: (params: Params$patchCoreV1NamespacedServiceAccount, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43664,7 +43661,7 @@ export const createClient = (apiClient: ApiClient, }, /** create token of a ServiceAccount */ createCoreV1NamespacedServiceAccountToken: (params: Params$createCoreV1NamespacedServiceAccountToken, option?: RequestOption): Promise<(Response$createCoreV1NamespacedServiceAccountToken$Status$200 | Response$createCoreV1NamespacedServiceAccountToken$Status$201 | Response$createCoreV1NamespacedServiceAccountToken$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}/token\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}/token`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43684,7 +43681,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Service */ listCoreV1NamespacedService: (params: Params$listCoreV1NamespacedService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; const headers = { Accept: params.headers.Accept }; @@ -43708,7 +43705,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Service */ createCoreV1NamespacedService: (params: Params$createCoreV1NamespacedService, option?: RequestOption): Promise<(Response$createCoreV1NamespacedService$Status$200 | Response$createCoreV1NamespacedService$Status$201 | Response$createCoreV1NamespacedService$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43728,7 +43725,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Service */ readCoreV1NamespacedService: (params: Params$readCoreV1NamespacedService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -43746,7 +43743,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Service */ replaceCoreV1NamespacedService: (params: Params$replaceCoreV1NamespacedService, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedService$Status$200 | Response$replaceCoreV1NamespacedService$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43766,7 +43763,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Service */ deleteCoreV1NamespacedService: (params: Params$deleteCoreV1NamespacedService, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedService$Status$200 | Response$deleteCoreV1NamespacedService$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -43788,7 +43785,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Service */ patchCoreV1NamespacedService: (params: Params$patchCoreV1NamespacedService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -43809,7 +43806,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to proxy of Service */ connectCoreV1GetNamespacedServiceProxy: (params: Params$connectCoreV1GetNamespacedServiceProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43825,7 +43822,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PUT requests to proxy of Service */ connectCoreV1PutNamespacedServiceProxy: (params: Params$connectCoreV1PutNamespacedServiceProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43841,7 +43838,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to proxy of Service */ connectCoreV1PostNamespacedServiceProxy: (params: Params$connectCoreV1PostNamespacedServiceProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43857,7 +43854,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect DELETE requests to proxy of Service */ connectCoreV1DeleteNamespacedServiceProxy: (params: Params$connectCoreV1DeleteNamespacedServiceProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43873,7 +43870,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect OPTIONS requests to proxy of Service */ connectCoreV1OptionsNamespacedServiceProxy: (params: Params$connectCoreV1OptionsNamespacedServiceProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43889,7 +43886,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect HEAD requests to proxy of Service */ connectCoreV1HeadNamespacedServiceProxy: (params: Params$connectCoreV1HeadNamespacedServiceProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43905,7 +43902,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PATCH requests to proxy of Service */ connectCoreV1PatchNamespacedServiceProxy: (params: Params$connectCoreV1PatchNamespacedServiceProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -43921,7 +43918,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to proxy of Service */ connectCoreV1GetNamespacedServiceProxyWithPath: (params: Params$connectCoreV1GetNamespacedServiceProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43937,7 +43934,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PUT requests to proxy of Service */ connectCoreV1PutNamespacedServiceProxyWithPath: (params: Params$connectCoreV1PutNamespacedServiceProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43953,7 +43950,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to proxy of Service */ connectCoreV1PostNamespacedServiceProxyWithPath: (params: Params$connectCoreV1PostNamespacedServiceProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43969,7 +43966,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect DELETE requests to proxy of Service */ connectCoreV1DeleteNamespacedServiceProxyWithPath: (params: Params$connectCoreV1DeleteNamespacedServiceProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -43985,7 +43982,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect OPTIONS requests to proxy of Service */ connectCoreV1OptionsNamespacedServiceProxyWithPath: (params: Params$connectCoreV1OptionsNamespacedServiceProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44001,7 +43998,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect HEAD requests to proxy of Service */ connectCoreV1HeadNamespacedServiceProxyWithPath: (params: Params$connectCoreV1HeadNamespacedServiceProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44017,7 +44014,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PATCH requests to proxy of Service */ connectCoreV1PatchNamespacedServiceProxyWithPath: (params: Params$connectCoreV1PatchNamespacedServiceProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44033,7 +44030,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Service */ readCoreV1NamespacedServiceStatus: (params: Params$readCoreV1NamespacedServiceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44049,7 +44046,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Service */ replaceCoreV1NamespacedServiceStatus: (params: Params$replaceCoreV1NamespacedServiceStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedServiceStatus$Status$200 | Response$replaceCoreV1NamespacedServiceStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44069,7 +44066,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Service */ patchCoreV1NamespacedServiceStatus: (params: Params$patchCoreV1NamespacedServiceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44090,7 +44087,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Namespace */ readCoreV1Namespace: (params: Params$readCoreV1Namespace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -44108,7 +44105,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Namespace */ replaceCoreV1Namespace: (params: Params$replaceCoreV1Namespace, option?: RequestOption): Promise<(Response$replaceCoreV1Namespace$Status$200 | Response$replaceCoreV1Namespace$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44128,7 +44125,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Namespace */ deleteCoreV1Namespace: (params: Params$deleteCoreV1Namespace, option?: RequestOption): Promise<(Response$deleteCoreV1Namespace$Status$200 | Response$deleteCoreV1Namespace$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44150,7 +44147,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Namespace */ patchCoreV1Namespace: (params: Params$patchCoreV1Namespace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44171,7 +44168,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace finalize of the specified Namespace */ replaceCoreV1NamespaceFinalize: (params: Params$replaceCoreV1NamespaceFinalize, option?: RequestOption): Promise<(Response$replaceCoreV1NamespaceFinalize$Status$200 | Response$replaceCoreV1NamespaceFinalize$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/finalize\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/finalize`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44191,7 +44188,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Namespace */ readCoreV1NamespaceStatus: (params: Params$readCoreV1NamespaceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44207,7 +44204,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Namespace */ replaceCoreV1NamespaceStatus: (params: Params$replaceCoreV1NamespaceStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespaceStatus$Status$200 | Response$replaceCoreV1NamespaceStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44227,7 +44224,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Namespace */ patchCoreV1NamespaceStatus: (params: Params$patchCoreV1NamespaceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/namespaces/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44248,7 +44245,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Node */ listCoreV1Node: (params: Params$listCoreV1Node, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes\`; + const url = _baseUrl + `/api/v1/nodes`; const headers = { Accept: params.headers.Accept }; @@ -44272,7 +44269,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Node */ createCoreV1Node: (params: Params$createCoreV1Node, option?: RequestOption): Promise<(Response$createCoreV1Node$Status$200 | Response$createCoreV1Node$Status$201 | Response$createCoreV1Node$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/nodes\`; + const url = _baseUrl + `/api/v1/nodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44292,7 +44289,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Node */ deleteCoreV1CollectionNode: (params: Params$deleteCoreV1CollectionNode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes\`; + const url = _baseUrl + `/api/v1/nodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44322,7 +44319,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Node */ readCoreV1Node: (params: Params$readCoreV1Node, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -44340,7 +44337,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Node */ replaceCoreV1Node: (params: Params$replaceCoreV1Node, option?: RequestOption): Promise<(Response$replaceCoreV1Node$Status$200 | Response$replaceCoreV1Node$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44360,7 +44357,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Node */ deleteCoreV1Node: (params: Params$deleteCoreV1Node, option?: RequestOption): Promise<(Response$deleteCoreV1Node$Status$200 | Response$deleteCoreV1Node$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44382,7 +44379,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Node */ patchCoreV1Node: (params: Params$patchCoreV1Node, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44403,7 +44400,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to proxy of Node */ connectCoreV1GetNodeProxy: (params: Params$connectCoreV1GetNodeProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44419,7 +44416,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PUT requests to proxy of Node */ connectCoreV1PutNodeProxy: (params: Params$connectCoreV1PutNodeProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44435,7 +44432,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to proxy of Node */ connectCoreV1PostNodeProxy: (params: Params$connectCoreV1PostNodeProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44451,7 +44448,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect DELETE requests to proxy of Node */ connectCoreV1DeleteNodeProxy: (params: Params$connectCoreV1DeleteNodeProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44467,7 +44464,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect OPTIONS requests to proxy of Node */ connectCoreV1OptionsNodeProxy: (params: Params$connectCoreV1OptionsNodeProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44483,7 +44480,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect HEAD requests to proxy of Node */ connectCoreV1HeadNodeProxy: (params: Params$connectCoreV1HeadNodeProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44499,7 +44496,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PATCH requests to proxy of Node */ connectCoreV1PatchNodeProxy: (params: Params$connectCoreV1PatchNodeProxy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; const headers = { Accept: "*/*" }; @@ -44515,7 +44512,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect GET requests to proxy of Node */ connectCoreV1GetNodeProxyWithPath: (params: Params$connectCoreV1GetNodeProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44531,7 +44528,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PUT requests to proxy of Node */ connectCoreV1PutNodeProxyWithPath: (params: Params$connectCoreV1PutNodeProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44547,7 +44544,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect POST requests to proxy of Node */ connectCoreV1PostNodeProxyWithPath: (params: Params$connectCoreV1PostNodeProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44563,7 +44560,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect DELETE requests to proxy of Node */ connectCoreV1DeleteNodeProxyWithPath: (params: Params$connectCoreV1DeleteNodeProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44579,7 +44576,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect OPTIONS requests to proxy of Node */ connectCoreV1OptionsNodeProxyWithPath: (params: Params$connectCoreV1OptionsNodeProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44595,7 +44592,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect HEAD requests to proxy of Node */ connectCoreV1HeadNodeProxyWithPath: (params: Params$connectCoreV1HeadNodeProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44611,7 +44608,7 @@ export const createClient = (apiClient: ApiClient, }, /** connect PATCH requests to proxy of Node */ connectCoreV1PatchNodeProxyWithPath: (params: Params$connectCoreV1PatchNodeProxyWithPath, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/proxy/\${encodeURIComponent(params.parameter.path)}\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; const headers = { Accept: "*/*" }; @@ -44627,7 +44624,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Node */ readCoreV1NodeStatus: (params: Params$readCoreV1NodeStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44643,7 +44640,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Node */ replaceCoreV1NodeStatus: (params: Params$replaceCoreV1NodeStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NodeStatus$Status$200 | Response$replaceCoreV1NodeStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44663,7 +44660,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Node */ patchCoreV1NodeStatus: (params: Params$patchCoreV1NodeStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/nodes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44684,7 +44681,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PersistentVolumeClaim */ listCoreV1PersistentVolumeClaimForAllNamespaces: (params: Params$listCoreV1PersistentVolumeClaimForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/persistentvolumeclaims\`; + const url = _baseUrl + `/api/v1/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -44708,7 +44705,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PersistentVolume */ listCoreV1PersistentVolume: (params: Params$listCoreV1PersistentVolume, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/persistentvolumes\`; + const url = _baseUrl + `/api/v1/persistentvolumes`; const headers = { Accept: params.headers.Accept }; @@ -44732,7 +44729,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PersistentVolume */ createCoreV1PersistentVolume: (params: Params$createCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$createCoreV1PersistentVolume$Status$200 | Response$createCoreV1PersistentVolume$Status$201 | Response$createCoreV1PersistentVolume$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/persistentvolumes\`; + const url = _baseUrl + `/api/v1/persistentvolumes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44752,7 +44749,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PersistentVolume */ deleteCoreV1CollectionPersistentVolume: (params: Params$deleteCoreV1CollectionPersistentVolume, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/persistentvolumes\`; + const url = _baseUrl + `/api/v1/persistentvolumes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44782,7 +44779,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PersistentVolume */ readCoreV1PersistentVolume: (params: Params$readCoreV1PersistentVolume, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -44800,7 +44797,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PersistentVolume */ replaceCoreV1PersistentVolume: (params: Params$replaceCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$replaceCoreV1PersistentVolume$Status$200 | Response$replaceCoreV1PersistentVolume$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44820,7 +44817,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PersistentVolume */ deleteCoreV1PersistentVolume: (params: Params$deleteCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$deleteCoreV1PersistentVolume$Status$200 | Response$deleteCoreV1PersistentVolume$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44842,7 +44839,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PersistentVolume */ patchCoreV1PersistentVolume: (params: Params$patchCoreV1PersistentVolume, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44863,7 +44860,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified PersistentVolume */ readCoreV1PersistentVolumeStatus: (params: Params$readCoreV1PersistentVolumeStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -44879,7 +44876,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified PersistentVolume */ replaceCoreV1PersistentVolumeStatus: (params: Params$replaceCoreV1PersistentVolumeStatus, option?: RequestOption): Promise<(Response$replaceCoreV1PersistentVolumeStatus$Status$200 | Response$replaceCoreV1PersistentVolumeStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -44899,7 +44896,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified PersistentVolume */ patchCoreV1PersistentVolumeStatus: (params: Params$patchCoreV1PersistentVolumeStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/persistentvolumes/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -44920,7 +44917,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Pod */ listCoreV1PodForAllNamespaces: (params: Params$listCoreV1PodForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/pods\`; + const url = _baseUrl + `/api/v1/pods`; const headers = { Accept: params.headers.Accept }; @@ -44944,7 +44941,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PodTemplate */ listCoreV1PodTemplateForAllNamespaces: (params: Params$listCoreV1PodTemplateForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/podtemplates\`; + const url = _baseUrl + `/api/v1/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -44968,7 +44965,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ReplicationController */ listCoreV1ReplicationControllerForAllNamespaces: (params: Params$listCoreV1ReplicationControllerForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/replicationcontrollers\`; + const url = _baseUrl + `/api/v1/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -44992,7 +44989,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ResourceQuota */ listCoreV1ResourceQuotaForAllNamespaces: (params: Params$listCoreV1ResourceQuotaForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/resourcequotas\`; + const url = _baseUrl + `/api/v1/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -45016,7 +45013,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Secret */ listCoreV1SecretForAllNamespaces: (params: Params$listCoreV1SecretForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/secrets\`; + const url = _baseUrl + `/api/v1/secrets`; const headers = { Accept: params.headers.Accept }; @@ -45040,7 +45037,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ServiceAccount */ listCoreV1ServiceAccountForAllNamespaces: (params: Params$listCoreV1ServiceAccountForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/serviceaccounts\`; + const url = _baseUrl + `/api/v1/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -45064,7 +45061,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Service */ listCoreV1ServiceForAllNamespaces: (params: Params$listCoreV1ServiceForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/services\`; + const url = _baseUrl + `/api/v1/services`; const headers = { Accept: params.headers.Accept }; @@ -45088,7 +45085,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1ConfigMapListForAllNamespaces: (params: Params$watchCoreV1ConfigMapListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/configmaps\`; + const url = _baseUrl + `/api/v1/watch/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -45112,7 +45109,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1EndpointsListForAllNamespaces: (params: Params$watchCoreV1EndpointsListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/endpoints\`; + const url = _baseUrl + `/api/v1/watch/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -45136,7 +45133,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1EventListForAllNamespaces: (params: Params$watchCoreV1EventListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/events\`; + const url = _baseUrl + `/api/v1/watch/events`; const headers = { Accept: params.headers.Accept }; @@ -45160,7 +45157,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1LimitRangeListForAllNamespaces: (params: Params$watchCoreV1LimitRangeListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/limitranges\`; + const url = _baseUrl + `/api/v1/watch/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -45184,7 +45181,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespaceList: (params: Params$watchCoreV1NamespaceList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces\`; + const url = _baseUrl + `/api/v1/watch/namespaces`; const headers = { Accept: params.headers.Accept }; @@ -45208,7 +45205,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedConfigMapList: (params: Params$watchCoreV1NamespacedConfigMapList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; const headers = { Accept: params.headers.Accept }; @@ -45232,7 +45229,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ConfigMap. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedConfigMap: (params: Params$watchCoreV1NamespacedConfigMap, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/configmaps/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45256,7 +45253,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedEndpointsList: (params: Params$watchCoreV1NamespacedEndpointsList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; const headers = { Accept: params.headers.Accept }; @@ -45280,7 +45277,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Endpoints. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedEndpoints: (params: Params$watchCoreV1NamespacedEndpoints, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpoints/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45304,7 +45301,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedEventList: (params: Params$watchCoreV1NamespacedEventList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -45328,7 +45325,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedEvent: (params: Params$watchCoreV1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45352,7 +45349,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedLimitRangeList: (params: Params$watchCoreV1NamespacedLimitRangeList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; const headers = { Accept: params.headers.Accept }; @@ -45376,7 +45373,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind LimitRange. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedLimitRange: (params: Params$watchCoreV1NamespacedLimitRange, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/limitranges/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45400,7 +45397,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedPersistentVolumeClaimList: (params: Params$watchCoreV1NamespacedPersistentVolumeClaimList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -45424,7 +45421,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedPersistentVolumeClaim: (params: Params$watchCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45448,7 +45445,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedPodList: (params: Params$watchCoreV1NamespacedPodList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; const headers = { Accept: params.headers.Accept }; @@ -45472,7 +45469,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Pod. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedPod: (params: Params$watchCoreV1NamespacedPod, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/pods/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45496,7 +45493,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedPodTemplateList: (params: Params$watchCoreV1NamespacedPodTemplateList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -45520,7 +45517,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PodTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedPodTemplate: (params: Params$watchCoreV1NamespacedPodTemplate, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podtemplates/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45544,7 +45541,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedReplicationControllerList: (params: Params$watchCoreV1NamespacedReplicationControllerList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -45568,7 +45565,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ReplicationController. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedReplicationController: (params: Params$watchCoreV1NamespacedReplicationController, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45592,7 +45589,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedResourceQuotaList: (params: Params$watchCoreV1NamespacedResourceQuotaList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -45616,7 +45613,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedResourceQuota: (params: Params$watchCoreV1NamespacedResourceQuota, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/resourcequotas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45640,7 +45637,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedSecretList: (params: Params$watchCoreV1NamespacedSecretList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; const headers = { Accept: params.headers.Accept }; @@ -45664,7 +45661,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Secret. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedSecret: (params: Params$watchCoreV1NamespacedSecret, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/secrets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45688,7 +45685,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedServiceAccountList: (params: Params$watchCoreV1NamespacedServiceAccountList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -45712,7 +45709,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedServiceAccount: (params: Params$watchCoreV1NamespacedServiceAccount, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45736,7 +45733,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NamespacedServiceList: (params: Params$watchCoreV1NamespacedServiceList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; const headers = { Accept: params.headers.Accept }; @@ -45760,7 +45757,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Service. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1NamespacedService: (params: Params$watchCoreV1NamespacedService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/services/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45784,7 +45781,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Namespace. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1Namespace: (params: Params$watchCoreV1Namespace, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/namespaces/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45808,7 +45805,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1NodeList: (params: Params$watchCoreV1NodeList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/nodes\`; + const url = _baseUrl + `/api/v1/watch/nodes`; const headers = { Accept: params.headers.Accept }; @@ -45832,7 +45829,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Node. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1Node: (params: Params$watchCoreV1Node, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/nodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/nodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45856,7 +45853,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1PersistentVolumeClaimListForAllNamespaces: (params: Params$watchCoreV1PersistentVolumeClaimListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/persistentvolumeclaims\`; + const url = _baseUrl + `/api/v1/watch/persistentvolumeclaims`; const headers = { Accept: params.headers.Accept }; @@ -45880,7 +45877,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1PersistentVolumeList: (params: Params$watchCoreV1PersistentVolumeList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/persistentvolumes\`; + const url = _baseUrl + `/api/v1/watch/persistentvolumes`; const headers = { Accept: params.headers.Accept }; @@ -45904,7 +45901,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoreV1PersistentVolume: (params: Params$watchCoreV1PersistentVolume, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/persistentvolumes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/api/v1/watch/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -45928,7 +45925,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1PodListForAllNamespaces: (params: Params$watchCoreV1PodListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/pods\`; + const url = _baseUrl + `/api/v1/watch/pods`; const headers = { Accept: params.headers.Accept }; @@ -45952,7 +45949,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1PodTemplateListForAllNamespaces: (params: Params$watchCoreV1PodTemplateListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/podtemplates\`; + const url = _baseUrl + `/api/v1/watch/podtemplates`; const headers = { Accept: params.headers.Accept }; @@ -45976,7 +45973,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1ReplicationControllerListForAllNamespaces: (params: Params$watchCoreV1ReplicationControllerListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/replicationcontrollers\`; + const url = _baseUrl + `/api/v1/watch/replicationcontrollers`; const headers = { Accept: params.headers.Accept }; @@ -46000,7 +45997,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1ResourceQuotaListForAllNamespaces: (params: Params$watchCoreV1ResourceQuotaListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/resourcequotas\`; + const url = _baseUrl + `/api/v1/watch/resourcequotas`; const headers = { Accept: params.headers.Accept }; @@ -46024,7 +46021,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1SecretListForAllNamespaces: (params: Params$watchCoreV1SecretListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/secrets\`; + const url = _baseUrl + `/api/v1/watch/secrets`; const headers = { Accept: params.headers.Accept }; @@ -46048,7 +46045,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1ServiceAccountListForAllNamespaces: (params: Params$watchCoreV1ServiceAccountListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/serviceaccounts\`; + const url = _baseUrl + `/api/v1/watch/serviceaccounts`; const headers = { Accept: params.headers.Accept }; @@ -46072,7 +46069,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoreV1ServiceListForAllNamespaces: (params: Params$watchCoreV1ServiceListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/api/v1/watch/services\`; + const url = _baseUrl + `/api/v1/watch/services`; const headers = { Accept: params.headers.Accept }; @@ -46096,7 +46093,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available API versions */ getAPIVersions: (params: Params$getAPIVersions, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/\`; + const url = _baseUrl + `/apis/`; const headers = { Accept: params.headers.Accept }; @@ -46108,7 +46105,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getAdmissionregistrationAPIGroup: (params: Params$getAdmissionregistrationAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -46120,7 +46117,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAdmissionregistrationV1APIResources: (params: Params$getAdmissionregistrationV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -46132,7 +46129,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind MutatingWebhookConfiguration */ listAdmissionregistrationV1MutatingWebhookConfiguration: (params: Params$listAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46156,7 +46153,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a MutatingWebhookConfiguration */ createAdmissionregistrationV1MutatingWebhookConfiguration: (params: Params$createAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46176,7 +46173,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of MutatingWebhookConfiguration */ deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46206,7 +46203,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified MutatingWebhookConfiguration */ readAdmissionregistrationV1MutatingWebhookConfiguration: (params: Params$readAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46224,7 +46221,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified MutatingWebhookConfiguration */ replaceAdmissionregistrationV1MutatingWebhookConfiguration: (params: Params$replaceAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46244,7 +46241,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a MutatingWebhookConfiguration */ deleteAdmissionregistrationV1MutatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46266,7 +46263,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified MutatingWebhookConfiguration */ patchAdmissionregistrationV1MutatingWebhookConfiguration: (params: Params$patchAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46287,7 +46284,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ValidatingWebhookConfiguration */ listAdmissionregistrationV1ValidatingWebhookConfiguration: (params: Params$listAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46311,7 +46308,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ValidatingWebhookConfiguration */ createAdmissionregistrationV1ValidatingWebhookConfiguration: (params: Params$createAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46331,7 +46328,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ValidatingWebhookConfiguration */ deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46361,7 +46358,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ValidatingWebhookConfiguration */ readAdmissionregistrationV1ValidatingWebhookConfiguration: (params: Params$readAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46379,7 +46376,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ValidatingWebhookConfiguration */ replaceAdmissionregistrationV1ValidatingWebhookConfiguration: (params: Params$replaceAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46399,7 +46396,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ValidatingWebhookConfiguration */ deleteAdmissionregistrationV1ValidatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46421,7 +46418,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ValidatingWebhookConfiguration */ patchAdmissionregistrationV1ValidatingWebhookConfiguration: (params: Params$patchAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46442,7 +46439,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ watchAdmissionregistrationV1MutatingWebhookConfigurationList: (params: Params$watchAdmissionregistrationV1MutatingWebhookConfigurationList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46466,7 +46463,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAdmissionregistrationV1MutatingWebhookConfiguration: (params: Params$watchAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46490,7 +46487,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ watchAdmissionregistrationV1ValidatingWebhookConfigurationList: (params: Params$watchAdmissionregistrationV1ValidatingWebhookConfigurationList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46514,7 +46511,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAdmissionregistrationV1ValidatingWebhookConfiguration: (params: Params$watchAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46538,7 +46535,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAdmissionregistrationV1beta1APIResources: (params: Params$getAdmissionregistrationV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -46550,7 +46547,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind MutatingWebhookConfiguration */ listAdmissionregistrationV1beta1MutatingWebhookConfiguration: (params: Params$listAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46574,7 +46571,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a MutatingWebhookConfiguration */ createAdmissionregistrationV1beta1MutatingWebhookConfiguration: (params: Params$createAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46594,7 +46591,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of MutatingWebhookConfiguration */ deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46624,7 +46621,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified MutatingWebhookConfiguration */ readAdmissionregistrationV1beta1MutatingWebhookConfiguration: (params: Params$readAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46642,7 +46639,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified MutatingWebhookConfiguration */ replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration: (params: Params$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46662,7 +46659,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a MutatingWebhookConfiguration */ deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46684,7 +46681,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified MutatingWebhookConfiguration */ patchAdmissionregistrationV1beta1MutatingWebhookConfiguration: (params: Params$patchAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46705,7 +46702,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ValidatingWebhookConfiguration */ listAdmissionregistrationV1beta1ValidatingWebhookConfiguration: (params: Params$listAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46729,7 +46726,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ValidatingWebhookConfiguration */ createAdmissionregistrationV1beta1ValidatingWebhookConfiguration: (params: Params$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46749,7 +46746,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ValidatingWebhookConfiguration */ deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46779,7 +46776,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ValidatingWebhookConfiguration */ readAdmissionregistrationV1beta1ValidatingWebhookConfiguration: (params: Params$readAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46797,7 +46794,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ValidatingWebhookConfiguration */ replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration: (params: Params$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46817,7 +46814,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ValidatingWebhookConfiguration */ deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration: (params: Params$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -46839,7 +46836,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ValidatingWebhookConfiguration */ patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration: (params: Params$patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -46860,7 +46857,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList: (params: Params$watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46884,7 +46881,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAdmissionregistrationV1beta1MutatingWebhookConfiguration: (params: Params$watchAdmissionregistrationV1beta1MutatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46908,7 +46905,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList: (params: Params$watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -46932,7 +46929,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration: (params: Params$watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -46956,7 +46953,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getApiextensionsAPIGroup: (params: Params$getApiextensionsAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -46968,7 +46965,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getApiextensionsV1APIResources: (params: Params$getApiextensionsV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -46980,7 +46977,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CustomResourceDefinition */ listApiextensionsV1CustomResourceDefinition: (params: Params$listApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47004,7 +47001,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CustomResourceDefinition */ createApiextensionsV1CustomResourceDefinition: (params: Params$createApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$createApiextensionsV1CustomResourceDefinition$Status$200 | Response$createApiextensionsV1CustomResourceDefinition$Status$201 | Response$createApiextensionsV1CustomResourceDefinition$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47024,7 +47021,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CustomResourceDefinition */ deleteApiextensionsV1CollectionCustomResourceDefinition: (params: Params$deleteApiextensionsV1CollectionCustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47054,7 +47051,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CustomResourceDefinition */ readApiextensionsV1CustomResourceDefinition: (params: Params$readApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47072,7 +47069,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CustomResourceDefinition */ replaceApiextensionsV1CustomResourceDefinition: (params: Params$replaceApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$replaceApiextensionsV1CustomResourceDefinition$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinition$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47092,7 +47089,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CustomResourceDefinition */ deleteApiextensionsV1CustomResourceDefinition: (params: Params$deleteApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$deleteApiextensionsV1CustomResourceDefinition$Status$200 | Response$deleteApiextensionsV1CustomResourceDefinition$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47114,7 +47111,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CustomResourceDefinition */ patchApiextensionsV1CustomResourceDefinition: (params: Params$patchApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47135,7 +47132,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified CustomResourceDefinition */ readApiextensionsV1CustomResourceDefinitionStatus: (params: Params$readApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47151,7 +47148,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified CustomResourceDefinition */ replaceApiextensionsV1CustomResourceDefinitionStatus: (params: Params$replaceApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise<(Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47171,7 +47168,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified CustomResourceDefinition */ patchApiextensionsV1CustomResourceDefinitionStatus: (params: Params$patchApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47192,7 +47189,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead. */ watchApiextensionsV1CustomResourceDefinitionList: (params: Params$watchApiextensionsV1CustomResourceDefinitionList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47216,7 +47213,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchApiextensionsV1CustomResourceDefinition: (params: Params$watchApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47240,7 +47237,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getApiextensionsV1beta1APIResources: (params: Params$getApiextensionsV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -47252,7 +47249,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CustomResourceDefinition */ listApiextensionsV1beta1CustomResourceDefinition: (params: Params$listApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47276,7 +47273,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CustomResourceDefinition */ createApiextensionsV1beta1CustomResourceDefinition: (params: Params$createApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise<(Response$createApiextensionsV1beta1CustomResourceDefinition$Status$200 | Response$createApiextensionsV1beta1CustomResourceDefinition$Status$201 | Response$createApiextensionsV1beta1CustomResourceDefinition$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47296,7 +47293,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CustomResourceDefinition */ deleteApiextensionsV1beta1CollectionCustomResourceDefinition: (params: Params$deleteApiextensionsV1beta1CollectionCustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47326,7 +47323,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CustomResourceDefinition */ readApiextensionsV1beta1CustomResourceDefinition: (params: Params$readApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47344,7 +47341,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CustomResourceDefinition */ replaceApiextensionsV1beta1CustomResourceDefinition: (params: Params$replaceApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise<(Response$replaceApiextensionsV1beta1CustomResourceDefinition$Status$200 | Response$replaceApiextensionsV1beta1CustomResourceDefinition$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47364,7 +47361,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CustomResourceDefinition */ deleteApiextensionsV1beta1CustomResourceDefinition: (params: Params$deleteApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise<(Response$deleteApiextensionsV1beta1CustomResourceDefinition$Status$200 | Response$deleteApiextensionsV1beta1CustomResourceDefinition$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47386,7 +47383,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CustomResourceDefinition */ patchApiextensionsV1beta1CustomResourceDefinition: (params: Params$patchApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47407,7 +47404,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified CustomResourceDefinition */ readApiextensionsV1beta1CustomResourceDefinitionStatus: (params: Params$readApiextensionsV1beta1CustomResourceDefinitionStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47423,7 +47420,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified CustomResourceDefinition */ replaceApiextensionsV1beta1CustomResourceDefinitionStatus: (params: Params$replaceApiextensionsV1beta1CustomResourceDefinitionStatus, option?: RequestOption): Promise<(Response$replaceApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 | Response$replaceApiextensionsV1beta1CustomResourceDefinitionStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47443,7 +47440,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified CustomResourceDefinition */ patchApiextensionsV1beta1CustomResourceDefinitionStatus: (params: Params$patchApiextensionsV1beta1CustomResourceDefinitionStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47464,7 +47461,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead. */ watchApiextensionsV1beta1CustomResourceDefinitionList: (params: Params$watchApiextensionsV1beta1CustomResourceDefinitionList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions`; const headers = { Accept: params.headers.Accept }; @@ -47488,7 +47485,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchApiextensionsV1beta1CustomResourceDefinition: (params: Params$watchApiextensionsV1beta1CustomResourceDefinition, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47512,7 +47509,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getApiregistrationAPIGroup: (params: Params$getApiregistrationAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -47524,7 +47521,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getApiregistrationV1APIResources: (params: Params$getApiregistrationV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -47536,7 +47533,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind APIService */ listApiregistrationV1APIService: (params: Params$listApiregistrationV1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -47560,7 +47557,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an APIService */ createApiregistrationV1APIService: (params: Params$createApiregistrationV1APIService, option?: RequestOption): Promise<(Response$createApiregistrationV1APIService$Status$200 | Response$createApiregistrationV1APIService$Status$201 | Response$createApiregistrationV1APIService$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47580,7 +47577,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of APIService */ deleteApiregistrationV1CollectionAPIService: (params: Params$deleteApiregistrationV1CollectionAPIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47610,7 +47607,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified APIService */ readApiregistrationV1APIService: (params: Params$readApiregistrationV1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47628,7 +47625,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified APIService */ replaceApiregistrationV1APIService: (params: Params$replaceApiregistrationV1APIService, option?: RequestOption): Promise<(Response$replaceApiregistrationV1APIService$Status$200 | Response$replaceApiregistrationV1APIService$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47648,7 +47645,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an APIService */ deleteApiregistrationV1APIService: (params: Params$deleteApiregistrationV1APIService, option?: RequestOption): Promise<(Response$deleteApiregistrationV1APIService$Status$200 | Response$deleteApiregistrationV1APIService$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47670,7 +47667,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified APIService */ patchApiregistrationV1APIService: (params: Params$patchApiregistrationV1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47691,7 +47688,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified APIService */ readApiregistrationV1APIServiceStatus: (params: Params$readApiregistrationV1APIServiceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47707,7 +47704,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified APIService */ replaceApiregistrationV1APIServiceStatus: (params: Params$replaceApiregistrationV1APIServiceStatus, option?: RequestOption): Promise<(Response$replaceApiregistrationV1APIServiceStatus$Status$200 | Response$replaceApiregistrationV1APIServiceStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47727,7 +47724,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified APIService */ patchApiregistrationV1APIServiceStatus: (params: Params$patchApiregistrationV1APIServiceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47748,7 +47745,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead. */ watchApiregistrationV1APIServiceList: (params: Params$watchApiregistrationV1APIServiceList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/watch/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/watch/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -47772,7 +47769,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind APIService. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchApiregistrationV1APIService: (params: Params$watchApiregistrationV1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1/watch/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1/watch/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47796,7 +47793,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getApiregistrationV1beta1APIResources: (params: Params$getApiregistrationV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -47808,7 +47805,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind APIService */ listApiregistrationV1beta1APIService: (params: Params$listApiregistrationV1beta1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -47832,7 +47829,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an APIService */ createApiregistrationV1beta1APIService: (params: Params$createApiregistrationV1beta1APIService, option?: RequestOption): Promise<(Response$createApiregistrationV1beta1APIService$Status$200 | Response$createApiregistrationV1beta1APIService$Status$201 | Response$createApiregistrationV1beta1APIService$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47852,7 +47849,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of APIService */ deleteApiregistrationV1beta1CollectionAPIService: (params: Params$deleteApiregistrationV1beta1CollectionAPIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47882,7 +47879,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified APIService */ readApiregistrationV1beta1APIService: (params: Params$readApiregistrationV1beta1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -47900,7 +47897,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified APIService */ replaceApiregistrationV1beta1APIService: (params: Params$replaceApiregistrationV1beta1APIService, option?: RequestOption): Promise<(Response$replaceApiregistrationV1beta1APIService$Status$200 | Response$replaceApiregistrationV1beta1APIService$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47920,7 +47917,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an APIService */ deleteApiregistrationV1beta1APIService: (params: Params$deleteApiregistrationV1beta1APIService, option?: RequestOption): Promise<(Response$deleteApiregistrationV1beta1APIService$Status$200 | Response$deleteApiregistrationV1beta1APIService$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47942,7 +47939,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified APIService */ patchApiregistrationV1beta1APIService: (params: Params$patchApiregistrationV1beta1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -47963,7 +47960,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified APIService */ readApiregistrationV1beta1APIServiceStatus: (params: Params$readApiregistrationV1beta1APIServiceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -47979,7 +47976,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified APIService */ replaceApiregistrationV1beta1APIServiceStatus: (params: Params$replaceApiregistrationV1beta1APIServiceStatus, option?: RequestOption): Promise<(Response$replaceApiregistrationV1beta1APIServiceStatus$Status$200 | Response$replaceApiregistrationV1beta1APIServiceStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -47999,7 +47996,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified APIService */ patchApiregistrationV1beta1APIServiceStatus: (params: Params$patchApiregistrationV1beta1APIServiceStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/apiservices/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48020,7 +48017,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead. */ watchApiregistrationV1beta1APIServiceList: (params: Params$watchApiregistrationV1beta1APIServiceList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/watch/apiservices\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/watch/apiservices`; const headers = { Accept: params.headers.Accept }; @@ -48044,7 +48041,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind APIService. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchApiregistrationV1beta1APIService: (params: Params$watchApiregistrationV1beta1APIService, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48068,7 +48065,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getAppsAPIGroup: (params: Params$getAppsAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/\`; + const url = _baseUrl + `/apis/apps/`; const headers = { Accept: params.headers.Accept }; @@ -48080,7 +48077,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAppsV1APIResources: (params: Params$getAppsV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/\`; + const url = _baseUrl + `/apis/apps/v1/`; const headers = { Accept: params.headers.Accept }; @@ -48092,7 +48089,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ControllerRevision */ listAppsV1ControllerRevisionForAllNamespaces: (params: Params$listAppsV1ControllerRevisionForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/controllerrevisions\`; + const url = _baseUrl + `/apis/apps/v1/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -48116,7 +48113,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind DaemonSet */ listAppsV1DaemonSetForAllNamespaces: (params: Params$listAppsV1DaemonSetForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/daemonsets\`; + const url = _baseUrl + `/apis/apps/v1/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -48140,7 +48137,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Deployment */ listAppsV1DeploymentForAllNamespaces: (params: Params$listAppsV1DeploymentForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/deployments\`; + const url = _baseUrl + `/apis/apps/v1/deployments`; const headers = { Accept: params.headers.Accept }; @@ -48164,7 +48161,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ControllerRevision */ listAppsV1NamespacedControllerRevision: (params: Params$listAppsV1NamespacedControllerRevision, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -48188,7 +48185,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ControllerRevision */ createAppsV1NamespacedControllerRevision: (params: Params$createAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$createAppsV1NamespacedControllerRevision$Status$200 | Response$createAppsV1NamespacedControllerRevision$Status$201 | Response$createAppsV1NamespacedControllerRevision$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48208,7 +48205,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ControllerRevision */ deleteAppsV1CollectionNamespacedControllerRevision: (params: Params$deleteAppsV1CollectionNamespacedControllerRevision, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48238,7 +48235,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ControllerRevision */ readAppsV1NamespacedControllerRevision: (params: Params$readAppsV1NamespacedControllerRevision, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48256,7 +48253,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ControllerRevision */ replaceAppsV1NamespacedControllerRevision: (params: Params$replaceAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedControllerRevision$Status$200 | Response$replaceAppsV1NamespacedControllerRevision$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48276,7 +48273,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ControllerRevision */ deleteAppsV1NamespacedControllerRevision: (params: Params$deleteAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedControllerRevision$Status$200 | Response$deleteAppsV1NamespacedControllerRevision$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48298,7 +48295,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ControllerRevision */ patchAppsV1NamespacedControllerRevision: (params: Params$patchAppsV1NamespacedControllerRevision, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48319,7 +48316,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind DaemonSet */ listAppsV1NamespacedDaemonSet: (params: Params$listAppsV1NamespacedDaemonSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -48343,7 +48340,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a DaemonSet */ createAppsV1NamespacedDaemonSet: (params: Params$createAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedDaemonSet$Status$200 | Response$createAppsV1NamespacedDaemonSet$Status$201 | Response$createAppsV1NamespacedDaemonSet$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48363,7 +48360,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of DaemonSet */ deleteAppsV1CollectionNamespacedDaemonSet: (params: Params$deleteAppsV1CollectionNamespacedDaemonSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48393,7 +48390,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified DaemonSet */ readAppsV1NamespacedDaemonSet: (params: Params$readAppsV1NamespacedDaemonSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48411,7 +48408,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified DaemonSet */ replaceAppsV1NamespacedDaemonSet: (params: Params$replaceAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDaemonSet$Status$200 | Response$replaceAppsV1NamespacedDaemonSet$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48431,7 +48428,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a DaemonSet */ deleteAppsV1NamespacedDaemonSet: (params: Params$deleteAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedDaemonSet$Status$200 | Response$deleteAppsV1NamespacedDaemonSet$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48453,7 +48450,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified DaemonSet */ patchAppsV1NamespacedDaemonSet: (params: Params$patchAppsV1NamespacedDaemonSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48474,7 +48471,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified DaemonSet */ readAppsV1NamespacedDaemonSetStatus: (params: Params$readAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -48490,7 +48487,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified DaemonSet */ replaceAppsV1NamespacedDaemonSetStatus: (params: Params$replaceAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 | Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48510,7 +48507,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified DaemonSet */ patchAppsV1NamespacedDaemonSetStatus: (params: Params$patchAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48531,7 +48528,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Deployment */ listAppsV1NamespacedDeployment: (params: Params$listAppsV1NamespacedDeployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { Accept: params.headers.Accept }; @@ -48555,7 +48552,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Deployment */ createAppsV1NamespacedDeployment: (params: Params$createAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$createAppsV1NamespacedDeployment$Status$200 | Response$createAppsV1NamespacedDeployment$Status$201 | Response$createAppsV1NamespacedDeployment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48575,7 +48572,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Deployment */ deleteAppsV1CollectionNamespacedDeployment: (params: Params$deleteAppsV1CollectionNamespacedDeployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48605,7 +48602,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Deployment */ readAppsV1NamespacedDeployment: (params: Params$readAppsV1NamespacedDeployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48623,7 +48620,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Deployment */ replaceAppsV1NamespacedDeployment: (params: Params$replaceAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeployment$Status$200 | Response$replaceAppsV1NamespacedDeployment$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48643,7 +48640,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Deployment */ deleteAppsV1NamespacedDeployment: (params: Params$deleteAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedDeployment$Status$200 | Response$deleteAppsV1NamespacedDeployment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48665,7 +48662,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Deployment */ patchAppsV1NamespacedDeployment: (params: Params$patchAppsV1NamespacedDeployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48686,7 +48683,7 @@ export const createClient = (apiClient: ApiClient, }, /** read scale of the specified Deployment */ readAppsV1NamespacedDeploymentScale: (params: Params$readAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -48702,7 +48699,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace scale of the specified Deployment */ replaceAppsV1NamespacedDeploymentScale: (params: Params$replaceAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeploymentScale$Status$200 | Response$replaceAppsV1NamespacedDeploymentScale$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48722,7 +48719,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update scale of the specified Deployment */ patchAppsV1NamespacedDeploymentScale: (params: Params$patchAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48743,7 +48740,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Deployment */ readAppsV1NamespacedDeploymentStatus: (params: Params$readAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -48759,7 +48756,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Deployment */ replaceAppsV1NamespacedDeploymentStatus: (params: Params$replaceAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 | Response$replaceAppsV1NamespacedDeploymentStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48779,7 +48776,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Deployment */ patchAppsV1NamespacedDeploymentStatus: (params: Params$patchAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48800,7 +48797,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ReplicaSet */ listAppsV1NamespacedReplicaSet: (params: Params$listAppsV1NamespacedReplicaSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -48824,7 +48821,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ReplicaSet */ createAppsV1NamespacedReplicaSet: (params: Params$createAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedReplicaSet$Status$200 | Response$createAppsV1NamespacedReplicaSet$Status$201 | Response$createAppsV1NamespacedReplicaSet$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48844,7 +48841,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ReplicaSet */ deleteAppsV1CollectionNamespacedReplicaSet: (params: Params$deleteAppsV1CollectionNamespacedReplicaSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48874,7 +48871,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ReplicaSet */ readAppsV1NamespacedReplicaSet: (params: Params$readAppsV1NamespacedReplicaSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -48892,7 +48889,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ReplicaSet */ replaceAppsV1NamespacedReplicaSet: (params: Params$replaceAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSet$Status$200 | Response$replaceAppsV1NamespacedReplicaSet$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48912,7 +48909,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ReplicaSet */ deleteAppsV1NamespacedReplicaSet: (params: Params$deleteAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedReplicaSet$Status$200 | Response$deleteAppsV1NamespacedReplicaSet$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48934,7 +48931,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ReplicaSet */ patchAppsV1NamespacedReplicaSet: (params: Params$patchAppsV1NamespacedReplicaSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -48955,7 +48952,7 @@ export const createClient = (apiClient: ApiClient, }, /** read scale of the specified ReplicaSet */ readAppsV1NamespacedReplicaSetScale: (params: Params$readAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -48971,7 +48968,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace scale of the specified ReplicaSet */ replaceAppsV1NamespacedReplicaSetScale: (params: Params$replaceAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 | Response$replaceAppsV1NamespacedReplicaSetScale$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -48991,7 +48988,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update scale of the specified ReplicaSet */ patchAppsV1NamespacedReplicaSetScale: (params: Params$patchAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49012,7 +49009,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified ReplicaSet */ readAppsV1NamespacedReplicaSetStatus: (params: Params$readAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -49028,7 +49025,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified ReplicaSet */ replaceAppsV1NamespacedReplicaSetStatus: (params: Params$replaceAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 | Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49048,7 +49045,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified ReplicaSet */ patchAppsV1NamespacedReplicaSetStatus: (params: Params$patchAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49069,7 +49066,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind StatefulSet */ listAppsV1NamespacedStatefulSet: (params: Params$listAppsV1NamespacedStatefulSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49093,7 +49090,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a StatefulSet */ createAppsV1NamespacedStatefulSet: (params: Params$createAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedStatefulSet$Status$200 | Response$createAppsV1NamespacedStatefulSet$Status$201 | Response$createAppsV1NamespacedStatefulSet$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49113,7 +49110,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of StatefulSet */ deleteAppsV1CollectionNamespacedStatefulSet: (params: Params$deleteAppsV1CollectionNamespacedStatefulSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49143,7 +49140,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified StatefulSet */ readAppsV1NamespacedStatefulSet: (params: Params$readAppsV1NamespacedStatefulSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49161,7 +49158,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified StatefulSet */ replaceAppsV1NamespacedStatefulSet: (params: Params$replaceAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSet$Status$200 | Response$replaceAppsV1NamespacedStatefulSet$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49181,7 +49178,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a StatefulSet */ deleteAppsV1NamespacedStatefulSet: (params: Params$deleteAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedStatefulSet$Status$200 | Response$deleteAppsV1NamespacedStatefulSet$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49203,7 +49200,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified StatefulSet */ patchAppsV1NamespacedStatefulSet: (params: Params$patchAppsV1NamespacedStatefulSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49224,7 +49221,7 @@ export const createClient = (apiClient: ApiClient, }, /** read scale of the specified StatefulSet */ readAppsV1NamespacedStatefulSetScale: (params: Params$readAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { Accept: params.headers.Accept }; @@ -49240,7 +49237,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace scale of the specified StatefulSet */ replaceAppsV1NamespacedStatefulSetScale: (params: Params$replaceAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 | Response$replaceAppsV1NamespacedStatefulSetScale$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49260,7 +49257,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update scale of the specified StatefulSet */ patchAppsV1NamespacedStatefulSetScale: (params: Params$patchAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/scale\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49281,7 +49278,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified StatefulSet */ readAppsV1NamespacedStatefulSetStatus: (params: Params$readAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -49297,7 +49294,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified StatefulSet */ replaceAppsV1NamespacedStatefulSetStatus: (params: Params$replaceAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 | Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49317,7 +49314,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified StatefulSet */ patchAppsV1NamespacedStatefulSetStatus: (params: Params$patchAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49338,7 +49335,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ReplicaSet */ listAppsV1ReplicaSetForAllNamespaces: (params: Params$listAppsV1ReplicaSetForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/replicasets\`; + const url = _baseUrl + `/apis/apps/v1/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -49362,7 +49359,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind StatefulSet */ listAppsV1StatefulSetForAllNamespaces: (params: Params$listAppsV1StatefulSetForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/statefulsets\`; + const url = _baseUrl + `/apis/apps/v1/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49386,7 +49383,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1ControllerRevisionListForAllNamespaces: (params: Params$watchAppsV1ControllerRevisionListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/controllerrevisions\`; + const url = _baseUrl + `/apis/apps/v1/watch/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -49410,7 +49407,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1DaemonSetListForAllNamespaces: (params: Params$watchAppsV1DaemonSetListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/daemonsets\`; + const url = _baseUrl + `/apis/apps/v1/watch/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -49434,7 +49431,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1DeploymentListForAllNamespaces: (params: Params$watchAppsV1DeploymentListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/deployments\`; + const url = _baseUrl + `/apis/apps/v1/watch/deployments`; const headers = { Accept: params.headers.Accept }; @@ -49458,7 +49455,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1NamespacedControllerRevisionList: (params: Params$watchAppsV1NamespacedControllerRevisionList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; const headers = { Accept: params.headers.Accept }; @@ -49482,7 +49479,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAppsV1NamespacedControllerRevision: (params: Params$watchAppsV1NamespacedControllerRevision, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49506,7 +49503,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1NamespacedDaemonSetList: (params: Params$watchAppsV1NamespacedDaemonSetList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; const headers = { Accept: params.headers.Accept }; @@ -49530,7 +49527,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind DaemonSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAppsV1NamespacedDaemonSet: (params: Params$watchAppsV1NamespacedDaemonSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/daemonsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49554,7 +49551,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1NamespacedDeploymentList: (params: Params$watchAppsV1NamespacedDeploymentList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; const headers = { Accept: params.headers.Accept }; @@ -49578,7 +49575,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Deployment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAppsV1NamespacedDeployment: (params: Params$watchAppsV1NamespacedDeployment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/deployments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49602,7 +49599,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1NamespacedReplicaSetList: (params: Params$watchAppsV1NamespacedReplicaSetList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -49626,7 +49623,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAppsV1NamespacedReplicaSet: (params: Params$watchAppsV1NamespacedReplicaSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/replicasets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49650,7 +49647,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1NamespacedStatefulSetList: (params: Params$watchAppsV1NamespacedStatefulSetList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49674,7 +49671,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind StatefulSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAppsV1NamespacedStatefulSet: (params: Params$watchAppsV1NamespacedStatefulSet, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/statefulsets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49698,7 +49695,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1ReplicaSetListForAllNamespaces: (params: Params$watchAppsV1ReplicaSetListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/replicasets\`; + const url = _baseUrl + `/apis/apps/v1/watch/replicasets`; const headers = { Accept: params.headers.Accept }; @@ -49722,7 +49719,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. */ watchAppsV1StatefulSetListForAllNamespaces: (params: Params$watchAppsV1StatefulSetListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/apps/v1/watch/statefulsets\`; + const url = _baseUrl + `/apis/apps/v1/watch/statefulsets`; const headers = { Accept: params.headers.Accept }; @@ -49746,7 +49743,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getAuditregistrationAPIGroup: (params: Params$getAuditregistrationAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -49758,7 +49755,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAuditregistrationV1alpha1APIResources: (params: Params$getAuditregistrationV1alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -49770,7 +49767,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind AuditSink */ listAuditregistrationV1alpha1AuditSink: (params: Params$listAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks`; const headers = { Accept: params.headers.Accept }; @@ -49794,7 +49791,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an AuditSink */ createAuditregistrationV1alpha1AuditSink: (params: Params$createAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise<(Response$createAuditregistrationV1alpha1AuditSink$Status$200 | Response$createAuditregistrationV1alpha1AuditSink$Status$201 | Response$createAuditregistrationV1alpha1AuditSink$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49814,7 +49811,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of AuditSink */ deleteAuditregistrationV1alpha1CollectionAuditSink: (params: Params$deleteAuditregistrationV1alpha1CollectionAuditSink, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49844,7 +49841,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified AuditSink */ readAuditregistrationV1alpha1AuditSink: (params: Params$readAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49862,7 +49859,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified AuditSink */ replaceAuditregistrationV1alpha1AuditSink: (params: Params$replaceAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise<(Response$replaceAuditregistrationV1alpha1AuditSink$Status$200 | Response$replaceAuditregistrationV1alpha1AuditSink$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49882,7 +49879,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an AuditSink */ deleteAuditregistrationV1alpha1AuditSink: (params: Params$deleteAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise<(Response$deleteAuditregistrationV1alpha1AuditSink$Status$200 | Response$deleteAuditregistrationV1alpha1AuditSink$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -49904,7 +49901,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified AuditSink */ patchAuditregistrationV1alpha1AuditSink: (params: Params$patchAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -49925,7 +49922,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of AuditSink. deprecated: use the 'watch' parameter with a list operation instead. */ watchAuditregistrationV1alpha1AuditSinkList: (params: Params$watchAuditregistrationV1alpha1AuditSinkList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks`; const headers = { Accept: params.headers.Accept }; @@ -49949,7 +49946,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind AuditSink. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAuditregistrationV1alpha1AuditSink: (params: Params$watchAuditregistrationV1alpha1AuditSink, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -49973,7 +49970,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getAuthenticationAPIGroup: (params: Params$getAuthenticationAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/authentication.k8s.io/\`; + const url = _baseUrl + `/apis/authentication.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -49985,7 +49982,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAuthenticationV1APIResources: (params: Params$getAuthenticationV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/authentication.k8s.io/v1/\`; + const url = _baseUrl + `/apis/authentication.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -49997,7 +49994,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a TokenReview */ createAuthenticationV1TokenReview: (params: Params$createAuthenticationV1TokenReview, option?: RequestOption): Promise<(Response$createAuthenticationV1TokenReview$Status$200 | Response$createAuthenticationV1TokenReview$Status$201 | Response$createAuthenticationV1TokenReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authentication.k8s.io/v1/tokenreviews\`; + const url = _baseUrl + `/apis/authentication.k8s.io/v1/tokenreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50017,7 +50014,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAuthenticationV1beta1APIResources: (params: Params$getAuthenticationV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/authentication.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/authentication.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -50029,7 +50026,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a TokenReview */ createAuthenticationV1beta1TokenReview: (params: Params$createAuthenticationV1beta1TokenReview, option?: RequestOption): Promise<(Response$createAuthenticationV1beta1TokenReview$Status$200 | Response$createAuthenticationV1beta1TokenReview$Status$201 | Response$createAuthenticationV1beta1TokenReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authentication.k8s.io/v1beta1/tokenreviews\`; + const url = _baseUrl + `/apis/authentication.k8s.io/v1beta1/tokenreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50049,7 +50046,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getAuthorizationAPIGroup: (params: Params$getAuthorizationAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/authorization.k8s.io/\`; + const url = _baseUrl + `/apis/authorization.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -50061,7 +50058,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAuthorizationV1APIResources: (params: Params$getAuthorizationV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1/\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -50073,7 +50070,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a LocalSubjectAccessReview */ createAuthorizationV1NamespacedLocalSubjectAccessReview: (params: Params$createAuthorizationV1NamespacedLocalSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$200 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$201 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50093,7 +50090,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a SelfSubjectAccessReview */ createAuthorizationV1SelfSubjectAccessReview: (params: Params$createAuthorizationV1SelfSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SelfSubjectAccessReview$Status$200 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$201 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1/selfsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50113,7 +50110,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a SelfSubjectRulesReview */ createAuthorizationV1SelfSubjectRulesReview: (params: Params$createAuthorizationV1SelfSubjectRulesReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SelfSubjectRulesReview$Status$200 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$201 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1/selfsubjectrulesreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1/selfsubjectrulesreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50133,7 +50130,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a SubjectAccessReview */ createAuthorizationV1SubjectAccessReview: (params: Params$createAuthorizationV1SubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SubjectAccessReview$Status$200 | Response$createAuthorizationV1SubjectAccessReview$Status$201 | Response$createAuthorizationV1SubjectAccessReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1/subjectaccessreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1/subjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50153,7 +50150,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAuthorizationV1beta1APIResources: (params: Params$getAuthorizationV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -50165,7 +50162,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a LocalSubjectAccessReview */ createAuthorizationV1beta1NamespacedLocalSubjectAccessReview: (params: Params$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview$Status$200 | Response$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview$Status$201 | Response$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50185,7 +50182,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a SelfSubjectAccessReview */ createAuthorizationV1beta1SelfSubjectAccessReview: (params: Params$createAuthorizationV1beta1SelfSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1SelfSubjectAccessReview$Status$200 | Response$createAuthorizationV1beta1SelfSubjectAccessReview$Status$201 | Response$createAuthorizationV1beta1SelfSubjectAccessReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50205,7 +50202,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a SelfSubjectRulesReview */ createAuthorizationV1beta1SelfSubjectRulesReview: (params: Params$createAuthorizationV1beta1SelfSubjectRulesReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1SelfSubjectRulesReview$Status$200 | Response$createAuthorizationV1beta1SelfSubjectRulesReview$Status$201 | Response$createAuthorizationV1beta1SelfSubjectRulesReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50225,7 +50222,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a SubjectAccessReview */ createAuthorizationV1beta1SubjectAccessReview: (params: Params$createAuthorizationV1beta1SubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1beta1SubjectAccessReview$Status$200 | Response$createAuthorizationV1beta1SubjectAccessReview$Status$201 | Response$createAuthorizationV1beta1SubjectAccessReview$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/authorization.k8s.io/v1beta1/subjectaccessreviews\`; + const url = _baseUrl + `/apis/authorization.k8s.io/v1beta1/subjectaccessreviews`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50245,7 +50242,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getAutoscalingAPIGroup: (params: Params$getAutoscalingAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/\`; + const url = _baseUrl + `/apis/autoscaling/`; const headers = { Accept: params.headers.Accept }; @@ -50257,7 +50254,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAutoscalingV1APIResources: (params: Params$getAutoscalingV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/\`; + const url = _baseUrl + `/apis/autoscaling/v1/`; const headers = { Accept: params.headers.Accept }; @@ -50269,7 +50266,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind HorizontalPodAutoscaler */ listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces: (params: Params$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v1/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50293,7 +50290,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind HorizontalPodAutoscaler */ listAutoscalingV1NamespacedHorizontalPodAutoscaler: (params: Params$listAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50317,7 +50314,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a HorizontalPodAutoscaler */ createAutoscalingV1NamespacedHorizontalPodAutoscaler: (params: Params$createAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50337,7 +50334,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of HorizontalPodAutoscaler */ deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler: (params: Params$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50367,7 +50364,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified HorizontalPodAutoscaler */ readAutoscalingV1NamespacedHorizontalPodAutoscaler: (params: Params$readAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50385,7 +50382,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified HorizontalPodAutoscaler */ replaceAutoscalingV1NamespacedHorizontalPodAutoscaler: (params: Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50405,7 +50402,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a HorizontalPodAutoscaler */ deleteAutoscalingV1NamespacedHorizontalPodAutoscaler: (params: Params$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50427,7 +50424,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified HorizontalPodAutoscaler */ patchAutoscalingV1NamespacedHorizontalPodAutoscaler: (params: Params$patchAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50448,7 +50445,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified HorizontalPodAutoscaler */ readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus: (params: Params$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -50464,7 +50461,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified HorizontalPodAutoscaler */ replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus: (params: Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50484,7 +50481,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified HorizontalPodAutoscaler */ patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus: (params: Params$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50505,7 +50502,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces: (params: Params$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/watch/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v1/watch/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50529,7 +50526,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ watchAutoscalingV1NamespacedHorizontalPodAutoscalerList: (params: Params$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50553,7 +50550,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAutoscalingV1NamespacedHorizontalPodAutoscaler: (params: Params$watchAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50577,7 +50574,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAutoscalingV2beta1APIResources: (params: Params$getAutoscalingV2beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/`; const headers = { Accept: params.headers.Accept }; @@ -50589,7 +50586,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind HorizontalPodAutoscaler */ listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces: (params: Params$listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50613,7 +50610,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind HorizontalPodAutoscaler */ listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler: (params: Params$listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50637,7 +50634,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a HorizontalPodAutoscaler */ createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler: (params: Params$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50657,7 +50654,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of HorizontalPodAutoscaler */ deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler: (params: Params$deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50687,7 +50684,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified HorizontalPodAutoscaler */ readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler: (params: Params$readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50705,7 +50702,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified HorizontalPodAutoscaler */ replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler: (params: Params$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50725,7 +50722,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a HorizontalPodAutoscaler */ deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler: (params: Params$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50747,7 +50744,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified HorizontalPodAutoscaler */ patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler: (params: Params$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50768,7 +50765,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified HorizontalPodAutoscaler */ readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus: (params: Params$readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -50784,7 +50781,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified HorizontalPodAutoscaler */ replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus: (params: Params$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50804,7 +50801,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified HorizontalPodAutoscaler */ patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus: (params: Params$patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -50825,7 +50822,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces: (params: Params$watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50849,7 +50846,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList: (params: Params$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50873,7 +50870,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler: (params: Params$watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -50897,7 +50894,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getAutoscalingV2beta2APIResources: (params: Params$getAutoscalingV2beta2APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/`; const headers = { Accept: params.headers.Accept }; @@ -50909,7 +50906,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind HorizontalPodAutoscaler */ listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces: (params: Params$listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50933,7 +50930,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind HorizontalPodAutoscaler */ listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler: (params: Params$listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -50957,7 +50954,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a HorizontalPodAutoscaler */ createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler: (params: Params$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -50977,7 +50974,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of HorizontalPodAutoscaler */ deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler: (params: Params$deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51007,7 +51004,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified HorizontalPodAutoscaler */ readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler: (params: Params$readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51025,7 +51022,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified HorizontalPodAutoscaler */ replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler: (params: Params$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51045,7 +51042,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a HorizontalPodAutoscaler */ deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler: (params: Params$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51067,7 +51064,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified HorizontalPodAutoscaler */ patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler: (params: Params$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51088,7 +51085,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified HorizontalPodAutoscaler */ readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus: (params: Params$readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -51104,7 +51101,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified HorizontalPodAutoscaler */ replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus: (params: Params$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51124,7 +51121,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified HorizontalPodAutoscaler */ patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus: (params: Params$patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51145,7 +51142,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces: (params: Params$watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -51169,7 +51166,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList: (params: Params$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; const headers = { Accept: params.headers.Accept }; @@ -51193,7 +51190,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler: (params: Params$watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/autoscaling/v2beta2/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/autoscaling/v2beta2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51217,7 +51214,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getBatchAPIGroup: (params: Params$getBatchAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/\`; + const url = _baseUrl + `/apis/batch/`; const headers = { Accept: params.headers.Accept }; @@ -51229,7 +51226,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getBatchV1APIResources: (params: Params$getBatchV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/\`; + const url = _baseUrl + `/apis/batch/v1/`; const headers = { Accept: params.headers.Accept }; @@ -51241,7 +51238,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Job */ listBatchV1JobForAllNamespaces: (params: Params$listBatchV1JobForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/jobs\`; + const url = _baseUrl + `/apis/batch/v1/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51265,7 +51262,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Job */ listBatchV1NamespacedJob: (params: Params$listBatchV1NamespacedJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51289,7 +51286,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Job */ createBatchV1NamespacedJob: (params: Params$createBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$createBatchV1NamespacedJob$Status$200 | Response$createBatchV1NamespacedJob$Status$201 | Response$createBatchV1NamespacedJob$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51309,7 +51306,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Job */ deleteBatchV1CollectionNamespacedJob: (params: Params$deleteBatchV1CollectionNamespacedJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51339,7 +51336,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Job */ readBatchV1NamespacedJob: (params: Params$readBatchV1NamespacedJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51357,7 +51354,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Job */ replaceBatchV1NamespacedJob: (params: Params$replaceBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedJob$Status$200 | Response$replaceBatchV1NamespacedJob$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51377,7 +51374,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Job */ deleteBatchV1NamespacedJob: (params: Params$deleteBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$deleteBatchV1NamespacedJob$Status$200 | Response$deleteBatchV1NamespacedJob$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51399,7 +51396,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Job */ patchBatchV1NamespacedJob: (params: Params$patchBatchV1NamespacedJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51420,7 +51417,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Job */ readBatchV1NamespacedJobStatus: (params: Params$readBatchV1NamespacedJobStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -51436,7 +51433,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Job */ replaceBatchV1NamespacedJobStatus: (params: Params$replaceBatchV1NamespacedJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedJobStatus$Status$200 | Response$replaceBatchV1NamespacedJobStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51456,7 +51453,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Job */ patchBatchV1NamespacedJobStatus: (params: Params$patchBatchV1NamespacedJobStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51477,7 +51474,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. */ watchBatchV1JobListForAllNamespaces: (params: Params$watchBatchV1JobListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/watch/jobs\`; + const url = _baseUrl + `/apis/batch/v1/watch/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51501,7 +51498,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. */ watchBatchV1NamespacedJobList: (params: Params$watchBatchV1NamespacedJobList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs\`; + const url = _baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; const headers = { Accept: params.headers.Accept }; @@ -51525,7 +51522,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Job. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchBatchV1NamespacedJob: (params: Params$watchBatchV1NamespacedJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/jobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51549,7 +51546,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getBatchV1beta1APIResources: (params: Params$getBatchV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/\`; + const url = _baseUrl + `/apis/batch/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -51561,7 +51558,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CronJob */ listBatchV1beta1CronJobForAllNamespaces: (params: Params$listBatchV1beta1CronJobForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/cronjobs\`; + const url = _baseUrl + `/apis/batch/v1beta1/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51585,7 +51582,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CronJob */ listBatchV1beta1NamespacedCronJob: (params: Params$listBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51609,7 +51606,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CronJob */ createBatchV1beta1NamespacedCronJob: (params: Params$createBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise<(Response$createBatchV1beta1NamespacedCronJob$Status$200 | Response$createBatchV1beta1NamespacedCronJob$Status$201 | Response$createBatchV1beta1NamespacedCronJob$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51629,7 +51626,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CronJob */ deleteBatchV1beta1CollectionNamespacedCronJob: (params: Params$deleteBatchV1beta1CollectionNamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51659,7 +51656,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CronJob */ readBatchV1beta1NamespacedCronJob: (params: Params$readBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51677,7 +51674,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CronJob */ replaceBatchV1beta1NamespacedCronJob: (params: Params$replaceBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise<(Response$replaceBatchV1beta1NamespacedCronJob$Status$200 | Response$replaceBatchV1beta1NamespacedCronJob$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51697,7 +51694,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CronJob */ deleteBatchV1beta1NamespacedCronJob: (params: Params$deleteBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise<(Response$deleteBatchV1beta1NamespacedCronJob$Status$200 | Response$deleteBatchV1beta1NamespacedCronJob$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51719,7 +51716,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CronJob */ patchBatchV1beta1NamespacedCronJob: (params: Params$patchBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51740,7 +51737,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified CronJob */ readBatchV1beta1NamespacedCronJobStatus: (params: Params$readBatchV1beta1NamespacedCronJobStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -51756,7 +51753,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified CronJob */ replaceBatchV1beta1NamespacedCronJobStatus: (params: Params$replaceBatchV1beta1NamespacedCronJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$200 | Response$replaceBatchV1beta1NamespacedCronJobStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51776,7 +51773,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified CronJob */ patchBatchV1beta1NamespacedCronJobStatus: (params: Params$patchBatchV1beta1NamespacedCronJobStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -51797,7 +51794,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ watchBatchV1beta1CronJobListForAllNamespaces: (params: Params$watchBatchV1beta1CronJobListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/watch/cronjobs\`; + const url = _baseUrl + `/apis/batch/v1beta1/watch/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51821,7 +51818,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ watchBatchV1beta1NamespacedCronJobList: (params: Params$watchBatchV1beta1NamespacedCronJobList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51845,7 +51842,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchBatchV1beta1NamespacedCronJob: (params: Params$watchBatchV1beta1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51869,7 +51866,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getBatchV2alpha1APIResources: (params: Params$getBatchV2alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/\`; + const url = _baseUrl + `/apis/batch/v2alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -51881,7 +51878,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CronJob */ listBatchV2alpha1CronJobForAllNamespaces: (params: Params$listBatchV2alpha1CronJobForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/cronjobs\`; + const url = _baseUrl + `/apis/batch/v2alpha1/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51905,7 +51902,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CronJob */ listBatchV2alpha1NamespacedCronJob: (params: Params$listBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -51929,7 +51926,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CronJob */ createBatchV2alpha1NamespacedCronJob: (params: Params$createBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise<(Response$createBatchV2alpha1NamespacedCronJob$Status$200 | Response$createBatchV2alpha1NamespacedCronJob$Status$201 | Response$createBatchV2alpha1NamespacedCronJob$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51949,7 +51946,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CronJob */ deleteBatchV2alpha1CollectionNamespacedCronJob: (params: Params$deleteBatchV2alpha1CollectionNamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -51979,7 +51976,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CronJob */ readBatchV2alpha1NamespacedCronJob: (params: Params$readBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -51997,7 +51994,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CronJob */ replaceBatchV2alpha1NamespacedCronJob: (params: Params$replaceBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise<(Response$replaceBatchV2alpha1NamespacedCronJob$Status$200 | Response$replaceBatchV2alpha1NamespacedCronJob$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52017,7 +52014,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CronJob */ deleteBatchV2alpha1NamespacedCronJob: (params: Params$deleteBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise<(Response$deleteBatchV2alpha1NamespacedCronJob$Status$200 | Response$deleteBatchV2alpha1NamespacedCronJob$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52039,7 +52036,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CronJob */ patchBatchV2alpha1NamespacedCronJob: (params: Params$patchBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52060,7 +52057,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified CronJob */ readBatchV2alpha1NamespacedCronJobStatus: (params: Params$readBatchV2alpha1NamespacedCronJobStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -52076,7 +52073,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified CronJob */ replaceBatchV2alpha1NamespacedCronJobStatus: (params: Params$replaceBatchV2alpha1NamespacedCronJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$200 | Response$replaceBatchV2alpha1NamespacedCronJobStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52096,7 +52093,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified CronJob */ patchBatchV2alpha1NamespacedCronJobStatus: (params: Params$patchBatchV2alpha1NamespacedCronJobStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/batch/v2alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52117,7 +52114,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ watchBatchV2alpha1CronJobListForAllNamespaces: (params: Params$watchBatchV2alpha1CronJobListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/watch/cronjobs\`; + const url = _baseUrl + `/apis/batch/v2alpha1/watch/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -52141,7 +52138,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ watchBatchV2alpha1NamespacedCronJobList: (params: Params$watchBatchV2alpha1NamespacedCronJobList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs\`; + const url = _baseUrl + `/apis/batch/v2alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; const headers = { Accept: params.headers.Accept }; @@ -52165,7 +52162,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchBatchV2alpha1NamespacedCronJob: (params: Params$watchBatchV2alpha1NamespacedCronJob, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/batch/v2alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/cronjobs/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/batch/v2alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52189,7 +52186,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getCertificatesAPIGroup: (params: Params$getCertificatesAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/\`; + const url = _baseUrl + `/apis/certificates.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -52201,7 +52198,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getCertificatesV1beta1APIResources: (params: Params$getCertificatesV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -52213,7 +52210,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CertificateSigningRequest */ listCertificatesV1beta1CertificateSigningRequest: (params: Params$listCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests`; const headers = { Accept: params.headers.Accept }; @@ -52237,7 +52234,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CertificateSigningRequest */ createCertificatesV1beta1CertificateSigningRequest: (params: Params$createCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise<(Response$createCertificatesV1beta1CertificateSigningRequest$Status$200 | Response$createCertificatesV1beta1CertificateSigningRequest$Status$201 | Response$createCertificatesV1beta1CertificateSigningRequest$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52257,7 +52254,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CertificateSigningRequest */ deleteCertificatesV1beta1CollectionCertificateSigningRequest: (params: Params$deleteCertificatesV1beta1CollectionCertificateSigningRequest, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52287,7 +52284,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CertificateSigningRequest */ readCertificatesV1beta1CertificateSigningRequest: (params: Params$readCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52305,7 +52302,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CertificateSigningRequest */ replaceCertificatesV1beta1CertificateSigningRequest: (params: Params$replaceCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise<(Response$replaceCertificatesV1beta1CertificateSigningRequest$Status$200 | Response$replaceCertificatesV1beta1CertificateSigningRequest$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52325,7 +52322,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CertificateSigningRequest */ deleteCertificatesV1beta1CertificateSigningRequest: (params: Params$deleteCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise<(Response$deleteCertificatesV1beta1CertificateSigningRequest$Status$200 | Response$deleteCertificatesV1beta1CertificateSigningRequest$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52347,7 +52344,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CertificateSigningRequest */ patchCertificatesV1beta1CertificateSigningRequest: (params: Params$patchCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52368,7 +52365,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace approval of the specified CertificateSigningRequest */ replaceCertificatesV1beta1CertificateSigningRequestApproval: (params: Params$replaceCertificatesV1beta1CertificateSigningRequestApproval, option?: RequestOption): Promise<(Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$200 | Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/approval\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/approval`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52388,7 +52385,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified CertificateSigningRequest */ readCertificatesV1beta1CertificateSigningRequestStatus: (params: Params$readCertificatesV1beta1CertificateSigningRequestStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -52404,7 +52401,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified CertificateSigningRequest */ replaceCertificatesV1beta1CertificateSigningRequestStatus: (params: Params$replaceCertificatesV1beta1CertificateSigningRequestStatus, option?: RequestOption): Promise<(Response$replaceCertificatesV1beta1CertificateSigningRequestStatus$Status$200 | Response$replaceCertificatesV1beta1CertificateSigningRequestStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52424,7 +52421,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified CertificateSigningRequest */ patchCertificatesV1beta1CertificateSigningRequestStatus: (params: Params$patchCertificatesV1beta1CertificateSigningRequestStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52445,7 +52442,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead. */ watchCertificatesV1beta1CertificateSigningRequestList: (params: Params$watchCertificatesV1beta1CertificateSigningRequestList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests`; const headers = { Accept: params.headers.Accept }; @@ -52469,7 +52466,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCertificatesV1beta1CertificateSigningRequest: (params: Params$watchCertificatesV1beta1CertificateSigningRequest, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52493,7 +52490,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getCoordinationAPIGroup: (params: Params$getCoordinationAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/\`; + const url = _baseUrl + `/apis/coordination.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -52505,7 +52502,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getCoordinationV1APIResources: (params: Params$getCoordinationV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -52517,7 +52514,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Lease */ listCoordinationV1LeaseForAllNamespaces: (params: Params$listCoordinationV1LeaseForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/leases`; const headers = { Accept: params.headers.Accept }; @@ -52541,7 +52538,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Lease */ listCoordinationV1NamespacedLease: (params: Params$listCoordinationV1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -52565,7 +52562,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Lease */ createCoordinationV1NamespacedLease: (params: Params$createCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$createCoordinationV1NamespacedLease$Status$200 | Response$createCoordinationV1NamespacedLease$Status$201 | Response$createCoordinationV1NamespacedLease$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52585,7 +52582,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Lease */ deleteCoordinationV1CollectionNamespacedLease: (params: Params$deleteCoordinationV1CollectionNamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52615,7 +52612,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Lease */ readCoordinationV1NamespacedLease: (params: Params$readCoordinationV1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52633,7 +52630,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Lease */ replaceCoordinationV1NamespacedLease: (params: Params$replaceCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$replaceCoordinationV1NamespacedLease$Status$200 | Response$replaceCoordinationV1NamespacedLease$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52653,7 +52650,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Lease */ deleteCoordinationV1NamespacedLease: (params: Params$deleteCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$deleteCoordinationV1NamespacedLease$Status$200 | Response$deleteCoordinationV1NamespacedLease$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52675,7 +52672,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Lease */ patchCoordinationV1NamespacedLease: (params: Params$patchCoordinationV1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52696,7 +52693,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoordinationV1LeaseListForAllNamespaces: (params: Params$watchCoordinationV1LeaseListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/watch/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/watch/leases`; const headers = { Accept: params.headers.Accept }; @@ -52720,7 +52717,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoordinationV1NamespacedLeaseList: (params: Params$watchCoordinationV1NamespacedLeaseList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -52744,7 +52741,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Lease. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoordinationV1NamespacedLease: (params: Params$watchCoordinationV1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52768,7 +52765,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getCoordinationV1beta1APIResources: (params: Params$getCoordinationV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -52780,7 +52777,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Lease */ listCoordinationV1beta1LeaseForAllNamespaces: (params: Params$listCoordinationV1beta1LeaseForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/leases`; const headers = { Accept: params.headers.Accept }; @@ -52804,7 +52801,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Lease */ listCoordinationV1beta1NamespacedLease: (params: Params$listCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -52828,7 +52825,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Lease */ createCoordinationV1beta1NamespacedLease: (params: Params$createCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise<(Response$createCoordinationV1beta1NamespacedLease$Status$200 | Response$createCoordinationV1beta1NamespacedLease$Status$201 | Response$createCoordinationV1beta1NamespacedLease$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52848,7 +52845,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Lease */ deleteCoordinationV1beta1CollectionNamespacedLease: (params: Params$deleteCoordinationV1beta1CollectionNamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52878,7 +52875,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Lease */ readCoordinationV1beta1NamespacedLease: (params: Params$readCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -52896,7 +52893,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Lease */ replaceCoordinationV1beta1NamespacedLease: (params: Params$replaceCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise<(Response$replaceCoordinationV1beta1NamespacedLease$Status$200 | Response$replaceCoordinationV1beta1NamespacedLease$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52916,7 +52913,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Lease */ deleteCoordinationV1beta1NamespacedLease: (params: Params$deleteCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise<(Response$deleteCoordinationV1beta1NamespacedLease$Status$200 | Response$deleteCoordinationV1beta1NamespacedLease$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -52938,7 +52935,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Lease */ patchCoordinationV1beta1NamespacedLease: (params: Params$patchCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -52959,7 +52956,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoordinationV1beta1LeaseListForAllNamespaces: (params: Params$watchCoordinationV1beta1LeaseListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/watch/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/watch/leases`; const headers = { Accept: params.headers.Accept }; @@ -52983,7 +52980,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ watchCoordinationV1beta1NamespacedLeaseList: (params: Params$watchCoordinationV1beta1NamespacedLeaseList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; const headers = { Accept: params.headers.Accept }; @@ -53007,7 +53004,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Lease. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchCoordinationV1beta1NamespacedLease: (params: Params$watchCoordinationV1beta1NamespacedLease, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/coordination.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/leases/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/coordination.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53031,7 +53028,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getDiscoveryAPIGroup: (params: Params$getDiscoveryAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/\`; + const url = _baseUrl + `/apis/discovery.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -53043,7 +53040,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getDiscoveryV1beta1APIResources: (params: Params$getDiscoveryV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -53055,7 +53052,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind EndpointSlice */ listDiscoveryV1beta1EndpointSliceForAllNamespaces: (params: Params$listDiscoveryV1beta1EndpointSliceForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/endpointslices\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53079,7 +53076,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind EndpointSlice */ listDiscoveryV1beta1NamespacedEndpointSlice: (params: Params$listDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53103,7 +53100,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an EndpointSlice */ createDiscoveryV1beta1NamespacedEndpointSlice: (params: Params$createDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$200 | Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$201 | Response$createDiscoveryV1beta1NamespacedEndpointSlice$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53123,7 +53120,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of EndpointSlice */ deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice: (params: Params$deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53153,7 +53150,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified EndpointSlice */ readDiscoveryV1beta1NamespacedEndpointSlice: (params: Params$readDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53171,7 +53168,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified EndpointSlice */ replaceDiscoveryV1beta1NamespacedEndpointSlice: (params: Params$replaceDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$200 | Response$replaceDiscoveryV1beta1NamespacedEndpointSlice$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53191,7 +53188,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an EndpointSlice */ deleteDiscoveryV1beta1NamespacedEndpointSlice: (params: Params$deleteDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$200 | Response$deleteDiscoveryV1beta1NamespacedEndpointSlice$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53213,7 +53210,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified EndpointSlice */ patchDiscoveryV1beta1NamespacedEndpointSlice: (params: Params$patchDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53234,7 +53231,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. */ watchDiscoveryV1beta1EndpointSliceListForAllNamespaces: (params: Params$watchDiscoveryV1beta1EndpointSliceListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/watch/endpointslices\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/watch/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53258,7 +53255,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. */ watchDiscoveryV1beta1NamespacedEndpointSliceList: (params: Params$watchDiscoveryV1beta1NamespacedEndpointSliceList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; const headers = { Accept: params.headers.Accept }; @@ -53282,7 +53279,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchDiscoveryV1beta1NamespacedEndpointSlice: (params: Params$watchDiscoveryV1beta1NamespacedEndpointSlice, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/discovery.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/endpointslices/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/discovery.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53306,7 +53303,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getEventsAPIGroup: (params: Params$getEventsAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/\`; + const url = _baseUrl + `/apis/events.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -53318,7 +53315,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getEventsV1beta1APIResources: (params: Params$getEventsV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -53330,7 +53327,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Event */ listEventsV1beta1EventForAllNamespaces: (params: Params$listEventsV1beta1EventForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/events\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/events`; const headers = { Accept: params.headers.Accept }; @@ -53354,7 +53351,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Event */ listEventsV1beta1NamespacedEvent: (params: Params$listEventsV1beta1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -53378,7 +53375,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an Event */ createEventsV1beta1NamespacedEvent: (params: Params$createEventsV1beta1NamespacedEvent, option?: RequestOption): Promise<(Response$createEventsV1beta1NamespacedEvent$Status$200 | Response$createEventsV1beta1NamespacedEvent$Status$201 | Response$createEventsV1beta1NamespacedEvent$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53398,7 +53395,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Event */ deleteEventsV1beta1CollectionNamespacedEvent: (params: Params$deleteEventsV1beta1CollectionNamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53428,7 +53425,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Event */ readEventsV1beta1NamespacedEvent: (params: Params$readEventsV1beta1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53446,7 +53443,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Event */ replaceEventsV1beta1NamespacedEvent: (params: Params$replaceEventsV1beta1NamespacedEvent, option?: RequestOption): Promise<(Response$replaceEventsV1beta1NamespacedEvent$Status$200 | Response$replaceEventsV1beta1NamespacedEvent$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53466,7 +53463,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an Event */ deleteEventsV1beta1NamespacedEvent: (params: Params$deleteEventsV1beta1NamespacedEvent, option?: RequestOption): Promise<(Response$deleteEventsV1beta1NamespacedEvent$Status$200 | Response$deleteEventsV1beta1NamespacedEvent$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53488,7 +53485,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Event */ patchEventsV1beta1NamespacedEvent: (params: Params$patchEventsV1beta1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53509,7 +53506,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ watchEventsV1beta1EventListForAllNamespaces: (params: Params$watchEventsV1beta1EventListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/watch/events\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/watch/events`; const headers = { Accept: params.headers.Accept }; @@ -53533,7 +53530,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ watchEventsV1beta1NamespacedEventList: (params: Params$watchEventsV1beta1NamespacedEventList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; const headers = { Accept: params.headers.Accept }; @@ -53557,7 +53554,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchEventsV1beta1NamespacedEvent: (params: Params$watchEventsV1beta1NamespacedEvent, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/events.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/events/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/events.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53581,7 +53578,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getExtensionsAPIGroup: (params: Params$getExtensionsAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/\`; + const url = _baseUrl + `/apis/extensions/`; const headers = { Accept: params.headers.Accept }; @@ -53593,7 +53590,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getExtensionsV1beta1APIResources: (params: Params$getExtensionsV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/\`; + const url = _baseUrl + `/apis/extensions/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -53605,7 +53602,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Ingress */ listExtensionsV1beta1IngressForAllNamespaces: (params: Params$listExtensionsV1beta1IngressForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/ingresses\`; + const url = _baseUrl + `/apis/extensions/v1beta1/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53629,7 +53626,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Ingress */ listExtensionsV1beta1NamespacedIngress: (params: Params$listExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53653,7 +53650,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an Ingress */ createExtensionsV1beta1NamespacedIngress: (params: Params$createExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$createExtensionsV1beta1NamespacedIngress$Status$200 | Response$createExtensionsV1beta1NamespacedIngress$Status$201 | Response$createExtensionsV1beta1NamespacedIngress$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53673,7 +53670,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Ingress */ deleteExtensionsV1beta1CollectionNamespacedIngress: (params: Params$deleteExtensionsV1beta1CollectionNamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53703,7 +53700,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Ingress */ readExtensionsV1beta1NamespacedIngress: (params: Params$readExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53721,7 +53718,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Ingress */ replaceExtensionsV1beta1NamespacedIngress: (params: Params$replaceExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$replaceExtensionsV1beta1NamespacedIngress$Status$200 | Response$replaceExtensionsV1beta1NamespacedIngress$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53741,7 +53738,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an Ingress */ deleteExtensionsV1beta1NamespacedIngress: (params: Params$deleteExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$deleteExtensionsV1beta1NamespacedIngress$Status$200 | Response$deleteExtensionsV1beta1NamespacedIngress$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53763,7 +53760,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Ingress */ patchExtensionsV1beta1NamespacedIngress: (params: Params$patchExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53784,7 +53781,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Ingress */ readExtensionsV1beta1NamespacedIngressStatus: (params: Params$readExtensionsV1beta1NamespacedIngressStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -53800,7 +53797,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Ingress */ replaceExtensionsV1beta1NamespacedIngressStatus: (params: Params$replaceExtensionsV1beta1NamespacedIngressStatus, option?: RequestOption): Promise<(Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status$200 | Response$replaceExtensionsV1beta1NamespacedIngressStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53820,7 +53817,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Ingress */ patchExtensionsV1beta1NamespacedIngressStatus: (params: Params$patchExtensionsV1beta1NamespacedIngressStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/extensions/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -53841,7 +53838,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ watchExtensionsV1beta1IngressListForAllNamespaces: (params: Params$watchExtensionsV1beta1IngressListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/watch/ingresses\`; + const url = _baseUrl + `/apis/extensions/v1beta1/watch/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53865,7 +53862,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ watchExtensionsV1beta1NamespacedIngressList: (params: Params$watchExtensionsV1beta1NamespacedIngressList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/extensions/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -53889,7 +53886,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Ingress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchExtensionsV1beta1NamespacedIngress: (params: Params$watchExtensionsV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/extensions/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/extensions/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -53913,7 +53910,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getFlowcontrolApiserverAPIGroup: (params: Params$getFlowcontrolApiserverAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -53925,7 +53922,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getFlowcontrolApiserverV1alpha1APIResources: (params: Params$getFlowcontrolApiserverV1alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -53937,7 +53934,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind FlowSchema */ listFlowcontrolApiserverV1alpha1FlowSchema: (params: Params$listFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas`; const headers = { Accept: params.headers.Accept }; @@ -53961,7 +53958,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a FlowSchema */ createFlowcontrolApiserverV1alpha1FlowSchema: (params: Params$createFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1alpha1FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1alpha1FlowSchema$Status$201 | Response$createFlowcontrolApiserverV1alpha1FlowSchema$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -53981,7 +53978,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of FlowSchema */ deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema: (params: Params$deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54011,7 +54008,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified FlowSchema */ readFlowcontrolApiserverV1alpha1FlowSchema: (params: Params$readFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54029,7 +54026,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified FlowSchema */ replaceFlowcontrolApiserverV1alpha1FlowSchema: (params: Params$replaceFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1FlowSchema$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54049,7 +54046,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a FlowSchema */ deleteFlowcontrolApiserverV1alpha1FlowSchema: (params: Params$deleteFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$200 | Response$deleteFlowcontrolApiserverV1alpha1FlowSchema$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54071,7 +54068,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified FlowSchema */ patchFlowcontrolApiserverV1alpha1FlowSchema: (params: Params$patchFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54092,7 +54089,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified FlowSchema */ readFlowcontrolApiserverV1alpha1FlowSchemaStatus: (params: Params$readFlowcontrolApiserverV1alpha1FlowSchemaStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -54108,7 +54105,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified FlowSchema */ replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus: (params: Params$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54128,7 +54125,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified FlowSchema */ patchFlowcontrolApiserverV1alpha1FlowSchemaStatus: (params: Params$patchFlowcontrolApiserverV1alpha1FlowSchemaStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54149,7 +54146,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PriorityLevelConfiguration */ listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration: (params: Params$listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -54173,7 +54170,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PriorityLevelConfiguration */ createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration: (params: Params$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$201 | Response$createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54193,7 +54190,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PriorityLevelConfiguration */ deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration: (params: Params$deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54223,7 +54220,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PriorityLevelConfiguration */ readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration: (params: Params$readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54241,7 +54238,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PriorityLevelConfiguration */ replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration: (params: Params$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54261,7 +54258,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PriorityLevelConfiguration */ deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration: (params: Params$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$200 | Response$deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54283,7 +54280,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PriorityLevelConfiguration */ patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration: (params: Params$patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54304,7 +54301,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified PriorityLevelConfiguration */ readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus: (params: Params$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -54320,7 +54317,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified PriorityLevelConfiguration */ replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus: (params: Params$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54340,7 +54337,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified PriorityLevelConfiguration */ patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus: (params: Params$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54361,7 +54358,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead. */ watchFlowcontrolApiserverV1alpha1FlowSchemaList: (params: Params$watchFlowcontrolApiserverV1alpha1FlowSchemaList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas`; const headers = { Accept: params.headers.Accept }; @@ -54385,7 +54382,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchFlowcontrolApiserverV1alpha1FlowSchema: (params: Params$watchFlowcontrolApiserverV1alpha1FlowSchema, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54409,7 +54406,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList: (params: Params$watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations`; const headers = { Accept: params.headers.Accept }; @@ -54433,7 +54430,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration: (params: Params$watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54457,7 +54454,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getNetworkingAPIGroup: (params: Params$getNetworkingAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/\`; + const url = _baseUrl + `/apis/networking.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -54469,7 +54466,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getNetworkingV1APIResources: (params: Params$getNetworkingV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -54481,7 +54478,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind NetworkPolicy */ listNetworkingV1NamespacedNetworkPolicy: (params: Params$listNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54505,7 +54502,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a NetworkPolicy */ createNetworkingV1NamespacedNetworkPolicy: (params: Params$createNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$201 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54525,7 +54522,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of NetworkPolicy */ deleteNetworkingV1CollectionNamespacedNetworkPolicy: (params: Params$deleteNetworkingV1CollectionNamespacedNetworkPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54555,7 +54552,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified NetworkPolicy */ readNetworkingV1NamespacedNetworkPolicy: (params: Params$readNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54573,7 +54570,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified NetworkPolicy */ replaceNetworkingV1NamespacedNetworkPolicy: (params: Params$replaceNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54593,7 +54590,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a NetworkPolicy */ deleteNetworkingV1NamespacedNetworkPolicy: (params: Params$deleteNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54615,7 +54612,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified NetworkPolicy */ patchNetworkingV1NamespacedNetworkPolicy: (params: Params$patchNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54636,7 +54633,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind NetworkPolicy */ listNetworkingV1NetworkPolicyForAllNamespaces: (params: Params$listNetworkingV1NetworkPolicyForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/networkpolicies\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54660,7 +54657,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ watchNetworkingV1NamespacedNetworkPolicyList: (params: Params$watchNetworkingV1NamespacedNetworkPolicyList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54684,7 +54681,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchNetworkingV1NamespacedNetworkPolicy: (params: Params$watchNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/networkpolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54708,7 +54705,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ watchNetworkingV1NetworkPolicyListForAllNamespaces: (params: Params$watchNetworkingV1NetworkPolicyListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1/watch/networkpolicies\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1/watch/networkpolicies`; const headers = { Accept: params.headers.Accept }; @@ -54732,7 +54729,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getNetworkingV1beta1APIResources: (params: Params$getNetworkingV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -54744,7 +54741,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind IngressClass */ listNetworkingV1beta1IngressClass: (params: Params$listNetworkingV1beta1IngressClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses`; const headers = { Accept: params.headers.Accept }; @@ -54768,7 +54765,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an IngressClass */ createNetworkingV1beta1IngressClass: (params: Params$createNetworkingV1beta1IngressClass, option?: RequestOption): Promise<(Response$createNetworkingV1beta1IngressClass$Status$200 | Response$createNetworkingV1beta1IngressClass$Status$201 | Response$createNetworkingV1beta1IngressClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54788,7 +54785,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of IngressClass */ deleteNetworkingV1beta1CollectionIngressClass: (params: Params$deleteNetworkingV1beta1CollectionIngressClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54818,7 +54815,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified IngressClass */ readNetworkingV1beta1IngressClass: (params: Params$readNetworkingV1beta1IngressClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -54836,7 +54833,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified IngressClass */ replaceNetworkingV1beta1IngressClass: (params: Params$replaceNetworkingV1beta1IngressClass, option?: RequestOption): Promise<(Response$replaceNetworkingV1beta1IngressClass$Status$200 | Response$replaceNetworkingV1beta1IngressClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54856,7 +54853,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an IngressClass */ deleteNetworkingV1beta1IngressClass: (params: Params$deleteNetworkingV1beta1IngressClass, option?: RequestOption): Promise<(Response$deleteNetworkingV1beta1IngressClass$Status$200 | Response$deleteNetworkingV1beta1IngressClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54878,7 +54875,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified IngressClass */ patchNetworkingV1beta1IngressClass: (params: Params$patchNetworkingV1beta1IngressClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -54899,7 +54896,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Ingress */ listNetworkingV1beta1IngressForAllNamespaces: (params: Params$listNetworkingV1beta1IngressForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/ingresses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -54923,7 +54920,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Ingress */ listNetworkingV1beta1NamespacedIngress: (params: Params$listNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -54947,7 +54944,7 @@ export const createClient = (apiClient: ApiClient, }, /** create an Ingress */ createNetworkingV1beta1NamespacedIngress: (params: Params$createNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$createNetworkingV1beta1NamespacedIngress$Status$200 | Response$createNetworkingV1beta1NamespacedIngress$Status$201 | Response$createNetworkingV1beta1NamespacedIngress$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54967,7 +54964,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Ingress */ deleteNetworkingV1beta1CollectionNamespacedIngress: (params: Params$deleteNetworkingV1beta1CollectionNamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -54997,7 +54994,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Ingress */ readNetworkingV1beta1NamespacedIngress: (params: Params$readNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55015,7 +55012,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Ingress */ replaceNetworkingV1beta1NamespacedIngress: (params: Params$replaceNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$replaceNetworkingV1beta1NamespacedIngress$Status$200 | Response$replaceNetworkingV1beta1NamespacedIngress$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55035,7 +55032,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete an Ingress */ deleteNetworkingV1beta1NamespacedIngress: (params: Params$deleteNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise<(Response$deleteNetworkingV1beta1NamespacedIngress$Status$200 | Response$deleteNetworkingV1beta1NamespacedIngress$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55057,7 +55054,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Ingress */ patchNetworkingV1beta1NamespacedIngress: (params: Params$patchNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55078,7 +55075,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified Ingress */ readNetworkingV1beta1NamespacedIngressStatus: (params: Params$readNetworkingV1beta1NamespacedIngressStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -55094,7 +55091,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified Ingress */ replaceNetworkingV1beta1NamespacedIngressStatus: (params: Params$replaceNetworkingV1beta1NamespacedIngressStatus, option?: RequestOption): Promise<(Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status$200 | Response$replaceNetworkingV1beta1NamespacedIngressStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55114,7 +55111,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified Ingress */ patchNetworkingV1beta1NamespacedIngressStatus: (params: Params$patchNetworkingV1beta1NamespacedIngressStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55135,7 +55132,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchNetworkingV1beta1IngressClassList: (params: Params$watchNetworkingV1beta1IngressClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/ingressclasses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/watch/ingressclasses`; const headers = { Accept: params.headers.Accept }; @@ -55159,7 +55156,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind IngressClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchNetworkingV1beta1IngressClass: (params: Params$watchNetworkingV1beta1IngressClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/ingressclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/watch/ingressclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55183,7 +55180,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ watchNetworkingV1beta1IngressListForAllNamespaces: (params: Params$watchNetworkingV1beta1IngressListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/ingresses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/watch/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -55207,7 +55204,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ watchNetworkingV1beta1NamespacedIngressList: (params: Params$watchNetworkingV1beta1NamespacedIngressList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; const headers = { Accept: params.headers.Accept }; @@ -55231,7 +55228,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Ingress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchNetworkingV1beta1NamespacedIngress: (params: Params$watchNetworkingV1beta1NamespacedIngress, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/networking.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/ingresses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/networking.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55255,7 +55252,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getNodeAPIGroup: (params: Params$getNodeAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/\`; + const url = _baseUrl + `/apis/node.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -55267,7 +55264,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getNodeV1alpha1APIResources: (params: Params$getNodeV1alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -55279,7 +55276,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RuntimeClass */ listNodeV1alpha1RuntimeClass: (params: Params$listNodeV1alpha1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55303,7 +55300,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a RuntimeClass */ createNodeV1alpha1RuntimeClass: (params: Params$createNodeV1alpha1RuntimeClass, option?: RequestOption): Promise<(Response$createNodeV1alpha1RuntimeClass$Status$200 | Response$createNodeV1alpha1RuntimeClass$Status$201 | Response$createNodeV1alpha1RuntimeClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55323,7 +55320,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of RuntimeClass */ deleteNodeV1alpha1CollectionRuntimeClass: (params: Params$deleteNodeV1alpha1CollectionRuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55353,7 +55350,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified RuntimeClass */ readNodeV1alpha1RuntimeClass: (params: Params$readNodeV1alpha1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55371,7 +55368,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified RuntimeClass */ replaceNodeV1alpha1RuntimeClass: (params: Params$replaceNodeV1alpha1RuntimeClass, option?: RequestOption): Promise<(Response$replaceNodeV1alpha1RuntimeClass$Status$200 | Response$replaceNodeV1alpha1RuntimeClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55391,7 +55388,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a RuntimeClass */ deleteNodeV1alpha1RuntimeClass: (params: Params$deleteNodeV1alpha1RuntimeClass, option?: RequestOption): Promise<(Response$deleteNodeV1alpha1RuntimeClass$Status$200 | Response$deleteNodeV1alpha1RuntimeClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55413,7 +55410,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified RuntimeClass */ patchNodeV1alpha1RuntimeClass: (params: Params$patchNodeV1alpha1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55434,7 +55431,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchNodeV1alpha1RuntimeClassList: (params: Params$watchNodeV1alpha1RuntimeClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/watch/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/watch/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55458,7 +55455,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchNodeV1alpha1RuntimeClass: (params: Params$watchNodeV1alpha1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55482,7 +55479,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getNodeV1beta1APIResources: (params: Params$getNodeV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -55494,7 +55491,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RuntimeClass */ listNodeV1beta1RuntimeClass: (params: Params$listNodeV1beta1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55518,7 +55515,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a RuntimeClass */ createNodeV1beta1RuntimeClass: (params: Params$createNodeV1beta1RuntimeClass, option?: RequestOption): Promise<(Response$createNodeV1beta1RuntimeClass$Status$200 | Response$createNodeV1beta1RuntimeClass$Status$201 | Response$createNodeV1beta1RuntimeClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55538,7 +55535,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of RuntimeClass */ deleteNodeV1beta1CollectionRuntimeClass: (params: Params$deleteNodeV1beta1CollectionRuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55568,7 +55565,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified RuntimeClass */ readNodeV1beta1RuntimeClass: (params: Params$readNodeV1beta1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55586,7 +55583,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified RuntimeClass */ replaceNodeV1beta1RuntimeClass: (params: Params$replaceNodeV1beta1RuntimeClass, option?: RequestOption): Promise<(Response$replaceNodeV1beta1RuntimeClass$Status$200 | Response$replaceNodeV1beta1RuntimeClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55606,7 +55603,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a RuntimeClass */ deleteNodeV1beta1RuntimeClass: (params: Params$deleteNodeV1beta1RuntimeClass, option?: RequestOption): Promise<(Response$deleteNodeV1beta1RuntimeClass$Status$200 | Response$deleteNodeV1beta1RuntimeClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55628,7 +55625,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified RuntimeClass */ patchNodeV1beta1RuntimeClass: (params: Params$patchNodeV1beta1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55649,7 +55646,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchNodeV1beta1RuntimeClassList: (params: Params$watchNodeV1beta1RuntimeClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/watch/runtimeclasses\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/watch/runtimeclasses`; const headers = { Accept: params.headers.Accept }; @@ -55673,7 +55670,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchNodeV1beta1RuntimeClass: (params: Params$watchNodeV1beta1RuntimeClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/node.k8s.io/v1beta1/watch/runtimeclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/node.k8s.io/v1beta1/watch/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55697,7 +55694,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getPolicyAPIGroup: (params: Params$getPolicyAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/\`; + const url = _baseUrl + `/apis/policy/`; const headers = { Accept: params.headers.Accept }; @@ -55709,7 +55706,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getPolicyV1beta1APIResources: (params: Params$getPolicyV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/\`; + const url = _baseUrl + `/apis/policy/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -55721,7 +55718,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PodDisruptionBudget */ listPolicyV1beta1NamespacedPodDisruptionBudget: (params: Params$listPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -55745,7 +55742,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PodDisruptionBudget */ createPolicyV1beta1NamespacedPodDisruptionBudget: (params: Params$createPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$200 | Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$201 | Response$createPolicyV1beta1NamespacedPodDisruptionBudget$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55765,7 +55762,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PodDisruptionBudget */ deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget: (params: Params$deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55795,7 +55792,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PodDisruptionBudget */ readPolicyV1beta1NamespacedPodDisruptionBudget: (params: Params$readPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -55813,7 +55810,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PodDisruptionBudget */ replacePolicyV1beta1NamespacedPodDisruptionBudget: (params: Params$replacePolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 | Response$replacePolicyV1beta1NamespacedPodDisruptionBudget$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55833,7 +55830,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PodDisruptionBudget */ deletePolicyV1beta1NamespacedPodDisruptionBudget: (params: Params$deletePolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Status$200 | Response$deletePolicyV1beta1NamespacedPodDisruptionBudget$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55855,7 +55852,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PodDisruptionBudget */ patchPolicyV1beta1NamespacedPodDisruptionBudget: (params: Params$patchPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55876,7 +55873,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified PodDisruptionBudget */ readPolicyV1beta1NamespacedPodDisruptionBudgetStatus: (params: Params$readPolicyV1beta1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -55892,7 +55889,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified PodDisruptionBudget */ replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus: (params: Params$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise<(Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$200 | Response$replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -55912,7 +55909,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified PodDisruptionBudget */ patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus: (params: Params$patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/policy/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -55933,7 +55930,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PodDisruptionBudget */ listPolicyV1beta1PodDisruptionBudgetForAllNamespaces: (params: Params$listPolicyV1beta1PodDisruptionBudgetForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/poddisruptionbudgets\`; + const url = _baseUrl + `/apis/policy/v1beta1/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -55957,7 +55954,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PodSecurityPolicy */ listPolicyV1beta1PodSecurityPolicy: (params: Params$listPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies\`; + const url = _baseUrl + `/apis/policy/v1beta1/podsecuritypolicies`; const headers = { Accept: params.headers.Accept }; @@ -55981,7 +55978,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PodSecurityPolicy */ createPolicyV1beta1PodSecurityPolicy: (params: Params$createPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise<(Response$createPolicyV1beta1PodSecurityPolicy$Status$200 | Response$createPolicyV1beta1PodSecurityPolicy$Status$201 | Response$createPolicyV1beta1PodSecurityPolicy$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies\`; + const url = _baseUrl + `/apis/policy/v1beta1/podsecuritypolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56001,7 +55998,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PodSecurityPolicy */ deletePolicyV1beta1CollectionPodSecurityPolicy: (params: Params$deletePolicyV1beta1CollectionPodSecurityPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies\`; + const url = _baseUrl + `/apis/policy/v1beta1/podsecuritypolicies`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56031,7 +56028,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PodSecurityPolicy */ readPolicyV1beta1PodSecurityPolicy: (params: Params$readPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56049,7 +56046,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PodSecurityPolicy */ replacePolicyV1beta1PodSecurityPolicy: (params: Params$replacePolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise<(Response$replacePolicyV1beta1PodSecurityPolicy$Status$200 | Response$replacePolicyV1beta1PodSecurityPolicy$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56069,7 +56066,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PodSecurityPolicy */ deletePolicyV1beta1PodSecurityPolicy: (params: Params$deletePolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise<(Response$deletePolicyV1beta1PodSecurityPolicy$Status$200 | Response$deletePolicyV1beta1PodSecurityPolicy$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56091,7 +56088,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PodSecurityPolicy */ patchPolicyV1beta1PodSecurityPolicy: (params: Params$patchPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56112,7 +56109,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. */ watchPolicyV1beta1NamespacedPodDisruptionBudgetList: (params: Params$watchPolicyV1beta1NamespacedPodDisruptionBudgetList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets\`; + const url = _baseUrl + `/apis/policy/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -56136,7 +56133,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchPolicyV1beta1NamespacedPodDisruptionBudget: (params: Params$watchPolicyV1beta1NamespacedPodDisruptionBudget, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56160,7 +56157,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. */ watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces: (params: Params$watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/watch/poddisruptionbudgets\`; + const url = _baseUrl + `/apis/policy/v1beta1/watch/poddisruptionbudgets`; const headers = { Accept: params.headers.Accept }; @@ -56184,7 +56181,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ watchPolicyV1beta1PodSecurityPolicyList: (params: Params$watchPolicyV1beta1PodSecurityPolicyList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/watch/podsecuritypolicies\`; + const url = _baseUrl + `/apis/policy/v1beta1/watch/podsecuritypolicies`; const headers = { Accept: params.headers.Accept }; @@ -56208,7 +56205,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchPolicyV1beta1PodSecurityPolicy: (params: Params$watchPolicyV1beta1PodSecurityPolicy, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/policy/v1beta1/watch/podsecuritypolicies/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/policy/v1beta1/watch/podsecuritypolicies/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56232,7 +56229,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getRbacAuthorizationAPIGroup: (params: Params$getRbacAuthorizationAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -56244,7 +56241,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getRbacAuthorizationV1APIResources: (params: Params$getRbacAuthorizationV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -56256,7 +56253,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ClusterRoleBinding */ listRbacAuthorizationV1ClusterRoleBinding: (params: Params$listRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56280,7 +56277,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ClusterRoleBinding */ createRbacAuthorizationV1ClusterRoleBinding: (params: Params$createRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56300,7 +56297,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ClusterRoleBinding */ deleteRbacAuthorizationV1CollectionClusterRoleBinding: (params: Params$deleteRbacAuthorizationV1CollectionClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56330,7 +56327,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ClusterRoleBinding */ readRbacAuthorizationV1ClusterRoleBinding: (params: Params$readRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56346,7 +56343,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ClusterRoleBinding */ replaceRbacAuthorizationV1ClusterRoleBinding: (params: Params$replaceRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56366,7 +56363,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ClusterRoleBinding */ deleteRbacAuthorizationV1ClusterRoleBinding: (params: Params$deleteRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56388,7 +56385,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ClusterRoleBinding */ patchRbacAuthorizationV1ClusterRoleBinding: (params: Params$patchRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56409,7 +56406,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ClusterRole */ listRbacAuthorizationV1ClusterRole: (params: Params$listRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -56433,7 +56430,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ClusterRole */ createRbacAuthorizationV1ClusterRole: (params: Params$createRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1ClusterRole$Status$200 | Response$createRbacAuthorizationV1ClusterRole$Status$201 | Response$createRbacAuthorizationV1ClusterRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56453,7 +56450,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ClusterRole */ deleteRbacAuthorizationV1CollectionClusterRole: (params: Params$deleteRbacAuthorizationV1CollectionClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56483,7 +56480,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ClusterRole */ readRbacAuthorizationV1ClusterRole: (params: Params$readRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56499,7 +56496,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ClusterRole */ replaceRbacAuthorizationV1ClusterRole: (params: Params$replaceRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1ClusterRole$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56519,7 +56516,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ClusterRole */ deleteRbacAuthorizationV1ClusterRole: (params: Params$deleteRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1ClusterRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56541,7 +56538,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ClusterRole */ patchRbacAuthorizationV1ClusterRole: (params: Params$patchRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56562,7 +56559,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RoleBinding */ listRbacAuthorizationV1NamespacedRoleBinding: (params: Params$listRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56586,7 +56583,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a RoleBinding */ createRbacAuthorizationV1NamespacedRoleBinding: (params: Params$createRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56606,7 +56603,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of RoleBinding */ deleteRbacAuthorizationV1CollectionNamespacedRoleBinding: (params: Params$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56636,7 +56633,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified RoleBinding */ readRbacAuthorizationV1NamespacedRoleBinding: (params: Params$readRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56652,7 +56649,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified RoleBinding */ replaceRbacAuthorizationV1NamespacedRoleBinding: (params: Params$replaceRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56672,7 +56669,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a RoleBinding */ deleteRbacAuthorizationV1NamespacedRoleBinding: (params: Params$deleteRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56694,7 +56691,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified RoleBinding */ patchRbacAuthorizationV1NamespacedRoleBinding: (params: Params$patchRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56715,7 +56712,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Role */ listRbacAuthorizationV1NamespacedRole: (params: Params$listRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -56739,7 +56736,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Role */ createRbacAuthorizationV1NamespacedRole: (params: Params$createRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1NamespacedRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56759,7 +56756,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Role */ deleteRbacAuthorizationV1CollectionNamespacedRole: (params: Params$deleteRbacAuthorizationV1CollectionNamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56789,7 +56786,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Role */ readRbacAuthorizationV1NamespacedRole: (params: Params$readRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56805,7 +56802,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Role */ replaceRbacAuthorizationV1NamespacedRole: (params: Params$replaceRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRole$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56825,7 +56822,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Role */ deleteRbacAuthorizationV1NamespacedRole: (params: Params$deleteRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -56847,7 +56844,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Role */ patchRbacAuthorizationV1NamespacedRole: (params: Params$patchRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -56868,7 +56865,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RoleBinding */ listRbacAuthorizationV1RoleBindingForAllNamespaces: (params: Params$listRbacAuthorizationV1RoleBindingForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56892,7 +56889,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Role */ listRbacAuthorizationV1RoleForAllNamespaces: (params: Params$listRbacAuthorizationV1RoleForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/roles`; const headers = { Accept: params.headers.Accept }; @@ -56916,7 +56913,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1ClusterRoleBindingList: (params: Params$watchRbacAuthorizationV1ClusterRoleBindingList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -56940,7 +56937,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1ClusterRoleBinding: (params: Params$watchRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -56964,7 +56961,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1ClusterRoleList: (params: Params$watchRbacAuthorizationV1ClusterRoleList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -56988,7 +56985,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1ClusterRole: (params: Params$watchRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57012,7 +57009,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1NamespacedRoleBindingList: (params: Params$watchRbacAuthorizationV1NamespacedRoleBindingList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57036,7 +57033,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1NamespacedRoleBinding: (params: Params$watchRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57060,7 +57057,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1NamespacedRoleList: (params: Params$watchRbacAuthorizationV1NamespacedRoleList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -57084,7 +57081,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1NamespacedRole: (params: Params$watchRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57108,7 +57105,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1RoleBindingListForAllNamespaces: (params: Params$watchRbacAuthorizationV1RoleBindingListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57132,7 +57129,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1RoleListForAllNamespaces: (params: Params$watchRbacAuthorizationV1RoleListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1/watch/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/roles`; const headers = { Accept: params.headers.Accept }; @@ -57156,7 +57153,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getRbacAuthorizationV1alpha1APIResources: (params: Params$getRbacAuthorizationV1alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -57168,7 +57165,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ClusterRoleBinding */ listRbacAuthorizationV1alpha1ClusterRoleBinding: (params: Params$listRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57192,7 +57189,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ClusterRoleBinding */ createRbacAuthorizationV1alpha1ClusterRoleBinding: (params: Params$createRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1alpha1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1alpha1ClusterRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57212,7 +57209,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ClusterRoleBinding */ deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding: (params: Params$deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57242,7 +57239,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ClusterRoleBinding */ readRbacAuthorizationV1alpha1ClusterRoleBinding: (params: Params$readRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57258,7 +57255,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ClusterRoleBinding */ replaceRbacAuthorizationV1alpha1ClusterRoleBinding: (params: Params$replaceRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1alpha1ClusterRoleBinding$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57278,7 +57275,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ClusterRoleBinding */ deleteRbacAuthorizationV1alpha1ClusterRoleBinding: (params: Params$deleteRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1alpha1ClusterRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57300,7 +57297,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ClusterRoleBinding */ patchRbacAuthorizationV1alpha1ClusterRoleBinding: (params: Params$patchRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57321,7 +57318,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ClusterRole */ listRbacAuthorizationV1alpha1ClusterRole: (params: Params$listRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -57345,7 +57342,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ClusterRole */ createRbacAuthorizationV1alpha1ClusterRole: (params: Params$createRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1ClusterRole$Status$200 | Response$createRbacAuthorizationV1alpha1ClusterRole$Status$201 | Response$createRbacAuthorizationV1alpha1ClusterRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57365,7 +57362,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ClusterRole */ deleteRbacAuthorizationV1alpha1CollectionClusterRole: (params: Params$deleteRbacAuthorizationV1alpha1CollectionClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57395,7 +57392,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ClusterRole */ readRbacAuthorizationV1alpha1ClusterRole: (params: Params$readRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57411,7 +57408,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ClusterRole */ replaceRbacAuthorizationV1alpha1ClusterRole: (params: Params$replaceRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1alpha1ClusterRole$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57431,7 +57428,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ClusterRole */ deleteRbacAuthorizationV1alpha1ClusterRole: (params: Params$deleteRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1alpha1ClusterRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57453,7 +57450,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ClusterRole */ patchRbacAuthorizationV1alpha1ClusterRole: (params: Params$patchRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57474,7 +57471,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RoleBinding */ listRbacAuthorizationV1alpha1NamespacedRoleBinding: (params: Params$listRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57498,7 +57495,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a RoleBinding */ createRbacAuthorizationV1alpha1NamespacedRoleBinding: (params: Params$createRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57518,7 +57515,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of RoleBinding */ deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding: (params: Params$deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57548,7 +57545,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified RoleBinding */ readRbacAuthorizationV1alpha1NamespacedRoleBinding: (params: Params$readRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57564,7 +57561,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified RoleBinding */ replaceRbacAuthorizationV1alpha1NamespacedRoleBinding: (params: Params$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57584,7 +57581,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a RoleBinding */ deleteRbacAuthorizationV1alpha1NamespacedRoleBinding: (params: Params$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1alpha1NamespacedRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57606,7 +57603,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified RoleBinding */ patchRbacAuthorizationV1alpha1NamespacedRoleBinding: (params: Params$patchRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57627,7 +57624,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Role */ listRbacAuthorizationV1alpha1NamespacedRole: (params: Params$listRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -57651,7 +57648,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Role */ createRbacAuthorizationV1alpha1NamespacedRole: (params: Params$createRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1alpha1NamespacedRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57671,7 +57668,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Role */ deleteRbacAuthorizationV1alpha1CollectionNamespacedRole: (params: Params$deleteRbacAuthorizationV1alpha1CollectionNamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57701,7 +57698,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Role */ readRbacAuthorizationV1alpha1NamespacedRole: (params: Params$readRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57717,7 +57714,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Role */ replaceRbacAuthorizationV1alpha1NamespacedRole: (params: Params$replaceRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1alpha1NamespacedRole$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57737,7 +57734,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Role */ deleteRbacAuthorizationV1alpha1NamespacedRole: (params: Params$deleteRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1alpha1NamespacedRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -57759,7 +57756,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Role */ patchRbacAuthorizationV1alpha1NamespacedRole: (params: Params$patchRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -57780,7 +57777,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RoleBinding */ listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces: (params: Params$listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57804,7 +57801,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Role */ listRbacAuthorizationV1alpha1RoleForAllNamespaces: (params: Params$listRbacAuthorizationV1alpha1RoleForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/roles`; const headers = { Accept: params.headers.Accept }; @@ -57828,7 +57825,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1alpha1ClusterRoleBindingList: (params: Params$watchRbacAuthorizationV1alpha1ClusterRoleBindingList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57852,7 +57849,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1alpha1ClusterRoleBinding: (params: Params$watchRbacAuthorizationV1alpha1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57876,7 +57873,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1alpha1ClusterRoleList: (params: Params$watchRbacAuthorizationV1alpha1ClusterRoleList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -57900,7 +57897,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1alpha1ClusterRole: (params: Params$watchRbacAuthorizationV1alpha1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57924,7 +57921,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1alpha1NamespacedRoleBindingList: (params: Params$watchRbacAuthorizationV1alpha1NamespacedRoleBindingList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -57948,7 +57945,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1alpha1NamespacedRoleBinding: (params: Params$watchRbacAuthorizationV1alpha1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -57972,7 +57969,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1alpha1NamespacedRoleList: (params: Params$watchRbacAuthorizationV1alpha1NamespacedRoleList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -57996,7 +57993,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1alpha1NamespacedRole: (params: Params$watchRbacAuthorizationV1alpha1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58020,7 +58017,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces: (params: Params$watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58044,7 +58041,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1alpha1RoleListForAllNamespaces: (params: Params$watchRbacAuthorizationV1alpha1RoleListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles`; const headers = { Accept: params.headers.Accept }; @@ -58068,7 +58065,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getRbacAuthorizationV1beta1APIResources: (params: Params$getRbacAuthorizationV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -58080,7 +58077,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ClusterRoleBinding */ listRbacAuthorizationV1beta1ClusterRoleBinding: (params: Params$listRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58104,7 +58101,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ClusterRoleBinding */ createRbacAuthorizationV1beta1ClusterRoleBinding: (params: Params$createRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1beta1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1beta1ClusterRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58124,7 +58121,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ClusterRoleBinding */ deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding: (params: Params$deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58154,7 +58151,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ClusterRoleBinding */ readRbacAuthorizationV1beta1ClusterRoleBinding: (params: Params$readRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58170,7 +58167,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ClusterRoleBinding */ replaceRbacAuthorizationV1beta1ClusterRoleBinding: (params: Params$replaceRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1beta1ClusterRoleBinding$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58190,7 +58187,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ClusterRoleBinding */ deleteRbacAuthorizationV1beta1ClusterRoleBinding: (params: Params$deleteRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1beta1ClusterRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58212,7 +58209,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ClusterRoleBinding */ patchRbacAuthorizationV1beta1ClusterRoleBinding: (params: Params$patchRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58233,7 +58230,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind ClusterRole */ listRbacAuthorizationV1beta1ClusterRole: (params: Params$listRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -58257,7 +58254,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a ClusterRole */ createRbacAuthorizationV1beta1ClusterRole: (params: Params$createRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1ClusterRole$Status$200 | Response$createRbacAuthorizationV1beta1ClusterRole$Status$201 | Response$createRbacAuthorizationV1beta1ClusterRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58277,7 +58274,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of ClusterRole */ deleteRbacAuthorizationV1beta1CollectionClusterRole: (params: Params$deleteRbacAuthorizationV1beta1CollectionClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58307,7 +58304,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified ClusterRole */ readRbacAuthorizationV1beta1ClusterRole: (params: Params$readRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58323,7 +58320,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified ClusterRole */ replaceRbacAuthorizationV1beta1ClusterRole: (params: Params$replaceRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1beta1ClusterRole$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58343,7 +58340,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a ClusterRole */ deleteRbacAuthorizationV1beta1ClusterRole: (params: Params$deleteRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1beta1ClusterRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58365,7 +58362,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified ClusterRole */ patchRbacAuthorizationV1beta1ClusterRole: (params: Params$patchRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58386,7 +58383,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RoleBinding */ listRbacAuthorizationV1beta1NamespacedRoleBinding: (params: Params$listRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58410,7 +58407,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a RoleBinding */ createRbacAuthorizationV1beta1NamespacedRoleBinding: (params: Params$createRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1beta1NamespacedRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58430,7 +58427,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of RoleBinding */ deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding: (params: Params$deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58460,7 +58457,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified RoleBinding */ readRbacAuthorizationV1beta1NamespacedRoleBinding: (params: Params$readRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58476,7 +58473,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified RoleBinding */ replaceRbacAuthorizationV1beta1NamespacedRoleBinding: (params: Params$replaceRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1beta1NamespacedRoleBinding$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58496,7 +58493,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a RoleBinding */ deleteRbacAuthorizationV1beta1NamespacedRoleBinding: (params: Params$deleteRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1beta1NamespacedRoleBinding$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58518,7 +58515,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified RoleBinding */ patchRbacAuthorizationV1beta1NamespacedRoleBinding: (params: Params$patchRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58539,7 +58536,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Role */ listRbacAuthorizationV1beta1NamespacedRole: (params: Params$listRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -58563,7 +58560,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a Role */ createRbacAuthorizationV1beta1NamespacedRole: (params: Params$createRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1beta1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1beta1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1beta1NamespacedRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58583,7 +58580,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of Role */ deleteRbacAuthorizationV1beta1CollectionNamespacedRole: (params: Params$deleteRbacAuthorizationV1beta1CollectionNamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58613,7 +58610,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified Role */ readRbacAuthorizationV1beta1NamespacedRole: (params: Params$readRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58629,7 +58626,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified Role */ replaceRbacAuthorizationV1beta1NamespacedRole: (params: Params$replaceRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1beta1NamespacedRole$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58649,7 +58646,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a Role */ deleteRbacAuthorizationV1beta1NamespacedRole: (params: Params$deleteRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1beta1NamespacedRole$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -58671,7 +58668,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified Role */ patchRbacAuthorizationV1beta1NamespacedRole: (params: Params$patchRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -58692,7 +58689,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind RoleBinding */ listRbacAuthorizationV1beta1RoleBindingForAllNamespaces: (params: Params$listRbacAuthorizationV1beta1RoleBindingForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58716,7 +58713,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind Role */ listRbacAuthorizationV1beta1RoleForAllNamespaces: (params: Params$listRbacAuthorizationV1beta1RoleForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/roles`; const headers = { Accept: params.headers.Accept }; @@ -58740,7 +58737,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1beta1ClusterRoleBindingList: (params: Params$watchRbacAuthorizationV1beta1ClusterRoleBindingList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58764,7 +58761,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1beta1ClusterRoleBinding: (params: Params$watchRbacAuthorizationV1beta1ClusterRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58788,7 +58785,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1beta1ClusterRoleList: (params: Params$watchRbacAuthorizationV1beta1ClusterRoleList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles`; const headers = { Accept: params.headers.Accept }; @@ -58812,7 +58809,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1beta1ClusterRole: (params: Params$watchRbacAuthorizationV1beta1ClusterRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58836,7 +58833,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1beta1NamespacedRoleBindingList: (params: Params$watchRbacAuthorizationV1beta1NamespacedRoleBindingList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58860,7 +58857,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1beta1NamespacedRoleBinding: (params: Params$watchRbacAuthorizationV1beta1NamespacedRoleBinding, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/rolebindings/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58884,7 +58881,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1beta1NamespacedRoleList: (params: Params$watchRbacAuthorizationV1beta1NamespacedRoleList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; const headers = { Accept: params.headers.Accept }; @@ -58908,7 +58905,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchRbacAuthorizationV1beta1NamespacedRole: (params: Params$watchRbacAuthorizationV1beta1NamespacedRole, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/roles/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -58932,7 +58929,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces: (params: Params$watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings`; const headers = { Accept: params.headers.Accept }; @@ -58956,7 +58953,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ watchRbacAuthorizationV1beta1RoleListForAllNamespaces: (params: Params$watchRbacAuthorizationV1beta1RoleListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/rbac.authorization.k8s.io/v1beta1/watch/roles\`; + const url = _baseUrl + `/apis/rbac.authorization.k8s.io/v1beta1/watch/roles`; const headers = { Accept: params.headers.Accept }; @@ -58980,7 +58977,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getSchedulingAPIGroup: (params: Params$getSchedulingAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -58992,7 +58989,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getSchedulingV1APIResources: (params: Params$getSchedulingV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -59004,7 +59001,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PriorityClass */ listSchedulingV1PriorityClass: (params: Params$listSchedulingV1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59028,7 +59025,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PriorityClass */ createSchedulingV1PriorityClass: (params: Params$createSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$createSchedulingV1PriorityClass$Status$200 | Response$createSchedulingV1PriorityClass$Status$201 | Response$createSchedulingV1PriorityClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59048,7 +59045,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PriorityClass */ deleteSchedulingV1CollectionPriorityClass: (params: Params$deleteSchedulingV1CollectionPriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59078,7 +59075,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PriorityClass */ readSchedulingV1PriorityClass: (params: Params$readSchedulingV1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59096,7 +59093,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PriorityClass */ replaceSchedulingV1PriorityClass: (params: Params$replaceSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$replaceSchedulingV1PriorityClass$Status$200 | Response$replaceSchedulingV1PriorityClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59116,7 +59113,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PriorityClass */ deleteSchedulingV1PriorityClass: (params: Params$deleteSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$deleteSchedulingV1PriorityClass$Status$200 | Response$deleteSchedulingV1PriorityClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59138,7 +59135,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PriorityClass */ patchSchedulingV1PriorityClass: (params: Params$patchSchedulingV1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59159,7 +59156,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchSchedulingV1PriorityClassList: (params: Params$watchSchedulingV1PriorityClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/watch/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/watch/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59183,7 +59180,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchSchedulingV1PriorityClass: (params: Params$watchSchedulingV1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1/watch/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1/watch/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59207,7 +59204,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getSchedulingV1alpha1APIResources: (params: Params$getSchedulingV1alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -59219,7 +59216,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PriorityClass */ listSchedulingV1alpha1PriorityClass: (params: Params$listSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59243,7 +59240,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PriorityClass */ createSchedulingV1alpha1PriorityClass: (params: Params$createSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise<(Response$createSchedulingV1alpha1PriorityClass$Status$200 | Response$createSchedulingV1alpha1PriorityClass$Status$201 | Response$createSchedulingV1alpha1PriorityClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59263,7 +59260,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PriorityClass */ deleteSchedulingV1alpha1CollectionPriorityClass: (params: Params$deleteSchedulingV1alpha1CollectionPriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59293,7 +59290,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PriorityClass */ readSchedulingV1alpha1PriorityClass: (params: Params$readSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59311,7 +59308,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PriorityClass */ replaceSchedulingV1alpha1PriorityClass: (params: Params$replaceSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise<(Response$replaceSchedulingV1alpha1PriorityClass$Status$200 | Response$replaceSchedulingV1alpha1PriorityClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59331,7 +59328,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PriorityClass */ deleteSchedulingV1alpha1PriorityClass: (params: Params$deleteSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise<(Response$deleteSchedulingV1alpha1PriorityClass$Status$200 | Response$deleteSchedulingV1alpha1PriorityClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59353,7 +59350,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PriorityClass */ patchSchedulingV1alpha1PriorityClass: (params: Params$patchSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59374,7 +59371,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchSchedulingV1alpha1PriorityClassList: (params: Params$watchSchedulingV1alpha1PriorityClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59398,7 +59395,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchSchedulingV1alpha1PriorityClass: (params: Params$watchSchedulingV1alpha1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59422,7 +59419,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getSchedulingV1beta1APIResources: (params: Params$getSchedulingV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -59434,7 +59431,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PriorityClass */ listSchedulingV1beta1PriorityClass: (params: Params$listSchedulingV1beta1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59458,7 +59455,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PriorityClass */ createSchedulingV1beta1PriorityClass: (params: Params$createSchedulingV1beta1PriorityClass, option?: RequestOption): Promise<(Response$createSchedulingV1beta1PriorityClass$Status$200 | Response$createSchedulingV1beta1PriorityClass$Status$201 | Response$createSchedulingV1beta1PriorityClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59478,7 +59475,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PriorityClass */ deleteSchedulingV1beta1CollectionPriorityClass: (params: Params$deleteSchedulingV1beta1CollectionPriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59508,7 +59505,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PriorityClass */ readSchedulingV1beta1PriorityClass: (params: Params$readSchedulingV1beta1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59526,7 +59523,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PriorityClass */ replaceSchedulingV1beta1PriorityClass: (params: Params$replaceSchedulingV1beta1PriorityClass, option?: RequestOption): Promise<(Response$replaceSchedulingV1beta1PriorityClass$Status$200 | Response$replaceSchedulingV1beta1PriorityClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59546,7 +59543,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PriorityClass */ deleteSchedulingV1beta1PriorityClass: (params: Params$deleteSchedulingV1beta1PriorityClass, option?: RequestOption): Promise<(Response$deleteSchedulingV1beta1PriorityClass$Status$200 | Response$deleteSchedulingV1beta1PriorityClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59568,7 +59565,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PriorityClass */ patchSchedulingV1beta1PriorityClass: (params: Params$patchSchedulingV1beta1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59589,7 +59586,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchSchedulingV1beta1PriorityClassList: (params: Params$watchSchedulingV1beta1PriorityClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses`; const headers = { Accept: params.headers.Accept }; @@ -59613,7 +59610,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchSchedulingV1beta1PriorityClass: (params: Params$watchSchedulingV1beta1PriorityClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59637,7 +59634,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getSettingsAPIGroup: (params: Params$getSettingsAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/\`; + const url = _baseUrl + `/apis/settings.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -59649,7 +59646,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getSettingsV1alpha1APIResources: (params: Params$getSettingsV1alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -59661,7 +59658,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PodPreset */ listSettingsV1alpha1NamespacedPodPreset: (params: Params$listSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59685,7 +59682,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a PodPreset */ createSettingsV1alpha1NamespacedPodPreset: (params: Params$createSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise<(Response$createSettingsV1alpha1NamespacedPodPreset$Status$200 | Response$createSettingsV1alpha1NamespacedPodPreset$Status$201 | Response$createSettingsV1alpha1NamespacedPodPreset$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59705,7 +59702,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of PodPreset */ deleteSettingsV1alpha1CollectionNamespacedPodPreset: (params: Params$deleteSettingsV1alpha1CollectionNamespacedPodPreset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59735,7 +59732,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified PodPreset */ readSettingsV1alpha1NamespacedPodPreset: (params: Params$readSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59753,7 +59750,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified PodPreset */ replaceSettingsV1alpha1NamespacedPodPreset: (params: Params$replaceSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise<(Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$200 | Response$replaceSettingsV1alpha1NamespacedPodPreset$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59773,7 +59770,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a PodPreset */ deleteSettingsV1alpha1NamespacedPodPreset: (params: Params$deleteSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise<(Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$200 | Response$deleteSettingsV1alpha1NamespacedPodPreset$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59795,7 +59792,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified PodPreset */ patchSettingsV1alpha1NamespacedPodPreset: (params: Params$patchSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -59816,7 +59813,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind PodPreset */ listSettingsV1alpha1PodPresetForAllNamespaces: (params: Params$listSettingsV1alpha1PodPresetForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/podpresets\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59840,7 +59837,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead. */ watchSettingsV1alpha1NamespacedPodPresetList: (params: Params$watchSettingsV1alpha1NamespacedPodPresetList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59864,7 +59861,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind PodPreset. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchSettingsV1alpha1NamespacedPodPreset: (params: Params$watchSettingsV1alpha1NamespacedPodPreset, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/watch/namespaces/\${encodeURIComponent(params.parameter.namespace)}/podpresets/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podpresets/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -59888,7 +59885,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead. */ watchSettingsV1alpha1PodPresetListForAllNamespaces: (params: Params$watchSettingsV1alpha1PodPresetListForAllNamespaces, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/settings.k8s.io/v1alpha1/watch/podpresets\`; + const url = _baseUrl + `/apis/settings.k8s.io/v1alpha1/watch/podpresets`; const headers = { Accept: params.headers.Accept }; @@ -59912,7 +59909,7 @@ export const createClient = (apiClient: ApiClient, }, /** get information of a group */ getStorageAPIGroup: (params: Params$getStorageAPIGroup, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/\`; + const url = _baseUrl + `/apis/storage.k8s.io/`; const headers = { Accept: params.headers.Accept }; @@ -59924,7 +59921,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getStorageV1APIResources: (params: Params$getStorageV1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/`; const headers = { Accept: params.headers.Accept }; @@ -59936,7 +59933,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CSIDriver */ listStorageV1CSIDriver: (params: Params$listStorageV1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -59960,7 +59957,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CSIDriver */ createStorageV1CSIDriver: (params: Params$createStorageV1CSIDriver, option?: RequestOption): Promise<(Response$createStorageV1CSIDriver$Status$200 | Response$createStorageV1CSIDriver$Status$201 | Response$createStorageV1CSIDriver$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -59980,7 +59977,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CSIDriver */ deleteStorageV1CollectionCSIDriver: (params: Params$deleteStorageV1CollectionCSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60010,7 +60007,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CSIDriver */ readStorageV1CSIDriver: (params: Params$readStorageV1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60028,7 +60025,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CSIDriver */ replaceStorageV1CSIDriver: (params: Params$replaceStorageV1CSIDriver, option?: RequestOption): Promise<(Response$replaceStorageV1CSIDriver$Status$200 | Response$replaceStorageV1CSIDriver$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60048,7 +60045,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CSIDriver */ deleteStorageV1CSIDriver: (params: Params$deleteStorageV1CSIDriver, option?: RequestOption): Promise<(Response$deleteStorageV1CSIDriver$Status$200 | Response$deleteStorageV1CSIDriver$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60070,7 +60067,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CSIDriver */ patchStorageV1CSIDriver: (params: Params$patchStorageV1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60091,7 +60088,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CSINode */ listStorageV1CSINode: (params: Params$listStorageV1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -60115,7 +60112,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CSINode */ createStorageV1CSINode: (params: Params$createStorageV1CSINode, option?: RequestOption): Promise<(Response$createStorageV1CSINode$Status$200 | Response$createStorageV1CSINode$Status$201 | Response$createStorageV1CSINode$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60135,7 +60132,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CSINode */ deleteStorageV1CollectionCSINode: (params: Params$deleteStorageV1CollectionCSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60165,7 +60162,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CSINode */ readStorageV1CSINode: (params: Params$readStorageV1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60183,7 +60180,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CSINode */ replaceStorageV1CSINode: (params: Params$replaceStorageV1CSINode, option?: RequestOption): Promise<(Response$replaceStorageV1CSINode$Status$200 | Response$replaceStorageV1CSINode$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60203,7 +60200,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CSINode */ deleteStorageV1CSINode: (params: Params$deleteStorageV1CSINode, option?: RequestOption): Promise<(Response$deleteStorageV1CSINode$Status$200 | Response$deleteStorageV1CSINode$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60225,7 +60222,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CSINode */ patchStorageV1CSINode: (params: Params$patchStorageV1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60246,7 +60243,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind StorageClass */ listStorageV1StorageClass: (params: Params$listStorageV1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -60270,7 +60267,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a StorageClass */ createStorageV1StorageClass: (params: Params$createStorageV1StorageClass, option?: RequestOption): Promise<(Response$createStorageV1StorageClass$Status$200 | Response$createStorageV1StorageClass$Status$201 | Response$createStorageV1StorageClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60290,7 +60287,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of StorageClass */ deleteStorageV1CollectionStorageClass: (params: Params$deleteStorageV1CollectionStorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60320,7 +60317,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified StorageClass */ readStorageV1StorageClass: (params: Params$readStorageV1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60338,7 +60335,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified StorageClass */ replaceStorageV1StorageClass: (params: Params$replaceStorageV1StorageClass, option?: RequestOption): Promise<(Response$replaceStorageV1StorageClass$Status$200 | Response$replaceStorageV1StorageClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60358,7 +60355,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a StorageClass */ deleteStorageV1StorageClass: (params: Params$deleteStorageV1StorageClass, option?: RequestOption): Promise<(Response$deleteStorageV1StorageClass$Status$200 | Response$deleteStorageV1StorageClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60380,7 +60377,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified StorageClass */ patchStorageV1StorageClass: (params: Params$patchStorageV1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60401,7 +60398,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind VolumeAttachment */ listStorageV1VolumeAttachment: (params: Params$listStorageV1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60425,7 +60422,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a VolumeAttachment */ createStorageV1VolumeAttachment: (params: Params$createStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$createStorageV1VolumeAttachment$Status$200 | Response$createStorageV1VolumeAttachment$Status$201 | Response$createStorageV1VolumeAttachment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60445,7 +60442,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of VolumeAttachment */ deleteStorageV1CollectionVolumeAttachment: (params: Params$deleteStorageV1CollectionVolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60475,7 +60472,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified VolumeAttachment */ readStorageV1VolumeAttachment: (params: Params$readStorageV1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60493,7 +60490,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified VolumeAttachment */ replaceStorageV1VolumeAttachment: (params: Params$replaceStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$replaceStorageV1VolumeAttachment$Status$200 | Response$replaceStorageV1VolumeAttachment$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60513,7 +60510,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a VolumeAttachment */ deleteStorageV1VolumeAttachment: (params: Params$deleteStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$deleteStorageV1VolumeAttachment$Status$200 | Response$deleteStorageV1VolumeAttachment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60535,7 +60532,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified VolumeAttachment */ patchStorageV1VolumeAttachment: (params: Params$patchStorageV1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60556,7 +60553,7 @@ export const createClient = (apiClient: ApiClient, }, /** read status of the specified VolumeAttachment */ readStorageV1VolumeAttachmentStatus: (params: Params$readStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { Accept: params.headers.Accept }; @@ -60572,7 +60569,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace status of the specified VolumeAttachment */ replaceStorageV1VolumeAttachmentStatus: (params: Params$replaceStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise<(Response$replaceStorageV1VolumeAttachmentStatus$Status$200 | Response$replaceStorageV1VolumeAttachmentStatus$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60592,7 +60589,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update status of the specified VolumeAttachment */ patchStorageV1VolumeAttachmentStatus: (params: Params$patchStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/volumeattachments/\${encodeURIComponent(params.parameter.name)}/status\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60613,7 +60610,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1CSIDriverList: (params: Params$watchStorageV1CSIDriverList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -60637,7 +60634,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CSIDriver. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1CSIDriver: (params: Params$watchStorageV1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60661,7 +60658,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1CSINodeList: (params: Params$watchStorageV1CSINodeList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -60685,7 +60682,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CSINode. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1CSINode: (params: Params$watchStorageV1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60709,7 +60706,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1StorageClassList: (params: Params$watchStorageV1StorageClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -60733,7 +60730,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind StorageClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1StorageClass: (params: Params$watchStorageV1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60757,7 +60754,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1VolumeAttachmentList: (params: Params$watchStorageV1VolumeAttachmentList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60781,7 +60778,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1VolumeAttachment: (params: Params$watchStorageV1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1/watch/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1/watch/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60805,7 +60802,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getStorageV1alpha1APIResources: (params: Params$getStorageV1alpha1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/`; const headers = { Accept: params.headers.Accept }; @@ -60817,7 +60814,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind VolumeAttachment */ listStorageV1alpha1VolumeAttachment: (params: Params$listStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60841,7 +60838,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a VolumeAttachment */ createStorageV1alpha1VolumeAttachment: (params: Params$createStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise<(Response$createStorageV1alpha1VolumeAttachment$Status$200 | Response$createStorageV1alpha1VolumeAttachment$Status$201 | Response$createStorageV1alpha1VolumeAttachment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60861,7 +60858,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of VolumeAttachment */ deleteStorageV1alpha1CollectionVolumeAttachment: (params: Params$deleteStorageV1alpha1CollectionVolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60891,7 +60888,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified VolumeAttachment */ readStorageV1alpha1VolumeAttachment: (params: Params$readStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -60909,7 +60906,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified VolumeAttachment */ replaceStorageV1alpha1VolumeAttachment: (params: Params$replaceStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise<(Response$replaceStorageV1alpha1VolumeAttachment$Status$200 | Response$replaceStorageV1alpha1VolumeAttachment$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60929,7 +60926,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a VolumeAttachment */ deleteStorageV1alpha1VolumeAttachment: (params: Params$deleteStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise<(Response$deleteStorageV1alpha1VolumeAttachment$Status$200 | Response$deleteStorageV1alpha1VolumeAttachment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -60951,7 +60948,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified VolumeAttachment */ patchStorageV1alpha1VolumeAttachment: (params: Params$patchStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -60972,7 +60969,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1alpha1VolumeAttachmentList: (params: Params$watchStorageV1alpha1VolumeAttachmentList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/watch/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/watch/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -60996,7 +60993,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1alpha1VolumeAttachment: (params: Params$watchStorageV1alpha1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61020,7 +61017,7 @@ export const createClient = (apiClient: ApiClient, }, /** get available resources */ getStorageV1beta1APIResources: (params: Params$getStorageV1beta1APIResources, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/`; const headers = { Accept: params.headers.Accept }; @@ -61032,7 +61029,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CSIDriver */ listStorageV1beta1CSIDriver: (params: Params$listStorageV1beta1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -61056,7 +61053,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CSIDriver */ createStorageV1beta1CSIDriver: (params: Params$createStorageV1beta1CSIDriver, option?: RequestOption): Promise<(Response$createStorageV1beta1CSIDriver$Status$200 | Response$createStorageV1beta1CSIDriver$Status$201 | Response$createStorageV1beta1CSIDriver$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61076,7 +61073,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CSIDriver */ deleteStorageV1beta1CollectionCSIDriver: (params: Params$deleteStorageV1beta1CollectionCSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61106,7 +61103,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CSIDriver */ readStorageV1beta1CSIDriver: (params: Params$readStorageV1beta1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61124,7 +61121,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CSIDriver */ replaceStorageV1beta1CSIDriver: (params: Params$replaceStorageV1beta1CSIDriver, option?: RequestOption): Promise<(Response$replaceStorageV1beta1CSIDriver$Status$200 | Response$replaceStorageV1beta1CSIDriver$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61144,7 +61141,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CSIDriver */ deleteStorageV1beta1CSIDriver: (params: Params$deleteStorageV1beta1CSIDriver, option?: RequestOption): Promise<(Response$deleteStorageV1beta1CSIDriver$Status$200 | Response$deleteStorageV1beta1CSIDriver$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61166,7 +61163,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CSIDriver */ patchStorageV1beta1CSIDriver: (params: Params$patchStorageV1beta1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61187,7 +61184,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind CSINode */ listStorageV1beta1CSINode: (params: Params$listStorageV1beta1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -61211,7 +61208,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a CSINode */ createStorageV1beta1CSINode: (params: Params$createStorageV1beta1CSINode, option?: RequestOption): Promise<(Response$createStorageV1beta1CSINode$Status$200 | Response$createStorageV1beta1CSINode$Status$201 | Response$createStorageV1beta1CSINode$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61231,7 +61228,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of CSINode */ deleteStorageV1beta1CollectionCSINode: (params: Params$deleteStorageV1beta1CollectionCSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61261,7 +61258,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified CSINode */ readStorageV1beta1CSINode: (params: Params$readStorageV1beta1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61279,7 +61276,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified CSINode */ replaceStorageV1beta1CSINode: (params: Params$replaceStorageV1beta1CSINode, option?: RequestOption): Promise<(Response$replaceStorageV1beta1CSINode$Status$200 | Response$replaceStorageV1beta1CSINode$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61299,7 +61296,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a CSINode */ deleteStorageV1beta1CSINode: (params: Params$deleteStorageV1beta1CSINode, option?: RequestOption): Promise<(Response$deleteStorageV1beta1CSINode$Status$200 | Response$deleteStorageV1beta1CSINode$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61321,7 +61318,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified CSINode */ patchStorageV1beta1CSINode: (params: Params$patchStorageV1beta1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61342,7 +61339,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind StorageClass */ listStorageV1beta1StorageClass: (params: Params$listStorageV1beta1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -61366,7 +61363,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a StorageClass */ createStorageV1beta1StorageClass: (params: Params$createStorageV1beta1StorageClass, option?: RequestOption): Promise<(Response$createStorageV1beta1StorageClass$Status$200 | Response$createStorageV1beta1StorageClass$Status$201 | Response$createStorageV1beta1StorageClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61386,7 +61383,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of StorageClass */ deleteStorageV1beta1CollectionStorageClass: (params: Params$deleteStorageV1beta1CollectionStorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61416,7 +61413,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified StorageClass */ readStorageV1beta1StorageClass: (params: Params$readStorageV1beta1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61434,7 +61431,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified StorageClass */ replaceStorageV1beta1StorageClass: (params: Params$replaceStorageV1beta1StorageClass, option?: RequestOption): Promise<(Response$replaceStorageV1beta1StorageClass$Status$200 | Response$replaceStorageV1beta1StorageClass$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61454,7 +61451,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a StorageClass */ deleteStorageV1beta1StorageClass: (params: Params$deleteStorageV1beta1StorageClass, option?: RequestOption): Promise<(Response$deleteStorageV1beta1StorageClass$Status$200 | Response$deleteStorageV1beta1StorageClass$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61476,7 +61473,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified StorageClass */ patchStorageV1beta1StorageClass: (params: Params$patchStorageV1beta1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61497,7 +61494,7 @@ export const createClient = (apiClient: ApiClient, }, /** list or watch objects of kind VolumeAttachment */ listStorageV1beta1VolumeAttachment: (params: Params$listStorageV1beta1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -61521,7 +61518,7 @@ export const createClient = (apiClient: ApiClient, }, /** create a VolumeAttachment */ createStorageV1beta1VolumeAttachment: (params: Params$createStorageV1beta1VolumeAttachment, option?: RequestOption): Promise<(Response$createStorageV1beta1VolumeAttachment$Status$200 | Response$createStorageV1beta1VolumeAttachment$Status$201 | Response$createStorageV1beta1VolumeAttachment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61541,7 +61538,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete collection of VolumeAttachment */ deleteStorageV1beta1CollectionVolumeAttachment: (params: Params$deleteStorageV1beta1CollectionVolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61571,7 +61568,7 @@ export const createClient = (apiClient: ApiClient, }, /** read the specified VolumeAttachment */ readStorageV1beta1VolumeAttachment: (params: Params$readStorageV1beta1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61589,7 +61586,7 @@ export const createClient = (apiClient: ApiClient, }, /** replace the specified VolumeAttachment */ replaceStorageV1beta1VolumeAttachment: (params: Params$replaceStorageV1beta1VolumeAttachment, option?: RequestOption): Promise<(Response$replaceStorageV1beta1VolumeAttachment$Status$200 | Response$replaceStorageV1beta1VolumeAttachment$Status$201)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61609,7 +61606,7 @@ export const createClient = (apiClient: ApiClient, }, /** delete a VolumeAttachment */ deleteStorageV1beta1VolumeAttachment: (params: Params$deleteStorageV1beta1VolumeAttachment, option?: RequestOption): Promise<(Response$deleteStorageV1beta1VolumeAttachment$Status$200 | Response$deleteStorageV1beta1VolumeAttachment$Status$202)[ResponseContentType]> => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": "*/*", Accept: params.headers.Accept @@ -61631,7 +61628,7 @@ export const createClient = (apiClient: ApiClient, }, /** partially update the specified VolumeAttachment */ patchStorageV1beta1VolumeAttachment: (params: Params$patchStorageV1beta1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: params.headers.Accept @@ -61652,7 +61649,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1beta1CSIDriverList: (params: Params$watchStorageV1beta1CSIDriverList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csidrivers\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csidrivers`; const headers = { Accept: params.headers.Accept }; @@ -61676,7 +61673,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CSIDriver. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1beta1CSIDriver: (params: Params$watchStorageV1beta1CSIDriver, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csidrivers/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csidrivers/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61700,7 +61697,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1beta1CSINodeList: (params: Params$watchStorageV1beta1CSINodeList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csinodes\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csinodes`; const headers = { Accept: params.headers.Accept }; @@ -61724,7 +61721,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind CSINode. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1beta1CSINode: (params: Params$watchStorageV1beta1CSINode, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/csinodes/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/csinodes/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61748,7 +61745,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1beta1StorageClassList: (params: Params$watchStorageV1beta1StorageClassList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/storageclasses\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/storageclasses`; const headers = { Accept: params.headers.Accept }; @@ -61772,7 +61769,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind StorageClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1beta1StorageClass: (params: Params$watchStorageV1beta1StorageClass, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/storageclasses/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/storageclasses/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61796,7 +61793,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. */ watchStorageV1beta1VolumeAttachmentList: (params: Params$watchStorageV1beta1VolumeAttachmentList, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/volumeattachments\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/volumeattachments`; const headers = { Accept: params.headers.Accept }; @@ -61820,7 +61817,7 @@ export const createClient = (apiClient: ApiClient, }, /** watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ watchStorageV1beta1VolumeAttachment: (params: Params$watchStorageV1beta1VolumeAttachment, option?: RequestOption): Promise => { - const url = _baseUrl + \`/apis/storage.k8s.io/v1beta1/watch/volumeattachments/\${encodeURIComponent(params.parameter.name)}\`; + const url = _baseUrl + `/apis/storage.k8s.io/v1beta1/watch/volumeattachments/${encodeURIComponent(params.parameter.name)}`; const headers = { Accept: params.headers.Accept }; @@ -61843,7 +61840,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, logFileListHandler: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/logs/\`; + const url = _baseUrl + `/logs/`; const headers = {}; return apiClient.request({ httpMethod: "GET", @@ -61852,7 +61849,7 @@ export const createClient = (apiClient: ApiClient, }, option); }, logFileHandler: (params: Params$logFileHandler, option?: RequestOption): Promise => { - const url = _baseUrl + \`/logs/\${encodeURIComponent(params.parameter.logpath)}\`; + const url = _baseUrl + `/logs/${encodeURIComponent(params.parameter.logpath)}`; const headers = {}; return apiClient.request({ httpMethod: "GET", @@ -61862,7 +61859,7 @@ export const createClient = (apiClient: ApiClient, }, /** get the code version */ getCodeVersion: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/version/\`; + const url = _baseUrl + `/version/`; const headers = { Accept: "application/json" }; @@ -61876,5 +61873,3 @@ export const createClient = (apiClient: ApiClient, }; type ClientFunction = typeof createClient; export type Client = ReturnType>; -" -`; diff --git a/test/__tests__/functional/__snapshots__/multi-type.test.domain.ts.snap b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/apiClient.ts similarity index 79% rename from test/__tests__/functional/__snapshots__/multi-type.test.domain.ts.snap rename to test/__tests__/functional/__snapshots__/mulit-type-test.domain/apiClient.ts index 1fe8d596..2d356988 100644 --- a/test/__tests__/functional/__snapshots__/multi-type.test.domain.ts.snap +++ b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/apiClient.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Multi Type > apiClient 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.0.1 // @@ -61,14 +58,14 @@ export interface ApiClient { request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; } export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); + const _baseUrl = baseUrl.replace(/\/$/, ""); return { /** * operationId: putAnyOf * Request URI: /pets */ putAnyOf: (params: Params$putAnyOf, option?: RequestOption): Promise => { - const url = _baseUrl + \`/pets\`; + const url = _baseUrl + `/pets`; const headers = { "Content-Type": "application/json" }; @@ -84,7 +81,7 @@ export const createClient = (apiClient: ApiClient, * Request URI: /pets */ patchOneOf: (params: Params$patchOneOf, option?: RequestOption): Promise => { - const url = _baseUrl + \`/pets\`; + const url = _baseUrl + `/pets`; const headers = { "Content-Type": "application/json" }; @@ -99,31 +96,3 @@ export const createClient = (apiClient: ApiClient, }; type ClientFunction = typeof createClient; export type Client = ReturnType>; -" -`; - -exports[`Multi Type > types 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.0.1 -// -// License : MIT -// - - -export namespace Schemas { - export interface Pet { - pet_type: string; - } - export type Dog = Schemas.Pet & { - bark?: boolean; - breed?: "Dingo" | "Husky" | "Retriever" | "Shepherd"; - }; - export type Cat = Schemas.Pet & { - hunts?: boolean; - age?: number; - }; -} -" -`; diff --git a/test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts new file mode 100644 index 00000000..8c01fd09 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts @@ -0,0 +1,22 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.0.1 +// +// License : MIT +// + + +export namespace Schemas { + export interface Pet { + pet_type: string; + } + export type Dog = Schemas.Pet & { + bark?: boolean; + breed?: "Dingo" | "Husky" | "Retriever" | "Shepherd"; + }; + export type Cat = Schemas.Pet & { + hunts?: boolean; + age?: number; + }; +} diff --git a/test/__tests__/functional/__snapshots__/parameter-test.ts.snap b/test/__tests__/functional/__snapshots__/parameter/api.test.domain.json similarity index 69% rename from test/__tests__/functional/__snapshots__/parameter-test.ts.snap rename to test/__tests__/functional/__snapshots__/parameter/api.test.domain.json index 52aa70e2..68ed9e52 100644 --- a/test/__tests__/functional/__snapshots__/parameter-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/parameter/api.test.domain.json @@ -1,7 +1,4 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Parameter > api.test.domain 1`] = ` -"[ +[ { "operationId": "getIncludeLocalReference", "convertedParams": { @@ -667,329 +664,4 @@ exports[`Parameter > api.test.domain 1`] = ` } } } -]" -`; - -exports[`Parameter > infer.domain 1`] = `"[]"`; - -exports[`Parameter > required フィールドを省略したパスパラメータは pickedParameters で required: true として扱われること 1`] = ` -"[ - { - "operationId": "getItemById", - "convertedParams": { - "escapedOperationId": "getItemById", - "argumentParamsTypeDeclaration": "Params$getItemById", - "functionName": "getItemById", - "requestContentTypeName": "RequestContentType$getItemById", - "responseContentTypeName": "ResponseContentType$getItemById", - "parameterName": "Parameter$getItemById", - "requestBodyName": "RequestBody$getItemById", - "hasRequestBody": false, - "hasParameter": true, - "pickedParameters": [ - { - "name": "id", - "in": "path" - } - ], - "requestContentTypes": [], - "responseSuccessNames": [ - "Response$getItemById$Status$200" - ], - "responseFirstSuccessName": "Response$getItemById$Status$200", - "has2OrMoreSuccessNames": false, - "responseErrorNames": [], - "has2OrMoreRequestContentTypes": false, - "successResponseContentTypes": [ - "application/json" - ], - "successResponseFirstContentType": "application/json", - "has2OrMoreSuccessResponseContentTypes": false, - "hasAdditionalHeaders": false, - "hasQueryParameters": false - }, - "operationParams": { - "httpMethod": "get", - "requestUri": "/items/{id}", - "comment": "required フィールドを省略したパスパラメータ", - "deprecated": false, - "parameters": [ - { - "in": "path", - "name": "id", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - } - } - } - } - } - } - } - } - }, - { - "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" - }, - { - "name": "path", - "in": "path" - }, - { - "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" - } - }, - { - "in": "path", - "name": "path", - "schema": { - "type": "string" - } - }, - { - "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" - }, - { - "name": "path", - "in": "path" - }, - { - "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" - } - }, - { - "in": "path", - "name": "path", - "schema": { - "type": "string" - } - }, - { - "in": "query", - "name": "path", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK" - } - } - } - }, - { - "operationId": "getUserPost", - "convertedParams": { - "escapedOperationId": "getUserPost", - "argumentParamsTypeDeclaration": "Params$getUserPost", - "functionName": "getUserPost", - "requestContentTypeName": "RequestContentType$getUserPost", - "responseContentTypeName": "ResponseContentType$getUserPost", - "parameterName": "Parameter$getUserPost", - "requestBodyName": "RequestBody$getUserPost", - "hasRequestBody": false, - "hasParameter": true, - "pickedParameters": [ - { - "name": "userId", - "in": "path" - }, - { - "name": "postId", - "in": "path" - }, - { - "name": "include", - "in": "query" - } - ], - "requestContentTypes": [], - "responseSuccessNames": [ - "Response$getUserPost$Status$200" - ], - "responseFirstSuccessName": "Response$getUserPost$Status$200", - "has2OrMoreSuccessNames": false, - "responseErrorNames": [], - "has2OrMoreRequestContentTypes": false, - "successResponseContentTypes": [ - "application/json" - ], - "successResponseFirstContentType": "application/json", - "has2OrMoreSuccessResponseContentTypes": false, - "hasAdditionalHeaders": false, - "hasQueryParameters": true - }, - "operationParams": { - "httpMethod": "get", - "requestUri": "/users/{userId}/posts/{postId}", - "comment": "複数のパスパラメータで required を省略したケース", - "deprecated": false, - "parameters": [ - { - "in": "path", - "name": "userId", - "schema": { - "type": "string" - } - }, - { - "in": "path", - "name": "postId", - "schema": { - "type": "integer" - } - }, - { - "in": "query", - "name": "include", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "userId": { - "type": "string" - }, - "postId": { - "type": "integer" - } - } - } - } - } - } - } - } - } -]" -`; +] \ No newline at end of file diff --git a/test/__tests__/functional/__snapshots__/parameter/infer.domain.json b/test/__tests__/functional/__snapshots__/parameter/infer.domain.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/parameter/infer.domain.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/test/__tests__/functional/__snapshots__/parameter/path-parameter.json b/test/__tests__/functional/__snapshots__/parameter/path-parameter.json new file mode 100644 index 00000000..ee36a22e --- /dev/null +++ b/test/__tests__/functional/__snapshots__/parameter/path-parameter.json @@ -0,0 +1,319 @@ +[ + { + "operationId": "getItemById", + "convertedParams": { + "escapedOperationId": "getItemById", + "argumentParamsTypeDeclaration": "Params$getItemById", + "functionName": "getItemById", + "requestContentTypeName": "RequestContentType$getItemById", + "responseContentTypeName": "ResponseContentType$getItemById", + "parameterName": "Parameter$getItemById", + "requestBodyName": "RequestBody$getItemById", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "id", + "in": "path" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getItemById$Status$200" + ], + "responseFirstSuccessName": "Response$getItemById$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": false + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/items/{id}", + "comment": "required フィールドを省略したパスパラメータ", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "id", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + } + } + } + } + } + } + } + }, + { + "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" + }, + { + "name": "path", + "in": "path" + }, + { + "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" + } + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + } + }, + { + "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" + }, + { + "name": "path", + "in": "path" + }, + { + "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" + } + }, + { + "in": "path", + "name": "path", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "path", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK" + } + } + } + }, + { + "operationId": "getUserPost", + "convertedParams": { + "escapedOperationId": "getUserPost", + "argumentParamsTypeDeclaration": "Params$getUserPost", + "functionName": "getUserPost", + "requestContentTypeName": "RequestContentType$getUserPost", + "responseContentTypeName": "ResponseContentType$getUserPost", + "parameterName": "Parameter$getUserPost", + "requestBodyName": "RequestBody$getUserPost", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "userId", + "in": "path" + }, + { + "name": "postId", + "in": "path" + }, + { + "name": "include", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getUserPost$Status$200" + ], + "responseFirstSuccessName": "Response$getUserPost$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/users/{userId}/posts/{postId}", + "comment": "複数のパスパラメータで required を省略したケース", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "userId", + "schema": { + "type": "string" + } + }, + { + "in": "path", + "name": "postId", + "schema": { + "type": "integer" + } + }, + { + "in": "query", + "name": "include", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "userId": { + "type": "string" + }, + "postId": { + "type": "integer" + } + } + } + } + } + } + } + } + } +] \ No newline at end of file diff --git a/test/__tests__/functional/__snapshots__/split/apiClient.ts b/test/__tests__/functional/__snapshots__/split/apiClient.ts new file mode 100644 index 00000000..4fb52a4a --- /dev/null +++ b/test/__tests__/functional/__snapshots__/split/apiClient.ts @@ -0,0 +1,284 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +import { Schemas } from "./types"; +export interface Parameter$getIncludeLocalReference { + /** parameters.StringQueryParams */ + StringQuery: string; +} +export interface Response$getIncludeLocalReference$Status$200 { + "application/json": { + meta: string; + }; +} +export interface Parameter$getIncludeRemoteReference { + /** remote reference parameter */ + IncludeRemoteReference: number; +} +export interface RequestBody$getIncludeRemoteReference { + "application/json": string; +} +export interface Parameter$getFullRemoteReference { + /** Full Remote Reference */ + FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; +} +export interface Response$getFullRemoteReference$Status$200 { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; +} +export interface Response$i$have$dot$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Response$getReferenceItems$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Parameter$searchBook { + "from.publishedAt"?: number; + "book.name": string; +} +export interface Response$searchBook$Status$200 { + "application/json": { + id?: number; + bookTitle?: string; + }; +} +export interface Parameter$getBookById { + /** Book ID */ + id: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.ObjectHasPropertiesType; +} +export interface Parameter$deleteBook { + /** Number Book ID */ + id: number; +} +export interface Response$deleteBook$Status$200 { + "application/json": { + status?: "ok"; + }; +} +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + /** + * operationId: getIncludeLocalReference + * Request URI: /get/IncludeLocalReference + */ + getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + /** + * operationId: getIncludeRemoteReference + * Request URI: /get/IncludeRemoteReference + */ + getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + }, + /** + * operationId: getFullRemoteReference + * Request URI: /FullRemoteReference + */ + getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + /** + * operationId: i.have.dot + * Request URI: /i/have/dot + */ + i$have$dot: (option?: RequestOption): Promise => { + const url = _baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + /** + * operationId: getReferenceItems + * Request URI: /get/reference/items + */ + getReferenceItems: (option?: RequestOption): Promise => { + const url = _baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + /** + * operationId: searchBook + * Request URI: /get/search/{book.name} + */ + searchBook: (params: Params$searchBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + /** + * operationId: getBookById + * Request URI: /get/books/{id} + */ + getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + /** + * operationId: deleteBook + * Request URI: /get/books/{id} + */ + deleteBook: (params: Params$deleteBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/split/types.ts b/test/__tests__/functional/__snapshots__/split/types.ts new file mode 100644 index 00000000..517f915b --- /dev/null +++ b/test/__tests__/functional/__snapshots__/split/types.ts @@ -0,0 +1,296 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + /** String Literal */ + export type StringType = string; + export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; + export type StringDateType = string; + export type StringDateTimeType = string; + export type StringPasswordType = string; + export type StringByteType = string; + export type StringBinaryType = string; + export type StringWithPatternType = string; + /** Number Literal */ + export type NumberType = number; + export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; + export type NumberInt32Type = number; + export type NumberInt64Type = number; + export type NumberFloat = number; + export type NumberDouble = number; + /** Boolean Literal */ + export type BooleanType = boolean; + export type BooleanEnumType = true; + export type BooleanEnumType2 = false; + export type BooleanEnumType3 = true | false; + export type ArrayStringType = string[]; + export type ArrayNumberType = number[]; + export type ArrayBooleanType = boolean[]; + export interface ObjectEmptyPropertiesType { + } + export interface ObjectHasPropertiesType { + stringType?: string; + numberType?: number; + booleanType?: boolean; + arrayType?: string; + objectType?: { + requiredStringType: string; + }; + } + export type OneOfType = string | number | {}; + export type AllOfType = { + A?: string; + } & { + B?: string; + }; + export type LocalRefStringType = Schemas.StringType; + export type LocalRefNumberType = Schemas.NumberType; + export type LocalRefBooleanType = Schemas.BooleanType; + export type LocalRefArrayStringType = Schemas.BooleanType; + export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; + export interface LocalRefObjectProperties { + stringType: Schemas.StringType; + numberType: Schemas.NumberType; + booleanType: Schemas.BooleanType; + arrayType: Schemas.BooleanType; + objectType: Schemas.ObjectHasPropertiesType; + } + export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; + export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; + export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; + export type UnresolvedTarget1 = boolean; + export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; + export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; + export type UnresolvedTarget3 = number; + export interface LocalReferenceBeforeResolvedSchema3 { + unresolvedTarget4?: Schemas.UnresolvedTarget4; + } + export interface UnresolvedTarget4 { + unresolvedTarget5?: Schemas.UnresolvedTarget5; + } + export type UnresolvedTarget5 = string; + export type RemoteString = string; + export type RemoteRefString = Schemas.RemoteString; + export namespace Level1 { + /** Level 1 */ + export type RemoteBoolean = boolean; + export namespace Level2 { + /** Level 2 */ + export type RemoteNumber = number; + export namespace Level3 { + /** Level 3 */ + export type RemoteArray = string[]; + export namespace Level4 { + /** Level 4 */ + export interface RemoteObject { + A?: string; + B?: number; + } + } + } + } + } + /** Level 1 */ + export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; + /** Level 2 */ + export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; + /** Level 3 */ + export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; + /** Level 4 */ + export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; + export type NullableString = string | null; + export type NullableBoolean = boolean | null; + export type NullableNumber = number | null; + export type NullableArray = string[] | null; + export type NullableObject = { + gt?: string; + } | null; + export namespace DirectRef { + export type ForHeader = string; + export interface ForResponse { + forResponse?: string; + } + export type ForParameters = string; + export interface ForRequestBody { + a?: string; + } + } + export namespace FullRemoteReference { + export type ForParameters = string; + } + export interface Child { + id: string; + /** child name */ + name: string; + } + export interface Item { + name: string; + children: Child[]; + } +} +export namespace Headers { + export type StringHeader = string; + export type A = number; + export namespace Level1 { + export type B = string; + } + export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; +} +export namespace Responses { + /** + * Status Code 100 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 + */ + export namespace Continue { } + /** + * Status Code 101 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 + */ + export namespace SwitchingProtocol { } + /** Type Reference - string */ + export namespace LocalReferenceStringDateTimeType { + export interface Content { + "application/json": Schemas.StringDateTimeType; + } + } + /** Local Reference - object */ + export namespace LocalReferenceObjectType { + export interface Content { + "application/json": Schemas.ObjectHasPropertiesType; + } + } + /** Response -> Schema */ + export namespace ReferenceOfResponseToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForResponse; + } + } + /** response A definition */ + export namespace ResponseA { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + export namespace Level1 { + /** response B definition */ + export namespace ResponseB { + export interface Content { + "application/json": { + name?: "responseB"; + }; + } + } + export namespace Level2 { + /** response C definition */ + export namespace ResponseC { + export interface Content { + "application/json": { + name?: "responseC"; + }; + } + } + } + } + export namespace ForPathItems { + /** response A definition */ + export namespace FullRemoteReference { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + } +} +export namespace Parameters { + /** parameters.StringQueryParams */ + export type StringQueryParams = string; + /** parameters.NumberQueryParams */ + export type NumberQueryParams = number; + /** parameters.StringQueryParams */ + export type StringHeaderParams = string; + export type A = number; + export type RemoteReferenceA = Parameters.A; + export namespace level1 { + export type B = string; + } + export type RemoteReferenceB = Parameters.level1.B; + /** parameters -> schemas */ + export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; + /** deepObject */ + export type DeepObjectParameter = { + [key: string]: { + gt?: string; + gte?: string; + lt?: string; + lte?: string; + any?: string | number | boolean; + }; + }; +} +export namespace RequestBodies { + /** Request body string type */ + export namespace StringType { + export interface Content { + "application/json": string; + } + } + /** Request body Local reference string type */ + export namespace LocalReferenceStringType { + export interface Content { + "application/json": Schemas.StringHasEnumType; + } + } + /** requestBodies -> schemas */ + export namespace ReferenceOfRequestBodyToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForRequestBody; + } + } + /** Remote Request body A */ + export namespace RequestBodyA { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level1 { + /** Remote Request body B */ + export namespace RequestBodyB { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level2 { + /** Remote Request body C */ + export namespace RequestBodyC { + export interface Content { + "application/json": { + body?: string; + }; + } + } + } + } +} diff --git a/test/__tests__/functional/__snapshots__/template-only-test.ts.snap b/test/__tests__/functional/__snapshots__/template-only-test.ts.snap deleted file mode 100644 index 259f5c2f..00000000 --- a/test/__tests__/functional/__snapshots__/template-only-test.ts.snap +++ /dev/null @@ -1,438 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Template Only > api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - }, - getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - i$have$dot: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getReferenceItems: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - searchBook: (params: Params$searchBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - deleteBook: (params: Params$deleteBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Template Only > async-api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => T; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] => { - const url = _baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): void => { - const url = _baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - }, - getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] => { - const url = _baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - i$have$dot: (option?: RequestOption): Response$i$have$dot$Status$200["application/json"] => { - const url = _baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getReferenceItems: (option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] => { - const url = _baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - searchBook: (params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] => { - const url = _baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getBookById: (params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - deleteBook: (params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Template Only > infer.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = void; -export namespace ErrorResponse { } -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => T; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return {}; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; diff --git a/test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts b/test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts new file mode 100644 index 00000000..b8dd7581 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts @@ -0,0 +1,189 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + }, + getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + i$have$dot: (option?: RequestOption): Promise => { + const url = _baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getReferenceItems: (option?: RequestOption): Promise => { + const url = _baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + searchBook: (params: Params$searchBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + deleteBook: (params: Params$deleteBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/template-only/infer.domain.ts b/test/__tests__/functional/__snapshots__/template-only/infer.domain.ts new file mode 100644 index 00000000..65e99865 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/template-only/infer.domain.ts @@ -0,0 +1,47 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = void; +export namespace ErrorResponse { } +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => T; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return {}; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts b/test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts new file mode 100644 index 00000000..b98c4ce8 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts @@ -0,0 +1,189 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => T; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] => { + const url = _baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): void => { + const url = _baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + }, + getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] => { + const url = _baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + i$have$dot: (option?: RequestOption): Response$i$have$dot$Status$200["application/json"] => { + const url = _baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getReferenceItems: (option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] => { + const url = _baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + searchBook: (params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] => { + const url = _baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getBookById: (params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + deleteBook: (params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts b/test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts new file mode 100644 index 00000000..517f915b --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts @@ -0,0 +1,296 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + /** String Literal */ + export type StringType = string; + export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; + export type StringDateType = string; + export type StringDateTimeType = string; + export type StringPasswordType = string; + export type StringByteType = string; + export type StringBinaryType = string; + export type StringWithPatternType = string; + /** Number Literal */ + export type NumberType = number; + export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; + export type NumberInt32Type = number; + export type NumberInt64Type = number; + export type NumberFloat = number; + export type NumberDouble = number; + /** Boolean Literal */ + export type BooleanType = boolean; + export type BooleanEnumType = true; + export type BooleanEnumType2 = false; + export type BooleanEnumType3 = true | false; + export type ArrayStringType = string[]; + export type ArrayNumberType = number[]; + export type ArrayBooleanType = boolean[]; + export interface ObjectEmptyPropertiesType { + } + export interface ObjectHasPropertiesType { + stringType?: string; + numberType?: number; + booleanType?: boolean; + arrayType?: string; + objectType?: { + requiredStringType: string; + }; + } + export type OneOfType = string | number | {}; + export type AllOfType = { + A?: string; + } & { + B?: string; + }; + export type LocalRefStringType = Schemas.StringType; + export type LocalRefNumberType = Schemas.NumberType; + export type LocalRefBooleanType = Schemas.BooleanType; + export type LocalRefArrayStringType = Schemas.BooleanType; + export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; + export interface LocalRefObjectProperties { + stringType: Schemas.StringType; + numberType: Schemas.NumberType; + booleanType: Schemas.BooleanType; + arrayType: Schemas.BooleanType; + objectType: Schemas.ObjectHasPropertiesType; + } + export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; + export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; + export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; + export type UnresolvedTarget1 = boolean; + export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; + export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; + export type UnresolvedTarget3 = number; + export interface LocalReferenceBeforeResolvedSchema3 { + unresolvedTarget4?: Schemas.UnresolvedTarget4; + } + export interface UnresolvedTarget4 { + unresolvedTarget5?: Schemas.UnresolvedTarget5; + } + export type UnresolvedTarget5 = string; + export type RemoteString = string; + export type RemoteRefString = Schemas.RemoteString; + export namespace Level1 { + /** Level 1 */ + export type RemoteBoolean = boolean; + export namespace Level2 { + /** Level 2 */ + export type RemoteNumber = number; + export namespace Level3 { + /** Level 3 */ + export type RemoteArray = string[]; + export namespace Level4 { + /** Level 4 */ + export interface RemoteObject { + A?: string; + B?: number; + } + } + } + } + } + /** Level 1 */ + export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; + /** Level 2 */ + export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; + /** Level 3 */ + export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; + /** Level 4 */ + export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; + export type NullableString = string | null; + export type NullableBoolean = boolean | null; + export type NullableNumber = number | null; + export type NullableArray = string[] | null; + export type NullableObject = { + gt?: string; + } | null; + export namespace DirectRef { + export type ForHeader = string; + export interface ForResponse { + forResponse?: string; + } + export type ForParameters = string; + export interface ForRequestBody { + a?: string; + } + } + export namespace FullRemoteReference { + export type ForParameters = string; + } + export interface Child { + id: string; + /** child name */ + name: string; + } + export interface Item { + name: string; + children: Child[]; + } +} +export namespace Headers { + export type StringHeader = string; + export type A = number; + export namespace Level1 { + export type B = string; + } + export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; +} +export namespace Responses { + /** + * Status Code 100 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 + */ + export namespace Continue { } + /** + * Status Code 101 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 + */ + export namespace SwitchingProtocol { } + /** Type Reference - string */ + export namespace LocalReferenceStringDateTimeType { + export interface Content { + "application/json": Schemas.StringDateTimeType; + } + } + /** Local Reference - object */ + export namespace LocalReferenceObjectType { + export interface Content { + "application/json": Schemas.ObjectHasPropertiesType; + } + } + /** Response -> Schema */ + export namespace ReferenceOfResponseToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForResponse; + } + } + /** response A definition */ + export namespace ResponseA { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + export namespace Level1 { + /** response B definition */ + export namespace ResponseB { + export interface Content { + "application/json": { + name?: "responseB"; + }; + } + } + export namespace Level2 { + /** response C definition */ + export namespace ResponseC { + export interface Content { + "application/json": { + name?: "responseC"; + }; + } + } + } + } + export namespace ForPathItems { + /** response A definition */ + export namespace FullRemoteReference { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + } +} +export namespace Parameters { + /** parameters.StringQueryParams */ + export type StringQueryParams = string; + /** parameters.NumberQueryParams */ + export type NumberQueryParams = number; + /** parameters.StringQueryParams */ + export type StringHeaderParams = string; + export type A = number; + export type RemoteReferenceA = Parameters.A; + export namespace level1 { + export type B = string; + } + export type RemoteReferenceB = Parameters.level1.B; + /** parameters -> schemas */ + export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; + /** deepObject */ + export type DeepObjectParameter = { + [key: string]: { + gt?: string; + gte?: string; + lt?: string; + lte?: string; + any?: string | number | boolean; + }; + }; +} +export namespace RequestBodies { + /** Request body string type */ + export namespace StringType { + export interface Content { + "application/json": string; + } + } + /** Request body Local reference string type */ + export namespace LocalReferenceStringType { + export interface Content { + "application/json": Schemas.StringHasEnumType; + } + } + /** requestBodies -> schemas */ + export namespace ReferenceOfRequestBodyToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForRequestBody; + } + } + /** Remote Request body A */ + export namespace RequestBodyA { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level1 { + /** Remote Request body B */ + export namespace RequestBodyB { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level2 { + /** Remote Request body C */ + export namespace RequestBodyC { + export interface Content { + "application/json": { + body?: string; + }; + } + } + } + } +} diff --git a/test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts b/test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts new file mode 100644 index 00000000..035100ef --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts @@ -0,0 +1,32 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export type InferArrayEmptyItems = {}[]; + export type InferArrayType = string[]; + export interface InferObjectItem { + description: any; + } + export interface InferObjectHasAnyProp { + filed?: any; + } + export interface InferObject { + filed?: string; + } + export type InferStringEnum = "a" | "b" | "c"; + export type InferAnyNullable = null; + export interface OptionalPropertiesAndAdditionalProperties { + body?: { + key?: string; + description?: string; + } & { + [key: string]: string; + }; + } +} diff --git a/test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts b/test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts new file mode 100644 index 00000000..3ff215ee --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts @@ -0,0 +1,30 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.0.0 +// +// License : MIT +// + + +export namespace Schemas { + export interface Foo { + bar?: { + baz?: string; + bazbaz?: { + hoge?: number; + }; + }; + } + export type Bar = { + baz?: string; + bazbaz?: { + hoge?: number; + }; + }; + export type Baz = string; + export type Hoge = number; + export type BazBaz = { + hoge?: number; + }; +} diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap b/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap deleted file mode 100644 index b02f0495..00000000 --- a/test/__tests__/functional/__snapshots__/typedef-with-template-test.ts.snap +++ /dev/null @@ -1,1916 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Typedef with template > api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - /** String Literal */ - export type StringType = string; - export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; - export type StringDateType = string; - export type StringDateTimeType = string; - export type StringPasswordType = string; - export type StringByteType = string; - export type StringBinaryType = string; - export type StringWithPatternType = string; - /** Number Literal */ - export type NumberType = number; - export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; - export type NumberInt32Type = number; - export type NumberInt64Type = number; - export type NumberFloat = number; - export type NumberDouble = number; - /** Boolean Literal */ - export type BooleanType = boolean; - export type BooleanEnumType = true; - export type BooleanEnumType2 = false; - export type BooleanEnumType3 = true | false; - export type ArrayStringType = string[]; - export type ArrayNumberType = number[]; - export type ArrayBooleanType = boolean[]; - export interface ObjectEmptyPropertiesType { - } - export interface ObjectHasPropertiesType { - stringType?: string; - numberType?: number; - booleanType?: boolean; - arrayType?: string; - objectType?: { - requiredStringType: string; - }; - } - export type OneOfType = string | number | {}; - export type AllOfType = { - A?: string; - } & { - B?: string; - }; - export type LocalRefStringType = Schemas.StringType; - export type LocalRefNumberType = Schemas.NumberType; - export type LocalRefBooleanType = Schemas.BooleanType; - export type LocalRefArrayStringType = Schemas.BooleanType; - export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; - export interface LocalRefObjectProperties { - stringType: Schemas.StringType; - numberType: Schemas.NumberType; - booleanType: Schemas.BooleanType; - arrayType: Schemas.BooleanType; - objectType: Schemas.ObjectHasPropertiesType; - } - export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; - export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; - export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; - export type UnresolvedTarget1 = boolean; - export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; - export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; - export type UnresolvedTarget3 = number; - export interface LocalReferenceBeforeResolvedSchema3 { - unresolvedTarget4?: Schemas.UnresolvedTarget4; - } - export interface UnresolvedTarget4 { - unresolvedTarget5?: Schemas.UnresolvedTarget5; - } - export type UnresolvedTarget5 = string; - export type RemoteString = string; - export type RemoteRefString = Schemas.RemoteString; - export namespace Level1 { - /** Level 1 */ - export type RemoteBoolean = boolean; - export namespace Level2 { - /** Level 2 */ - export type RemoteNumber = number; - export namespace Level3 { - /** Level 3 */ - export type RemoteArray = string[]; - export namespace Level4 { - /** Level 4 */ - export interface RemoteObject { - A?: string; - B?: number; - } - } - } - } - } - /** Level 1 */ - export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; - /** Level 2 */ - export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; - /** Level 3 */ - export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; - /** Level 4 */ - export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; - export type NullableString = string | null; - export type NullableBoolean = boolean | null; - export type NullableNumber = number | null; - export type NullableArray = string[] | null; - export type NullableObject = { - gt?: string; - } | null; - export namespace DirectRef { - export type ForHeader = string; - export interface ForResponse { - forResponse?: string; - } - export type ForParameters = string; - export interface ForRequestBody { - a?: string; - } - } - export namespace FullRemoteReference { - export type ForParameters = string; - } - export interface Child { - id: string; - /** child name */ - name: string; - } - export interface Item { - name: string; - children: Child[]; - } -} -export namespace Headers { - export type StringHeader = string; - export type A = number; - export namespace Level1 { - export type B = string; - } - export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; -} -export namespace Responses { - /** - * Status Code 100 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 - */ - export namespace Continue { } - /** - * Status Code 101 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 - */ - export namespace SwitchingProtocol { } - /** Type Reference - string */ - export namespace LocalReferenceStringDateTimeType { - export interface Content { - "application/json": Schemas.StringDateTimeType; - } - } - /** Local Reference - object */ - export namespace LocalReferenceObjectType { - export interface Content { - "application/json": Schemas.ObjectHasPropertiesType; - } - } - /** Response -> Schema */ - export namespace ReferenceOfResponseToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForResponse; - } - } - /** response A definition */ - export namespace ResponseA { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - export namespace Level1 { - /** response B definition */ - export namespace ResponseB { - export interface Content { - "application/json": { - name?: "responseB"; - }; - } - } - export namespace Level2 { - /** response C definition */ - export namespace ResponseC { - export interface Content { - "application/json": { - name?: "responseC"; - }; - } - } - } - } - export namespace ForPathItems { - /** response A definition */ - export namespace FullRemoteReference { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - } -} -export namespace Parameters { - /** parameters.StringQueryParams */ - export type StringQueryParams = string; - /** parameters.NumberQueryParams */ - export type NumberQueryParams = number; - /** parameters.StringQueryParams */ - export type StringHeaderParams = string; - export type A = number; - export type RemoteReferenceA = Parameters.A; - export namespace level1 { - export type B = string; - } - export type RemoteReferenceB = Parameters.level1.B; - /** parameters -> schemas */ - export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; - /** deepObject */ - export type DeepObjectParameter = { - [key: string]: { - gt?: string; - gte?: string; - lt?: string; - lte?: string; - any?: string | number | boolean; - }; - }; -} -export namespace RequestBodies { - /** Request body string type */ - export namespace StringType { - export interface Content { - "application/json": string; - } - } - /** Request body Local reference string type */ - export namespace LocalReferenceStringType { - export interface Content { - "application/json": Schemas.StringHasEnumType; - } - } - /** requestBodies -> schemas */ - export namespace ReferenceOfRequestBodyToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForRequestBody; - } - } - /** Remote Request body A */ - export namespace RequestBodyA { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level1 { - /** Remote Request body B */ - export namespace RequestBodyB { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level2 { - /** Remote Request body C */ - export namespace RequestBodyC { - export interface Content { - "application/json": { - body?: string; - }; - } - } - } - } -} -export interface Parameter$getIncludeLocalReference { - /** parameters.StringQueryParams */ - StringQuery: string; -} -export interface Response$getIncludeLocalReference$Status$200 { - "application/json": { - meta: string; - }; -} -export interface Parameter$getIncludeRemoteReference { - /** remote reference parameter */ - IncludeRemoteReference: number; -} -export interface RequestBody$getIncludeRemoteReference { - "application/json": string; -} -export interface Parameter$getFullRemoteReference { - /** Full Remote Reference */ - FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; -} -export interface Response$getFullRemoteReference$Status$200 { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; -} -export interface Response$i$have$dot$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Response$getReferenceItems$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Parameter$searchBook { - "from.publishedAt"?: number; - "book.name": string; -} -export interface Response$searchBook$Status$200 { - "application/json": { - id?: number; - bookTitle?: string; - }; -} -export interface Parameter$getBookById { - /** Book ID */ - id: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.ObjectHasPropertiesType; -} -export interface Parameter$deleteBook { - /** Number Book ID */ - id: number; -} -export interface Response$deleteBook$Status$200 { - "application/json": { - status?: "ok"; - }; -} -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - }, - getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - i$have$dot: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getReferenceItems: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - searchBook: (params: Params$searchBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - deleteBook: (params: Params$deleteBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Typedef with template > api.v2.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export type Message = "hello" | "world"; - export type QueryParams = "a" | "b" | "c"; - export interface ReadOnlyParams { - readonly readonlyPropertyKey?: string; - } -} -export interface Parameter$getHelloWorld { - /** query word */ - word: Schemas.QueryParams; -} -export interface Response$getHelloWorld$Status$200 { - "application/json": { - message?: Schemas.Message; - }; -} -export interface RequestBody$postHelloWorldReadonly { -} -export interface Response$postHelloWorldReadonly$Status$200 { - "application/json": { - message?: Schemas.Message; - }; -} -export interface Response$get$undefined$operation$$id$Status$200 { - "application/json": { - /** Undefined operation response */ - message?: string; - }; -} -export type ResponseContentType$getHelloWorld = keyof Response$getHelloWorld$Status$200; -export interface Params$getHelloWorld { - parameter: Parameter$getHelloWorld; -} -export type RequestContentType$postHelloWorldReadonly = keyof RequestBody$postHelloWorldReadonly; -export type ResponseContentType$postHelloWorldReadonly = keyof Response$postHelloWorldReadonly$Status$200; -export interface Params$postHelloWorldReadonly { - requestBody: RequestBody$postHelloWorldReadonly["application/json"]; -} -export type ResponseContentType$get$undefined$operation$$id = keyof Response$get$undefined$operation$$id$Status$200; -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getHelloWorld$Status$200 | Response$postHelloWorldReadonly$Status$200 | Response$get$undefined$operation$$id$Status$200; -export namespace ErrorResponse { - export type getHelloWorld = void; - export type postHelloWorldReadonly = void; - export type get$undefined$operation$$id = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - getHelloWorld: (params: Params$getHelloWorld, option?: RequestOption): Promise => { - const url = _baseUrl + \`/hello/world\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - word: { value: params.parameter.word, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - postHelloWorldReadonly: (params: Params$postHelloWorldReadonly, option?: RequestOption): Promise => { - const url = _baseUrl + \`/hello/world/readonly\`; - const headers = { - "Content-Type": "application/json", - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "POST", - url, - headers, - requestBody: params.requestBody - }, option); - }, - get$undefined$operation$$id: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/undefined/operation/:id\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Typedef with template > async-api.test.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - /** String Literal */ - export type StringType = string; - export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; - export type StringDateType = string; - export type StringDateTimeType = string; - export type StringPasswordType = string; - export type StringByteType = string; - export type StringBinaryType = string; - export type StringWithPatternType = string; - /** Number Literal */ - export type NumberType = number; - export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; - export type NumberInt32Type = number; - export type NumberInt64Type = number; - export type NumberFloat = number; - export type NumberDouble = number; - /** Boolean Literal */ - export type BooleanType = boolean; - export type BooleanEnumType = true; - export type BooleanEnumType2 = false; - export type BooleanEnumType3 = true | false; - export type ArrayStringType = string[]; - export type ArrayNumberType = number[]; - export type ArrayBooleanType = boolean[]; - export interface ObjectEmptyPropertiesType { - } - export interface ObjectHasPropertiesType { - stringType?: string; - numberType?: number; - booleanType?: boolean; - arrayType?: string; - objectType?: { - requiredStringType: string; - }; - } - export type OneOfType = string | number | {}; - export type AllOfType = { - A?: string; - } & { - B?: string; - }; - export type LocalRefStringType = Schemas.StringType; - export type LocalRefNumberType = Schemas.NumberType; - export type LocalRefBooleanType = Schemas.BooleanType; - export type LocalRefArrayStringType = Schemas.BooleanType; - export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; - export interface LocalRefObjectProperties { - stringType: Schemas.StringType; - numberType: Schemas.NumberType; - booleanType: Schemas.BooleanType; - arrayType: Schemas.BooleanType; - objectType: Schemas.ObjectHasPropertiesType; - } - export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; - export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; - export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; - export type UnresolvedTarget1 = boolean; - export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; - export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; - export type UnresolvedTarget3 = number; - export interface LocalReferenceBeforeResolvedSchema3 { - unresolvedTarget4?: Schemas.UnresolvedTarget4; - } - export interface UnresolvedTarget4 { - unresolvedTarget5?: Schemas.UnresolvedTarget5; - } - export type UnresolvedTarget5 = string; - export type RemoteString = string; - export type RemoteRefString = Schemas.RemoteString; - export namespace Level1 { - /** Level 1 */ - export type RemoteBoolean = boolean; - export namespace Level2 { - /** Level 2 */ - export type RemoteNumber = number; - export namespace Level3 { - /** Level 3 */ - export type RemoteArray = string[]; - export namespace Level4 { - /** Level 4 */ - export interface RemoteObject { - A?: string; - B?: number; - } - } - } - } - } - /** Level 1 */ - export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; - /** Level 2 */ - export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; - /** Level 3 */ - export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; - /** Level 4 */ - export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; - export type NullableString = string | null; - export type NullableBoolean = boolean | null; - export type NullableNumber = number | null; - export type NullableArray = string[] | null; - export type NullableObject = { - gt?: string; - } | null; - export namespace DirectRef { - export type ForHeader = string; - export interface ForResponse { - forResponse?: string; - } - export type ForParameters = string; - export interface ForRequestBody { - a?: string; - } - } - export namespace FullRemoteReference { - export type ForParameters = string; - } - export interface Child { - id: string; - /** child name */ - name: string; - } - export interface Item { - name: string; - children: Child[]; - } -} -export namespace Headers { - export type StringHeader = string; - export type A = number; - export namespace Level1 { - export type B = string; - } - export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; -} -export namespace Responses { - /** - * Status Code 100 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 - */ - export namespace Continue { } - /** - * Status Code 101 - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 - */ - export namespace SwitchingProtocol { } - /** Type Reference - string */ - export namespace LocalReferenceStringDateTimeType { - export interface Content { - "application/json": Schemas.StringDateTimeType; - } - } - /** Local Reference - object */ - export namespace LocalReferenceObjectType { - export interface Content { - "application/json": Schemas.ObjectHasPropertiesType; - } - } - /** Response -> Schema */ - export namespace ReferenceOfResponseToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForResponse; - } - } - /** response A definition */ - export namespace ResponseA { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - export namespace Level1 { - /** response B definition */ - export namespace ResponseB { - export interface Content { - "application/json": { - name?: "responseB"; - }; - } - } - export namespace Level2 { - /** response C definition */ - export namespace ResponseC { - export interface Content { - "application/json": { - name?: "responseC"; - }; - } - } - } - } - export namespace ForPathItems { - /** response A definition */ - export namespace FullRemoteReference { - export interface Header { - HeaderA: Headers.A; - HeaderB: string; - } - export interface Content { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; - } - } - } -} -export namespace Parameters { - /** parameters.StringQueryParams */ - export type StringQueryParams = string; - /** parameters.NumberQueryParams */ - export type NumberQueryParams = number; - /** parameters.StringQueryParams */ - export type StringHeaderParams = string; - export type A = number; - export type RemoteReferenceA = Parameters.A; - export namespace level1 { - export type B = string; - } - export type RemoteReferenceB = Parameters.level1.B; - /** parameters -> schemas */ - export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; - /** deepObject */ - export type DeepObjectParameter = { - [key: string]: { - gt?: string; - gte?: string; - lt?: string; - lte?: string; - any?: string | number | boolean; - }; - }; -} -export namespace RequestBodies { - /** Request body string type */ - export namespace StringType { - export interface Content { - "application/json": string; - } - } - /** Request body Local reference string type */ - export namespace LocalReferenceStringType { - export interface Content { - "application/json": Schemas.StringHasEnumType; - } - } - /** requestBodies -> schemas */ - export namespace ReferenceOfRequestBodyToSchema { - export interface Content { - "application/json": Schemas.DirectRef.ForRequestBody; - } - } - /** Remote Request body A */ - export namespace RequestBodyA { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level1 { - /** Remote Request body B */ - export namespace RequestBodyB { - export interface Content { - "application/json": { - body?: string; - }; - } - } - export namespace Level2 { - /** Remote Request body C */ - export namespace RequestBodyC { - export interface Content { - "application/json": { - body?: string; - }; - } - } - } - } -} -export interface Parameter$getIncludeLocalReference { - /** parameters.StringQueryParams */ - StringQuery: string; -} -export interface Response$getIncludeLocalReference$Status$200 { - "application/json": { - meta: string; - }; -} -export interface Parameter$getIncludeRemoteReference { - /** remote reference parameter */ - IncludeRemoteReference: number; -} -export interface RequestBody$getIncludeRemoteReference { - "application/json": string; -} -export interface Parameter$getFullRemoteReference { - /** Full Remote Reference */ - FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; -} -export interface Response$getFullRemoteReference$Status$200 { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; -} -export interface Response$i$have$dot$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Response$getReferenceItems$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Parameter$searchBook { - "from.publishedAt"?: number; - "book.name": string; -} -export interface Response$searchBook$Status$200 { - "application/json": { - id?: number; - bookTitle?: string; - }; -} -export interface Parameter$getBookById { - /** Book ID */ - id: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.ObjectHasPropertiesType; -} -export interface Parameter$deleteBook { - /** Number Book ID */ - id: number; -} -export interface Response$deleteBook$Status$200 { - "application/json": { - status?: "ok"; - }; -} -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => T; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] => { - const url = _baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): void => { - const url = _baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - }, - getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] => { - const url = _baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - i$have$dot: (option?: RequestOption): Response$i$have$dot$Status$200["application/json"] => { - const url = _baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getReferenceItems: (option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] => { - const url = _baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - searchBook: (params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] => { - const url = _baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - getBookById: (params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - deleteBook: (params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Typedef with template > infer.domain 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export type InferArrayEmptyItems = {}[]; - export type InferArrayType = string[]; - export interface InferObjectItem { - description: any; - } - export interface InferObjectHasAnyProp { - filed?: any; - } - export interface InferObject { - filed?: string; - } - export type InferStringEnum = "a" | "b" | "c"; - export type InferAnyNullable = null; - export interface OptionalPropertiesAndAdditionalProperties { - body?: { - key?: string; - description?: string; - } & { - [key: string]: string; - }; - } -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = void; -export namespace ErrorResponse { } -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return {}; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Typedef with template > ref-access 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export interface Book { - author?: { - name?: string; - age?: string; - }; - publisher?: { - name?: any; - address?: string; - }; - metadata: { - description: string; - }; - } - export type Author = { - name?: string; - age?: string; - }; - export type Publisher = { - name?: any; - address?: string; - }; -} -export interface Parameter$getBook { - /** Book ID */ - id: string; -} -export interface Response$getBook$Status$200 { - "application/json": Schemas.Book; -} -export interface Parameter$getDescription { - /** Book ID */ - id: string; -} -export interface Response$getDescription$Status$200 { - "application/json": string; -} -export interface Parameter$getAuthor { - /** Author Id */ - id: string; -} -export interface Response$getAuthor$Status$200 { - "application/json": { - name?: string; - age?: string; - }; -} -export interface Parameter$getPublisher { - /** Publisher ID */ - id: string; -} -export interface Response$getPublisher$Status$200 { - "application/json": Schemas.Publisher; -} -export interface RequestBody$createPublisher { - "application/x-www-form-urlencoded": { - color?: string[]; - }; -} -export interface Response$createPublisher$Status$200 { - "application/json": { - status?: string; - }; -} -export interface RequestBody$createPublisherV2 { - "application/x-www-form-urlencoded": { - color?: string[]; - }; - "application/json": { - color?: string[]; - }; -} -export interface Response$createPublisherV2$Status$200 { - "application/json": { - status?: string; - }; -} -export interface Parameter$getBookById { - /** Author ID */ - authorId: string; - /** Book ID */ - bookId: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.Book; -} -export type ResponseContentType$getBook = keyof Response$getBook$Status$200; -export interface Params$getBook { - parameter: Parameter$getBook; -} -export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; -export interface Params$getDescription { - parameter: Parameter$getDescription; -} -export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; -export interface Params$getAuthor { - parameter: Parameter$getAuthor; -} -export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; -export interface Params$getPublisher { - parameter: Parameter$getPublisher; -} -export type RequestContentType$createPublisher = keyof RequestBody$createPublisher; -export type ResponseContentType$createPublisher = keyof Response$createPublisher$Status$200; -export interface Params$createPublisher { - requestBody: RequestBody$createPublisher["application/x-www-form-urlencoded"]; -} -export type RequestContentType$createPublisherV2 = keyof RequestBody$createPublisherV2; -export type ResponseContentType$createPublisherV2 = keyof Response$createPublisherV2$Status$200; -export interface Params$createPublisherV2 { - headers: { - "Content-Type": T; - }; - requestBody: RequestBody$createPublisherV2[T]; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200 | Response$createPublisher$Status$200 | Response$createPublisherV2$Status$200 | Response$getBookById$Status$200; -export namespace ErrorResponse { - export type getBook = void; - export type getDescription = void; - export type getAuthor = void; - export type getPublisher = void; - export type createPublisher = void; - export type createPublisherV2 = void; - export type getBookById = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - getBook: (params: Params$getBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getDescription: (params: Params$getDescription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}/description\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getAuthor: (params: Params$getAuthor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/author/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getPublisher: (params: Params$getPublisher, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/publisher/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - createPublisher: (params: Params$createPublisher, option?: RequestOption): Promise => { - const url = _baseUrl + \`/create/publisher/{id}\`; - const headers = { - "Content-Type": "application/x-www-form-urlencoded", - Accept: "application/json" - }; - const requestEncodings: Record> = { - "application/x-www-form-urlencoded": { - "color": { - "style": "form", - "explode": false - } - } - }; - return apiClient.request({ - httpMethod: "POST", - url, - headers, - requestBody: params.requestBody, - requestBodyEncoding: requestEncodings["application/x-www-form-urlencoded"] - }, option); - }, - createPublisherV2: (params: Params$createPublisherV2, option?: RequestOption): Promise => { - const url = _baseUrl + \`/create/v2/publisher/{id}\`; - const headers = { - "Content-Type": params.headers["Content-Type"], - Accept: "application/json" - }; - const requestEncodings: Record> = { - "application/x-www-form-urlencoded": { - "color": { - "style": "form", - "explode": false - } - }, - "application/json": { - "color": { - "style": "form", - "explode": false - } - } - }; - return apiClient.request({ - httpMethod: "POST", - url, - headers, - requestBody: params.requestBody, - requestBodyEncoding: requestEncodings[params.headers["Content-Type"]] - }, option); - }, - getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { - const url = _baseUrl + \`/author/author-\${encodeURIComponent(params.parameter.authorId)}.a.\${encodeURIComponent(params.parameter.bookId)}.b/book/\${encodeURIComponent(params.parameter.bookId)}.json\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Typedef with template > remote-ref-access 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT -// - - -export namespace Schemas { - export interface Book { - author?: { - name?: string; - age?: string; - }; - publisher?: { - name?: any; - address?: string; - }; - metadata: { - description: string; - }; - } - export namespace Book { - export namespace properties { - export interface author { - name?: string; - age?: string; - } - export interface publisher { - name?: any; - address?: string; - } - export namespace metadata { - export namespace properties { - export type description = string; - } - } - } - } - export type Author = Schemas.Book.properties.author; - export type Publisher = Schemas.Book.properties.publisher; -} -export interface Parameter$getBook { - /** Book ID */ - id: string; -} -export interface Response$getBook$Status$200 { - "application/json": Schemas.Book; -} -export interface Parameter$getDescription { - /** Book ID */ - id: string; -} -export interface Response$getDescription$Status$200 { - "application/json": Schemas.Book.properties.metadata.properties.description; -} -export interface Parameter$getAuthor { - /** Author Id */ - id: string; -} -export interface Response$getAuthor$Status$200 { - "application/json": Schemas.Author; -} -export interface Parameter$getPublisher { - /** Publisher ID */ - id: string; -} -export interface Response$getPublisher$Status$200 { - "application/json": Schemas.Publisher; -} -export type ResponseContentType$getBook = keyof Response$getBook$Status$200; -export interface Params$getBook { - parameter: Parameter$getBook; -} -export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; -export interface Params$getDescription { - parameter: Parameter$getDescription; -} -export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; -export interface Params$getAuthor { - parameter: Parameter$getAuthor; -} -export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; -export interface Params$getPublisher { - parameter: Parameter$getPublisher; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200; -export namespace ErrorResponse { - export type getBook = void; - export type getDescription = void; - export type getAuthor = void; - export type getPublisher = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - getBook: (params: Params$getBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getDescription: (params: Params$getDescription, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/book/\${encodeURIComponent(params.parameter.id)}/description\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getAuthor: (params: Params$getAuthor, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/author/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - getPublisher: (params: Params$getPublisher, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/publisher/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Typedef with template > required フィールドを省略したパスパラメータは必須の型として生成されること 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// - - -export interface Parameter$getItemById { - id: string; -} -export interface Response$getItemById$Status$200 { - "application/json": { - id?: string; - name?: string; - }; -} -export interface Parameter$getNodeProxyWithPath { - path: string; - name: string; -} -export interface Response$getNodeProxyWithPath$Status$200 { - "application/json": string; -} -export interface Parameter$headNodeProxyWithPath { - path: string; - name: string; -} -export interface Parameter$getUserPost { - include?: string; - userId: string; - postId: number; -} -export interface Response$getUserPost$Status$200 { - "application/json": { - userId?: string; - postId?: number; - }; -} -export type ResponseContentType$getItemById = keyof Response$getItemById$Status$200; -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; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -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 { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - /** required フィールドを省略したパスパラメータ */ - getItemById: (params: Params$getItemById, option?: RequestOption): Promise => { - const url = _baseUrl + \`/items/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - 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)}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - include: { value: params.parameter.include, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; diff --git a/test/__tests__/functional/__snapshots__/spit-code-test.ts.snap b/test/__tests__/functional/__snapshots__/typedef-with-template/api.test.domain.ts similarity index 90% rename from test/__tests__/functional/__snapshots__/spit-code-test.ts.snap rename to test/__tests__/functional/__snapshots__/typedef-with-template/api.test.domain.ts index 137125c1..e8a7480a 100644 --- a/test/__tests__/functional/__snapshots__/spit-code-test.ts.snap +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/api.test.domain.ts @@ -1,296 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Split Code > apiClient 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator -// -// OpenApi : 3.1.0 -// -// License : MIT // - - -import { Schemas } from "./types"; -export interface Parameter$getIncludeLocalReference { - /** parameters.StringQueryParams */ - StringQuery: string; -} -export interface Response$getIncludeLocalReference$Status$200 { - "application/json": { - meta: string; - }; -} -export interface Parameter$getIncludeRemoteReference { - /** remote reference parameter */ - IncludeRemoteReference: number; -} -export interface RequestBody$getIncludeRemoteReference { - "application/json": string; -} -export interface Parameter$getFullRemoteReference { - /** Full Remote Reference */ - FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; -} -export interface Response$getFullRemoteReference$Status$200 { - "application/json": { - /** responseA description */ - name?: "responseA"; - }; -} -export interface Response$i$have$dot$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Response$getReferenceItems$Status$200 { - "application/json": { - books?: Schemas.Item[]; - }; -} -export interface Parameter$searchBook { - "from.publishedAt"?: number; - "book.name": string; -} -export interface Response$searchBook$Status$200 { - "application/json": { - id?: number; - bookTitle?: string; - }; -} -export interface Parameter$getBookById { - /** Book ID */ - id: string; -} -export interface Response$getBookById$Status$200 { - "application/json": Schemas.ObjectHasPropertiesType; -} -export interface Parameter$deleteBook { - /** Number Book ID */ - id: number; -} -export interface Response$deleteBook$Status$200 { - "application/json": { - status?: "ok"; - }; -} -export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; -export interface Params$getIncludeLocalReference { - parameter: Parameter$getIncludeLocalReference; -} -export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; -export interface Params$getIncludeRemoteReference { - parameter: Parameter$getIncludeRemoteReference; - requestBody: RequestBody$getIncludeRemoteReference["application/json"]; -} -export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; -export interface Params$getFullRemoteReference { - parameter: Parameter$getFullRemoteReference; -} -export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; -export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; -export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; -export interface Params$searchBook { - parameter: Parameter$searchBook; -} -export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; -export interface Params$getBookById { - parameter: Parameter$getBookById; -} -export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; -export interface Params$deleteBook { - parameter: Parameter$deleteBook; -} -export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; -export interface ObjectLike { - [key: string]: any; -} -export interface QueryParameter { - value: any; - style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - explode: boolean; -} -export interface QueryParameters { - [key: string]: QueryParameter; -} -export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; -export namespace ErrorResponse { - export type getIncludeLocalReference = void; - export type getIncludeRemoteReference = void; - export type getFullRemoteReference = void; - export type i$have$dot = void; - export type getReferenceItems = void; - export type searchBook = void; - export type getBookById = void; - export type deleteBook = void; -} -export interface Encoding { - readonly contentType?: string; - headers?: Record; - readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; - readonly explode?: boolean; - readonly allowReserved?: boolean; -} -export interface RequestArgs { - readonly httpMethod: HttpMethod; - readonly url: string; - headers: ObjectLike | any; - requestBody?: ObjectLike | any; - requestBodyEncoding?: Record; - queryParameters?: QueryParameters | undefined; -} -export interface ApiClient { - request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; -} -export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); - return { - /** - * operationId: getIncludeLocalReference - * Request URI: /get/IncludeLocalReference - */ - getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/IncludeLocalReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - StringQuery: { value: params.parameter.StringQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - /** - * operationId: getIncludeRemoteReference - * Request URI: /get/IncludeRemoteReference - */ - getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/IncludeRemoteReference\`; - const headers = { - "Content-Type": "application/json" - }; - const queryParameters: QueryParameters = { - IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - requestBody: params.requestBody, - queryParameters: queryParameters - }, option); - }, - /** - * operationId: getFullRemoteReference - * Request URI: /FullRemoteReference - */ - getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Promise => { - const url = _baseUrl + \`/FullRemoteReference\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - /** - * operationId: i.have.dot - * Request URI: /i/have/dot - */ - i$have$dot: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/i/have/dot\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - /** - * operationId: getReferenceItems - * Request URI: /get/reference/items - */ - getReferenceItems: (option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/reference/items\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - /** - * operationId: searchBook - * Request URI: /get/search/{book.name} - */ - searchBook: (params: Params$searchBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/search/\${encodeURIComponent(params.parameter["book.name"])}\`; - const headers = { - Accept: "application/json" - }; - const queryParameters: QueryParameters = { - "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers, - queryParameters: queryParameters - }, option); - }, - /** - * operationId: getBookById - * Request URI: /get/books/{id} - */ - getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "GET", - url, - headers - }, option); - }, - /** - * operationId: deleteBook - * Request URI: /get/books/{id} - */ - deleteBook: (params: Params$deleteBook, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/books/\${encodeURIComponent(params.parameter.id)}\`; - const headers = { - Accept: "application/json" - }; - return apiClient.request({ - httpMethod: "DELETE", - url, - headers - }, option); - } - }; -}; -type ClientFunction = typeof createClient; -export type Client = ReturnType>; -" -`; - -exports[`Split Code > types 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -585,5 +294,245 @@ export namespace RequestBodies { } } } -" -`; +export interface Parameter$getIncludeLocalReference { + /** parameters.StringQueryParams */ + StringQuery: string; +} +export interface Response$getIncludeLocalReference$Status$200 { + "application/json": { + meta: string; + }; +} +export interface Parameter$getIncludeRemoteReference { + /** remote reference parameter */ + IncludeRemoteReference: number; +} +export interface RequestBody$getIncludeRemoteReference { + "application/json": string; +} +export interface Parameter$getFullRemoteReference { + /** Full Remote Reference */ + FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; +} +export interface Response$getFullRemoteReference$Status$200 { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; +} +export interface Response$i$have$dot$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Response$getReferenceItems$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Parameter$searchBook { + "from.publishedAt"?: number; + "book.name": string; +} +export interface Response$searchBook$Status$200 { + "application/json": { + id?: number; + bookTitle?: string; + }; +} +export interface Parameter$getBookById { + /** Book ID */ + id: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.ObjectHasPropertiesType; +} +export interface Parameter$deleteBook { + /** Number Book ID */ + id: number; +} +export interface Response$deleteBook$Status$200 { + "application/json": { + status?: "ok"; + }; +} +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + }, + getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Promise => { + const url = _baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + i$have$dot: (option?: RequestOption): Promise => { + const url = _baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getReferenceItems: (option?: RequestOption): Promise => { + const url = _baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + searchBook: (params: Params$searchBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + deleteBook: (params: Params$deleteBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts new file mode 100644 index 00000000..54b8a2b1 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts @@ -0,0 +1,130 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export type Message = "hello" | "world"; + export type QueryParams = "a" | "b" | "c"; + export interface ReadOnlyParams { + readonly readonlyPropertyKey?: string; + } +} +export interface Parameter$getHelloWorld { + /** query word */ + word: Schemas.QueryParams; +} +export interface Response$getHelloWorld$Status$200 { + "application/json": { + message?: Schemas.Message; + }; +} +export interface RequestBody$postHelloWorldReadonly { +} +export interface Response$postHelloWorldReadonly$Status$200 { + "application/json": { + message?: Schemas.Message; + }; +} +export interface Response$get$undefined$operation$$id$Status$200 { + "application/json": { + /** Undefined operation response */ + message?: string; + }; +} +export type ResponseContentType$getHelloWorld = keyof Response$getHelloWorld$Status$200; +export interface Params$getHelloWorld { + parameter: Parameter$getHelloWorld; +} +export type RequestContentType$postHelloWorldReadonly = keyof RequestBody$postHelloWorldReadonly; +export type ResponseContentType$postHelloWorldReadonly = keyof Response$postHelloWorldReadonly$Status$200; +export interface Params$postHelloWorldReadonly { + requestBody: RequestBody$postHelloWorldReadonly["application/json"]; +} +export type ResponseContentType$get$undefined$operation$$id = keyof Response$get$undefined$operation$$id$Status$200; +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getHelloWorld$Status$200 | Response$postHelloWorldReadonly$Status$200 | Response$get$undefined$operation$$id$Status$200; +export namespace ErrorResponse { + export type getHelloWorld = void; + export type postHelloWorldReadonly = void; + export type get$undefined$operation$$id = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + getHelloWorld: (params: Params$getHelloWorld, option?: RequestOption): Promise => { + const url = _baseUrl + `/hello/world`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + word: { value: params.parameter.word, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + postHelloWorldReadonly: (params: Params$postHelloWorldReadonly, option?: RequestOption): Promise => { + const url = _baseUrl + `/hello/world/readonly`; + const headers = { + "Content-Type": "application/json", + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody + }, option); + }, + get$undefined$operation$$id: (option?: RequestOption): Promise => { + const url = _baseUrl + `/undefined/operation/:id`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts new file mode 100644 index 00000000..f9b1e2e2 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts @@ -0,0 +1,70 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export type InferArrayEmptyItems = {}[]; + export type InferArrayType = string[]; + export interface InferObjectItem { + description: any; + } + export interface InferObjectHasAnyProp { + filed?: any; + } + export interface InferObject { + filed?: string; + } + export type InferStringEnum = "a" | "b" | "c"; + export type InferAnyNullable = null; + export interface OptionalPropertiesAndAdditionalProperties { + body?: { + key?: string; + description?: string; + } & { + [key: string]: string; + }; + } +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = void; +export namespace ErrorResponse { } +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return {}; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts new file mode 100644 index 00000000..81d66da7 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts @@ -0,0 +1,156 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// + + +export interface Parameter$getItemById { + id: string; +} +export interface Response$getItemById$Status$200 { + "application/json": { + id?: string; + name?: string; + }; +} +export interface Parameter$getNodeProxyWithPath { + path: string; + name: string; +} +export interface Response$getNodeProxyWithPath$Status$200 { + "application/json": string; +} +export interface Parameter$headNodeProxyWithPath { + path: string; + name: string; +} +export interface Parameter$getUserPost { + include?: string; + userId: string; + postId: number; +} +export interface Response$getUserPost$Status$200 { + "application/json": { + userId?: string; + postId?: number; + }; +} +export type ResponseContentType$getItemById = keyof Response$getItemById$Status$200; +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; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +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 { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + /** required フィールドを省略したパスパラメータ */ + getItemById: (params: Params$getItemById, option?: RequestOption): Promise => { + const url = _baseUrl + `/items/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + 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)}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + include: { value: params.parameter.include, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts new file mode 100644 index 00000000..92ed226b --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts @@ -0,0 +1,280 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export interface Book { + author?: { + name?: string; + age?: string; + }; + publisher?: { + name?: any; + address?: string; + }; + metadata: { + description: string; + }; + } + export type Author = { + name?: string; + age?: string; + }; + export type Publisher = { + name?: any; + address?: string; + }; +} +export interface Parameter$getBook { + /** Book ID */ + id: string; +} +export interface Response$getBook$Status$200 { + "application/json": Schemas.Book; +} +export interface Parameter$getDescription { + /** Book ID */ + id: string; +} +export interface Response$getDescription$Status$200 { + "application/json": string; +} +export interface Parameter$getAuthor { + /** Author Id */ + id: string; +} +export interface Response$getAuthor$Status$200 { + "application/json": { + name?: string; + age?: string; + }; +} +export interface Parameter$getPublisher { + /** Publisher ID */ + id: string; +} +export interface Response$getPublisher$Status$200 { + "application/json": Schemas.Publisher; +} +export interface RequestBody$createPublisher { + "application/x-www-form-urlencoded": { + color?: string[]; + }; +} +export interface Response$createPublisher$Status$200 { + "application/json": { + status?: string; + }; +} +export interface RequestBody$createPublisherV2 { + "application/x-www-form-urlencoded": { + color?: string[]; + }; + "application/json": { + color?: string[]; + }; +} +export interface Response$createPublisherV2$Status$200 { + "application/json": { + status?: string; + }; +} +export interface Parameter$getBookById { + /** Author ID */ + authorId: string; + /** Book ID */ + bookId: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.Book; +} +export type ResponseContentType$getBook = keyof Response$getBook$Status$200; +export interface Params$getBook { + parameter: Parameter$getBook; +} +export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; +export interface Params$getDescription { + parameter: Parameter$getDescription; +} +export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; +export interface Params$getAuthor { + parameter: Parameter$getAuthor; +} +export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; +export interface Params$getPublisher { + parameter: Parameter$getPublisher; +} +export type RequestContentType$createPublisher = keyof RequestBody$createPublisher; +export type ResponseContentType$createPublisher = keyof Response$createPublisher$Status$200; +export interface Params$createPublisher { + requestBody: RequestBody$createPublisher["application/x-www-form-urlencoded"]; +} +export type RequestContentType$createPublisherV2 = keyof RequestBody$createPublisherV2; +export type ResponseContentType$createPublisherV2 = keyof Response$createPublisherV2$Status$200; +export interface Params$createPublisherV2 { + headers: { + "Content-Type": T; + }; + requestBody: RequestBody$createPublisherV2[T]; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200 | Response$createPublisher$Status$200 | Response$createPublisherV2$Status$200 | Response$getBookById$Status$200; +export namespace ErrorResponse { + export type getBook = void; + export type getDescription = void; + export type getAuthor = void; + export type getPublisher = void; + export type createPublisher = void; + export type createPublisherV2 = void; + export type getBookById = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + getBook: (params: Params$getBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getDescription: (params: Params$getDescription, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}/description`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getAuthor: (params: Params$getAuthor, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/author/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getPublisher: (params: Params$getPublisher, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/publisher/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + createPublisher: (params: Params$createPublisher, option?: RequestOption): Promise => { + const url = _baseUrl + `/create/publisher/{id}`; + const headers = { + "Content-Type": "application/x-www-form-urlencoded", + Accept: "application/json" + }; + const requestEncodings: Record> = { + "application/x-www-form-urlencoded": { + "color": { + "style": "form", + "explode": false + } + } + }; + return apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + requestBodyEncoding: requestEncodings["application/x-www-form-urlencoded"] + }, option); + }, + createPublisherV2: (params: Params$createPublisherV2, option?: RequestOption): Promise => { + const url = _baseUrl + `/create/v2/publisher/{id}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: "application/json" + }; + const requestEncodings: Record> = { + "application/x-www-form-urlencoded": { + "color": { + "style": "form", + "explode": false + } + }, + "application/json": { + "color": { + "style": "form", + "explode": false + } + } + }; + return apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + requestBodyEncoding: requestEncodings[params.headers["Content-Type"]] + }, option); + }, + getBookById: (params: Params$getBookById, option?: RequestOption): Promise => { + const url = _baseUrl + `/author/author-${encodeURIComponent(params.parameter.authorId)}.a.${encodeURIComponent(params.parameter.bookId)}.b/book/${encodeURIComponent(params.parameter.bookId)}.json`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts new file mode 100644 index 00000000..f3c4eadf --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts @@ -0,0 +1,175 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + export interface Book { + author?: { + name?: string; + age?: string; + }; + publisher?: { + name?: any; + address?: string; + }; + metadata: { + description: string; + }; + } + export namespace Book { + export namespace properties { + export interface author { + name?: string; + age?: string; + } + export interface publisher { + name?: any; + address?: string; + } + export namespace metadata { + export namespace properties { + export type description = string; + } + } + } + } + export type Author = Schemas.Book.properties.author; + export type Publisher = Schemas.Book.properties.publisher; +} +export interface Parameter$getBook { + /** Book ID */ + id: string; +} +export interface Response$getBook$Status$200 { + "application/json": Schemas.Book; +} +export interface Parameter$getDescription { + /** Book ID */ + id: string; +} +export interface Response$getDescription$Status$200 { + "application/json": Schemas.Book.properties.metadata.properties.description; +} +export interface Parameter$getAuthor { + /** Author Id */ + id: string; +} +export interface Response$getAuthor$Status$200 { + "application/json": Schemas.Author; +} +export interface Parameter$getPublisher { + /** Publisher ID */ + id: string; +} +export interface Response$getPublisher$Status$200 { + "application/json": Schemas.Publisher; +} +export type ResponseContentType$getBook = keyof Response$getBook$Status$200; +export interface Params$getBook { + parameter: Parameter$getBook; +} +export type ResponseContentType$getDescription = keyof Response$getDescription$Status$200; +export interface Params$getDescription { + parameter: Parameter$getDescription; +} +export type ResponseContentType$getAuthor = keyof Response$getAuthor$Status$200; +export interface Params$getAuthor { + parameter: Parameter$getAuthor; +} +export type ResponseContentType$getPublisher = keyof Response$getPublisher$Status$200; +export interface Params$getPublisher { + parameter: Parameter$getPublisher; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getBook$Status$200 | Response$getDescription$Status$200 | Response$getAuthor$Status$200 | Response$getPublisher$Status$200; +export namespace ErrorResponse { + export type getBook = void; + export type getDescription = void; + export type getAuthor = void; + export type getPublisher = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + getBook: (params: Params$getBook, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getDescription: (params: Params$getDescription, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/book/${encodeURIComponent(params.parameter.id)}/description`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getAuthor: (params: Params$getAuthor, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/author/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getPublisher: (params: Params$getPublisher, option?: RequestOption): Promise => { + const url = _baseUrl + `/get/publisher/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts new file mode 100644 index 00000000..d00a41f2 --- /dev/null +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts @@ -0,0 +1,538 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.1.0 +// +// License : MIT +// + + +export namespace Schemas { + /** String Literal */ + export type StringType = string; + export type StringHasEnumType = "a" | "A" | "b" | "B" | "c" | "C"; + export type StringDateType = string; + export type StringDateTimeType = string; + export type StringPasswordType = string; + export type StringByteType = string; + export type StringBinaryType = string; + export type StringWithPatternType = string; + /** Number Literal */ + export type NumberType = number; + export type NumberHasEnumType = 1 | 2 | 3 | 100 | 123 | 0.1 | -0.1 | 0; + export type NumberInt32Type = number; + export type NumberInt64Type = number; + export type NumberFloat = number; + export type NumberDouble = number; + /** Boolean Literal */ + export type BooleanType = boolean; + export type BooleanEnumType = true; + export type BooleanEnumType2 = false; + export type BooleanEnumType3 = true | false; + export type ArrayStringType = string[]; + export type ArrayNumberType = number[]; + export type ArrayBooleanType = boolean[]; + export interface ObjectEmptyPropertiesType { + } + export interface ObjectHasPropertiesType { + stringType?: string; + numberType?: number; + booleanType?: boolean; + arrayType?: string; + objectType?: { + requiredStringType: string; + }; + } + export type OneOfType = string | number | {}; + export type AllOfType = { + A?: string; + } & { + B?: string; + }; + export type LocalRefStringType = Schemas.StringType; + export type LocalRefNumberType = Schemas.NumberType; + export type LocalRefBooleanType = Schemas.BooleanType; + export type LocalRefArrayStringType = Schemas.BooleanType; + export type LocalRefObjectHasPropertiesType = Schemas.ObjectHasPropertiesType; + export interface LocalRefObjectProperties { + stringType: Schemas.StringType; + numberType: Schemas.NumberType; + booleanType: Schemas.BooleanType; + arrayType: Schemas.BooleanType; + objectType: Schemas.ObjectHasPropertiesType; + } + export type LocalRefOneOfType = Schemas.StringType | Schemas.NumberType | Schemas.ObjectHasPropertiesType | Schemas.LocalRefObjectProperties; + export type LocalRefAllOfType = Schemas.StringType & Schemas.NumberType & Schemas.ObjectHasPropertiesType & Schemas.LocalRefObjectProperties; + export type LocalReferenceBeforeResolvedSchema1 = Schemas.UnresolvedTarget1; + export type UnresolvedTarget1 = boolean; + export type LocalReferenceBeforeResolvedSchema2 = Schemas.UnresolvedTarget2; + export type UnresolvedTarget2 = Schemas.UnresolvedTarget3; + export type UnresolvedTarget3 = number; + export interface LocalReferenceBeforeResolvedSchema3 { + unresolvedTarget4?: Schemas.UnresolvedTarget4; + } + export interface UnresolvedTarget4 { + unresolvedTarget5?: Schemas.UnresolvedTarget5; + } + export type UnresolvedTarget5 = string; + export type RemoteString = string; + export type RemoteRefString = Schemas.RemoteString; + export namespace Level1 { + /** Level 1 */ + export type RemoteBoolean = boolean; + export namespace Level2 { + /** Level 2 */ + export type RemoteNumber = number; + export namespace Level3 { + /** Level 3 */ + export type RemoteArray = string[]; + export namespace Level4 { + /** Level 4 */ + export interface RemoteObject { + A?: string; + B?: number; + } + } + } + } + } + /** Level 1 */ + export type RemoteRefBoolean = Schemas.Level1.RemoteBoolean; + /** Level 2 */ + export type RemoteRefNumber = Schemas.Level1.Level2.RemoteNumber; + /** Level 3 */ + export type RemoteRefArray = Schemas.Level1.Level2.Level3.RemoteArray; + /** Level 4 */ + export type RemoteRefObject = Schemas.Level1.Level2.Level3.Level4.RemoteObject; + export type NullableString = string | null; + export type NullableBoolean = boolean | null; + export type NullableNumber = number | null; + export type NullableArray = string[] | null; + export type NullableObject = { + gt?: string; + } | null; + export namespace DirectRef { + export type ForHeader = string; + export interface ForResponse { + forResponse?: string; + } + export type ForParameters = string; + export interface ForRequestBody { + a?: string; + } + } + export namespace FullRemoteReference { + export type ForParameters = string; + } + export interface Child { + id: string; + /** child name */ + name: string; + } + export interface Item { + name: string; + children: Child[]; + } +} +export namespace Headers { + export type StringHeader = string; + export type A = number; + export namespace Level1 { + export type B = string; + } + export type ReferenceOfHeaderToSchema = Schemas.DirectRef.ForHeader; +} +export namespace Responses { + /** + * Status Code 100 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 + */ + export namespace Continue { } + /** + * Status Code 101 + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101 + */ + export namespace SwitchingProtocol { } + /** Type Reference - string */ + export namespace LocalReferenceStringDateTimeType { + export interface Content { + "application/json": Schemas.StringDateTimeType; + } + } + /** Local Reference - object */ + export namespace LocalReferenceObjectType { + export interface Content { + "application/json": Schemas.ObjectHasPropertiesType; + } + } + /** Response -> Schema */ + export namespace ReferenceOfResponseToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForResponse; + } + } + /** response A definition */ + export namespace ResponseA { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + export namespace Level1 { + /** response B definition */ + export namespace ResponseB { + export interface Content { + "application/json": { + name?: "responseB"; + }; + } + } + export namespace Level2 { + /** response C definition */ + export namespace ResponseC { + export interface Content { + "application/json": { + name?: "responseC"; + }; + } + } + } + } + export namespace ForPathItems { + /** response A definition */ + export namespace FullRemoteReference { + export interface Header { + HeaderA: Headers.A; + HeaderB: string; + } + export interface Content { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; + } + } + } +} +export namespace Parameters { + /** parameters.StringQueryParams */ + export type StringQueryParams = string; + /** parameters.NumberQueryParams */ + export type NumberQueryParams = number; + /** parameters.StringQueryParams */ + export type StringHeaderParams = string; + export type A = number; + export type RemoteReferenceA = Parameters.A; + export namespace level1 { + export type B = string; + } + export type RemoteReferenceB = Parameters.level1.B; + /** parameters -> schemas */ + export type ReferenceOfParameterToSchema = Schemas.DirectRef.ForParameters; + /** deepObject */ + export type DeepObjectParameter = { + [key: string]: { + gt?: string; + gte?: string; + lt?: string; + lte?: string; + any?: string | number | boolean; + }; + }; +} +export namespace RequestBodies { + /** Request body string type */ + export namespace StringType { + export interface Content { + "application/json": string; + } + } + /** Request body Local reference string type */ + export namespace LocalReferenceStringType { + export interface Content { + "application/json": Schemas.StringHasEnumType; + } + } + /** requestBodies -> schemas */ + export namespace ReferenceOfRequestBodyToSchema { + export interface Content { + "application/json": Schemas.DirectRef.ForRequestBody; + } + } + /** Remote Request body A */ + export namespace RequestBodyA { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level1 { + /** Remote Request body B */ + export namespace RequestBodyB { + export interface Content { + "application/json": { + body?: string; + }; + } + } + export namespace Level2 { + /** Remote Request body C */ + export namespace RequestBodyC { + export interface Content { + "application/json": { + body?: string; + }; + } + } + } + } +} +export interface Parameter$getIncludeLocalReference { + /** parameters.StringQueryParams */ + StringQuery: string; +} +export interface Response$getIncludeLocalReference$Status$200 { + "application/json": { + meta: string; + }; +} +export interface Parameter$getIncludeRemoteReference { + /** remote reference parameter */ + IncludeRemoteReference: number; +} +export interface RequestBody$getIncludeRemoteReference { + "application/json": string; +} +export interface Parameter$getFullRemoteReference { + /** Full Remote Reference */ + FullRemoteReferenceQuery: Schemas.FullRemoteReference.ForParameters; +} +export interface Response$getFullRemoteReference$Status$200 { + "application/json": { + /** responseA description */ + name?: "responseA"; + }; +} +export interface Response$i$have$dot$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Response$getReferenceItems$Status$200 { + "application/json": { + books?: Schemas.Item[]; + }; +} +export interface Parameter$searchBook { + "from.publishedAt"?: number; + "book.name": string; +} +export interface Response$searchBook$Status$200 { + "application/json": { + id?: number; + bookTitle?: string; + }; +} +export interface Parameter$getBookById { + /** Book ID */ + id: string; +} +export interface Response$getBookById$Status$200 { + "application/json": Schemas.ObjectHasPropertiesType; +} +export interface Parameter$deleteBook { + /** Number Book ID */ + id: number; +} +export interface Response$deleteBook$Status$200 { + "application/json": { + status?: "ok"; + }; +} +export type ResponseContentType$getIncludeLocalReference = keyof Response$getIncludeLocalReference$Status$200; +export interface Params$getIncludeLocalReference { + parameter: Parameter$getIncludeLocalReference; +} +export type RequestContentType$getIncludeRemoteReference = keyof RequestBody$getIncludeRemoteReference; +export interface Params$getIncludeRemoteReference { + parameter: Parameter$getIncludeRemoteReference; + requestBody: RequestBody$getIncludeRemoteReference["application/json"]; +} +export type ResponseContentType$getFullRemoteReference = keyof Response$getFullRemoteReference$Status$200; +export interface Params$getFullRemoteReference { + parameter: Parameter$getFullRemoteReference; +} +export type ResponseContentType$i$have$dot = keyof Response$i$have$dot$Status$200; +export type ResponseContentType$getReferenceItems = keyof Response$getReferenceItems$Status$200; +export type ResponseContentType$searchBook = keyof Response$searchBook$Status$200; +export interface Params$searchBook { + parameter: Parameter$searchBook; +} +export type ResponseContentType$getBookById = keyof Response$getBookById$Status$200; +export interface Params$getBookById { + parameter: Parameter$getBookById; +} +export type ResponseContentType$deleteBook = keyof Response$deleteBook$Status$200; +export interface Params$deleteBook { + parameter: Parameter$deleteBook; +} +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getIncludeLocalReference$Status$200 | Response$getFullRemoteReference$Status$200 | Response$i$have$dot$Status$200 | Response$getReferenceItems$Status$200 | Response$searchBook$Status$200 | Response$getBookById$Status$200 | Response$deleteBook$Status$200; +export namespace ErrorResponse { + export type getIncludeLocalReference = void; + export type getIncludeRemoteReference = void; + export type getFullRemoteReference = void; + export type i$have$dot = void; + export type getReferenceItems = void; + export type searchBook = void; + export type getBookById = void; + export type deleteBook = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => T; +} +export const createClient = (apiClient: ApiClient, baseUrl: string) => { + const _baseUrl = baseUrl.replace(/\/$/, ""); + return { + getIncludeLocalReference: (params: Params$getIncludeLocalReference, option?: RequestOption): Response$getIncludeLocalReference$Status$200["application/json"] => { + const url = _baseUrl + `/get/IncludeLocalReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + StringQuery: { value: params.parameter.StringQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getIncludeRemoteReference: (params: Params$getIncludeRemoteReference, option?: RequestOption): void => { + const url = _baseUrl + `/get/IncludeRemoteReference`; + const headers = { + "Content-Type": "application/json" + }; + const queryParameters: QueryParameters = { + IncludeRemoteReference: { value: params.parameter.IncludeRemoteReference, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + }, + getFullRemoteReference: (params: Params$getFullRemoteReference, option?: RequestOption): Response$getFullRemoteReference$Status$200["application/json"] => { + const url = _baseUrl + `/FullRemoteReference`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + FullRemoteReferenceQuery: { value: params.parameter.FullRemoteReferenceQuery, explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + i$have$dot: (option?: RequestOption): Response$i$have$dot$Status$200["application/json"] => { + const url = _baseUrl + `/i/have/dot`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + getReferenceItems: (option?: RequestOption): Response$getReferenceItems$Status$200["application/json"] => { + const url = _baseUrl + `/get/reference/items`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + searchBook: (params: Params$searchBook, option?: RequestOption): Response$searchBook$Status$200["application/json"] => { + const url = _baseUrl + `/get/search/${encodeURIComponent(params.parameter["book.name"])}`; + const headers = { + Accept: "application/json" + }; + const queryParameters: QueryParameters = { + "from.publishedAt": { value: params.parameter["from.publishedAt"], explode: false } + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + }, + getBookById: (params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200["application/json"] => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + }, + deleteBook: (params: Params$deleteBook, option?: RequestOption): Response$deleteBook$Status$200["application/json"] => { + const url = _baseUrl + `/get/books/${encodeURIComponent(params.parameter.id)}`; + const headers = { + Accept: "application/json" + }; + return apiClient.request({ + httpMethod: "DELETE", + url, + headers + }, option); + } + }; +}; +type ClientFunction = typeof createClient; +export type Client = ReturnType>; diff --git a/test/__tests__/functional/__snapshots__/unknown-schema-domain-test copy.ts.snap b/test/__tests__/functional/__snapshots__/unknown.schema.domain/client.ts similarity index 89% rename from test/__tests__/functional/__snapshots__/unknown-schema-domain-test copy.ts.snap rename to test/__tests__/functional/__snapshots__/unknown.schema.domain/client.ts index 9012a398..dc3e3b9e 100644 --- a/test/__tests__/functional/__snapshots__/unknown-schema-domain-test copy.ts.snap +++ b/test/__tests__/functional/__snapshots__/unknown.schema.domain/client.ts @@ -1,8 +1,5 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`Unknown > client.ts 1`] = ` -"// -// Generated by @himenon/openapi-typescript-code-generator +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 // // OpenApi : 3.1.0 // @@ -60,10 +57,10 @@ export interface ApiClient { request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; } export const createClient = (apiClient: ApiClient, baseUrl: string) => { - const _baseUrl = baseUrl.replace(/\\/$/, ""); + const _baseUrl = baseUrl.replace(/\/$/, ""); return { getUnknown: (params: Params$getUnknown, option?: RequestOption): Promise => { - const url = _baseUrl + \`/get/unknown\`; + const url = _baseUrl + `/get/unknown`; const headers = { Accept: "application/json" }; @@ -77,5 +74,3 @@ export const createClient = (apiClient: ApiClient, }; type ClientFunction = typeof createClient; export type Client = ReturnType>; -" -`; diff --git a/test/__tests__/functional/argo-rollout-test.ts b/test/__tests__/functional/argo-rollout-test.ts index 9b0ca917..1a3a9acc 100644 --- a/test/__tests__/functional/argo-rollout-test.ts +++ b/test/__tests__/functional/argo-rollout-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Argo Rollout", () => { - test("client.ts", () => { + test("client.ts", async () => { const generateCode = fs.readFileSync("test/code/functional/argo-rollout/client.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/argo-rollout/client.ts"); }); }); diff --git a/test/__tests__/functional/coudflare-test.ts b/test/__tests__/functional/coudflare-test.ts index 25dba614..06ef6694 100644 --- a/test/__tests__/functional/coudflare-test.ts +++ b/test/__tests__/functional/coudflare-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Unknown", () => { - test("client.ts", () => { + test("client.ts", async () => { const generateCode = fs.readFileSync("test/code/functional/cloudflare/client.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/cloudflare/client.ts"); }); }); diff --git a/test/__tests__/functional/format.domain.ts b/test/__tests__/functional/format.domain.ts index eab643b5..900a1358 100644 --- a/test/__tests__/functional/format.domain.ts +++ b/test/__tests__/functional/format.domain.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Format Types", () => { - test("format.domain", () => { + test("format.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/format.domain/code.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/format.domain/code.ts"); }); }); diff --git a/test/__tests__/functional/kubernetes-test.ts b/test/__tests__/functional/kubernetes-test.ts index b02c6ce2..6ccee2fd 100644 --- a/test/__tests__/functional/kubernetes-test.ts +++ b/test/__tests__/functional/kubernetes-test.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Kubernetes", () => { - test("client-v1.18.5.ts", () => { + test("client-v1.18.5.ts", async () => { const generateCode = fs.readFileSync("test/code/functional/kubernetes/client-v1.18.5.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/kubernetes/client-v1.18.5.ts"); }); }); diff --git a/test/__tests__/functional/multi-type.test.domain.ts b/test/__tests__/functional/multi-type.test.domain.ts index c82de161..bb9b436e 100644 --- a/test/__tests__/functional/multi-type.test.domain.ts +++ b/test/__tests__/functional/multi-type.test.domain.ts @@ -4,15 +4,15 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Multi Type", () => { - test("types", () => { + test("types", async () => { const generateCode = fs.readFileSync("test/code/functional/mulit-type-test.domain/types.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/mulit-type-test.domain/types.ts"); }); - test("apiClient", () => { + test("apiClient", async () => { const generateCode = fs.readFileSync("test/code/functional/mulit-type-test.domain/apiClient.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/mulit-type-test.domain/apiClient.ts"); }); }); diff --git a/test/__tests__/functional/parameter-test.ts b/test/__tests__/functional/parameter-test.ts index 3cf3242c..ea4bc043 100644 --- a/test/__tests__/functional/parameter-test.ts +++ b/test/__tests__/functional/parameter-test.ts @@ -4,19 +4,19 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Parameter", () => { - test("api.test.domain", () => { + test("api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/parameter/api.test.domain.json", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/parameter/api.test.domain.json"); }); - test("infer.domain", () => { + test("infer.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/parameter/infer.domain.json", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/parameter/infer.domain.json"); }); - test("required フィールドを省略したパスパラメータは pickedParameters で required: true として扱われること", () => { + test("required フィールドを省略したパスパラメータは pickedParameters で required: true として扱われること", async () => { const generateCode = fs.readFileSync("test/code/functional/parameter/path-parameter.json", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/parameter/path-parameter.json"); }); }); diff --git a/test/__tests__/functional/spit-code-test.ts b/test/__tests__/functional/spit-code-test.ts index 5006a300..650a07e9 100644 --- a/test/__tests__/functional/spit-code-test.ts +++ b/test/__tests__/functional/spit-code-test.ts @@ -4,15 +4,15 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Split Code", () => { - test("types", () => { + test("types", async () => { const generateCode = fs.readFileSync("test/code/functional/split/types.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/split/types.ts"); }); - test("apiClient", () => { + test("apiClient", async () => { const generateCode = fs.readFileSync("test/code/functional/split/apiClient.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/split/apiClient.ts"); }); }); diff --git a/test/__tests__/functional/template-only-test.ts b/test/__tests__/functional/template-only-test.ts index e4f50b8f..a087ec50 100644 --- a/test/__tests__/functional/template-only-test.ts +++ b/test/__tests__/functional/template-only-test.ts @@ -4,19 +4,19 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Template Only", () => { - test("api.test.domain", () => { + test("api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/template-only/api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/template-only/api.test.domain.ts"); }); - test("async-api.test.domain", () => { + test("async-api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/template-only/sync-api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/template-only/sync-api.test.domain.ts"); }); - test("infer.domain", () => { + test("infer.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/template-only/infer.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/template-only/infer.domain.ts"); }); }); diff --git a/test/__tests__/functional/typedef-only-test.ts b/test/__tests__/functional/typedef-only-test.ts index d8eeff45..8bd23b57 100644 --- a/test/__tests__/functional/typedef-only-test.ts +++ b/test/__tests__/functional/typedef-only-test.ts @@ -4,19 +4,19 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Typedef only", () => { - test("typedef-api.test.domain", () => { + test("typedef-api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-only/api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-only/api.test.domain.ts"); }); - test("typedef-infer.domain", () => { + test("typedef-infer.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-only/infer.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-only/infer.domain.ts"); }); - test("Reference test that include nested properties", () => { + test("Reference test that include nested properties", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-only/json.properties.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-only/json.properties.ts"); }); }); diff --git a/test/__tests__/functional/typedef-with-template-test.ts b/test/__tests__/functional/typedef-with-template-test.ts index 86fede08..4a5b1ca7 100644 --- a/test/__tests__/functional/typedef-with-template-test.ts +++ b/test/__tests__/functional/typedef-with-template-test.ts @@ -4,41 +4,41 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Typedef with template", () => { - test("required フィールドを省略したパスパラメータは必須の型として生成されること", () => { + test("required フィールドを省略したパスパラメータは必須の型として生成されること", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-with-template/path-parameter.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/path-parameter.ts"); }); - test("api.test.domain", () => { + test("api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-with-template/api.test.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/api.test.domain.ts"); }); - test("api.v2.domain", () => { + test("api.v2.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-with-template/api.v2.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/api.v2.domain.ts"); }); - test("async-api.test.domain", () => { + test("async-api.test.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-with-template/sync-api.test.domain.ts", { encoding: "utf-8", }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/sync-api.test.domain.ts"); }); - test("infer.domain", () => { + test("infer.domain", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-with-template/infer.domain.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/infer.domain.ts"); }); - test("ref-access", () => { + test("ref-access", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-with-template/ref-access.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/ref-access.ts"); }); - test("remote-ref-access", () => { + test("remote-ref-access", async () => { const generateCode = fs.readFileSync("test/code/functional/typedef-with-template/remote-ref-access.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/typedef-with-template/remote-ref-access.ts"); }); }); diff --git a/test/__tests__/functional/unknown-schema-domain-test copy.ts b/test/__tests__/functional/unknown-schema-domain-test copy.ts index 7eba0731..43cfe18e 100644 --- a/test/__tests__/functional/unknown-schema-domain-test copy.ts +++ b/test/__tests__/functional/unknown-schema-domain-test copy.ts @@ -4,9 +4,9 @@ import { describe, expect, test } from "vitest"; import * as Utils from "../../utils"; describe("Unknown", () => { - test("client.ts", () => { + test("client.ts", async () => { const generateCode = fs.readFileSync("test/code/functional/unknown.schema.domain/client.ts", { encoding: "utf-8" }); const text = Utils.replaceVersionInfo(generateCode); - expect(text).toMatchSnapshot(); + await expect(text).toMatchFileSnapshot("./__snapshots__/unknown.schema.domain/client.ts"); }); }); diff --git a/vitest.snapshot.config.ts b/vitest.snapshot.config.ts index 2aef766f..7d1d4a03 100644 --- a/vitest.snapshot.config.ts +++ b/vitest.snapshot.config.ts @@ -1,9 +1,10 @@ -import { defineConfig } from "vitest/config"; +import { configDefaults, defineConfig } from "vitest/config"; export default defineConfig({ test: { globals: true, include: ["test/**/__tests__/**/*.{ts,tsx}", "test/**/*.{test,spec}.{ts,tsx}"], + exclude: [...configDefaults.exclude, "test/**/__tests__/**/__snapshots__/**"], environment: "node", }, }); From 4e91880a8506707b1090f5ea0787130ef6fa34af Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 09:56:36 +0900 Subject: [PATCH 2/8] fix: lint --- biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 8ab6a220..1ca94a51 100644 --- a/biome.json +++ b/biome.json @@ -40,7 +40,7 @@ }, "files": { "ignoreUnknown": true, - "includes": ["**", "!**/dist", "!coverage", "!examples", "!test/code"], + "includes": ["**", "!**/dist", "!coverage", "!examples", "!test/code", "!**/__snapshots__"], "maxSize": 10485760 }, "javascript": { From b4c163554109db023a138ea7b385db2f77409cf5 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 09:57:47 +0900 Subject: [PATCH 3/8] chore: exclude snapshot files from TypeScript type checking Generated snapshot files in __snapshots__ directories contain TypeScript output from the code generator that is not expected to be type-safe. Co-Authored-By: Claude Sonnet 4.5 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 46971edc..91b5f6cd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,5 +20,5 @@ "esm": true, "swc": true }, - "exclude": ["test/code", "examples/"] + "exclude": ["test/code", "examples/", "test/__tests__/**/__snapshots__/**"] } From d223459cbbe5816b2699bf7caaa6d42cd1feb997 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 10:22:07 +0900 Subject: [PATCH 4/8] test: add snapshot test --- scripts/testCodeGenWithClass.ts | 3 + .../kubernetes/client-v1.28.6.ts | 64825 ++++++++++++++++ test/__tests__/class/kubernetes-test.ts | 5 + 3 files changed, 64833 insertions(+) create mode 100644 test/__tests__/class/__snapshots__/kubernetes/client-v1.28.6.ts diff --git a/scripts/testCodeGenWithClass.ts b/scripts/testCodeGenWithClass.ts index 198b2ec5..a01f6370 100644 --- a/scripts/testCodeGenWithClass.ts +++ b/scripts/testCodeGenWithClass.ts @@ -40,6 +40,9 @@ const main = () => { Writer.generateTypedefWithTemplateCode("test/kubernetes/openapi-v1.18.5.json", "test/code/class/kubernetes/client-v1.18.5.ts", false, { sync: false, }); + Writer.generateTypedefWithTemplateCode("test/kubernetes/openapi-v1.28.6.json", "test/code/class/kubernetes/client-v1.28.6.ts", false, { + sync: false, + }); Writer.generateTypedefWithTemplateCode("test/argo-rollout/index.json", "test/code/class/argo-rollout/client.ts", false, { sync: false, }); diff --git a/test/__tests__/class/__snapshots__/kubernetes/client-v1.28.6.ts b/test/__tests__/class/__snapshots__/kubernetes/client-v1.28.6.ts new file mode 100644 index 00000000..88fb216b --- /dev/null +++ b/test/__tests__/class/__snapshots__/kubernetes/client-v1.28.6.ts @@ -0,0 +1,64825 @@ +// +// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// +// OpenApi : 3.0.0 +// +// + + +export namespace Schemas { + /** MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook. */ + export interface io$k8s$api$admissionregistration$v1$MatchCondition { + /** + * Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables: + * + * 'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. + * See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz + * 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the + * request resource. + * Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/ + * + * Required. + */ + expression: string; + /** + * Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName') + * + * Required. + */ + name: string; + } + /** MutatingWebhook describes an admission webhook and the resources and operations it applies to. */ + export interface io$k8s$api$admissionregistration$v1$MutatingWebhook { + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ + admissionReviewVersions: string[]; + clientConfig: Schemas.io$k8s$api$admissionregistration$v1$WebhookClientConfig; + /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail. */ + failurePolicy?: string; + /** + * MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed. + * + * The exact matching logic is (in order): + * 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped. + * 2. If ALL matchConditions evaluate to TRUE, the webhook is called. + * 3. If any matchCondition evaluates to an error (but none are FALSE): + * - If failurePolicy=Fail, reject the request + * - If failurePolicy=Ignore, the error is ignored and the webhook is skipped + * + * This is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate. + */ + matchConditions?: Schemas.io$k8s$api$admissionregistration$v1$MatchCondition[]; + /** + * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". + * + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * + * Defaults to "Equivalent" + */ + matchPolicy?: string; + /** The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required. */ + name: string; + namespaceSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + objectSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** + * reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are "Never" and "IfNeeded". + * + * Never: the webhook will not be called more than once in a single admission evaluation. + * + * IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead. + * + * Defaults to "Never". + */ + reinvocationPolicy?: string; + /** Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. */ + rules?: Schemas.io$k8s$api$admissionregistration$v1$RuleWithOperations[]; + /** SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. */ + sideEffects: string; + /** TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds. */ + timeoutSeconds?: number; + } + /** MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. */ + export interface io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** Webhooks is a list of webhooks and the affected resources and operations. */ + webhooks?: Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhook[]; + } + /** MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration. */ + export interface io$k8s$api$admissionregistration$v1$MutatingWebhookConfigurationList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of MutatingWebhookConfiguration. */ + items: Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid. */ + export interface io$k8s$api$admissionregistration$v1$RuleWithOperations { + /** APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. */ + apiGroups?: string[]; + /** APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. */ + apiVersions?: string[]; + /** Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required. */ + operations?: string[]; + /** + * Resources is a list of resources this rule applies to. + * + * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\*' means all subresources of pods. '\*\\/scale' means all scale subresources. '\*\/\*' means all resources and their subresources. + * + * If wildcard is present, the validation rule will ensure resources do not overlap with each other. + * + * Depending on the enclosing object, subresources might not be allowed. Required. + */ + resources?: string[]; + /** scope specifies the scope of this rule. Valid values are "Cluster", "Namespaced", and "*" "Cluster" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. "Namespaced" means that only namespaced resources will match this rule. "*" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is "*". */ + scope?: string; + } + /** ServiceReference holds a reference to Service.legacy.k8s.io */ + export interface io$k8s$api$admissionregistration$v1$ServiceReference { + /** `name` is the name of the service. Required */ + name: string; + /** `namespace` is the namespace of the service. Required */ + namespace: string; + /** `path` is an optional URL path which will be sent in any request to this service. */ + path?: string; + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ + port?: number; + } + /** ValidatingWebhook describes an admission webhook and the resources and operations it applies to. */ + export interface io$k8s$api$admissionregistration$v1$ValidatingWebhook { + /** AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. */ + admissionReviewVersions: string[]; + clientConfig: Schemas.io$k8s$api$admissionregistration$v1$WebhookClientConfig; + /** FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail. */ + failurePolicy?: string; + /** + * MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed. + * + * The exact matching logic is (in order): + * 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped. + * 2. If ALL matchConditions evaluate to TRUE, the webhook is called. + * 3. If any matchCondition evaluates to an error (but none are FALSE): + * - If failurePolicy=Fail, reject the request + * - If failurePolicy=Ignore, the error is ignored and the webhook is skipped + * + * This is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate. + */ + matchConditions?: Schemas.io$k8s$api$admissionregistration$v1$MatchCondition[]; + /** + * matchPolicy defines how the "rules" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". + * + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook. + * + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook. + * + * Defaults to "Equivalent" + */ + matchPolicy?: string; + /** The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required. */ + name: string; + namespaceSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + objectSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. */ + rules?: Schemas.io$k8s$api$admissionregistration$v1$RuleWithOperations[]; + /** SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. */ + sideEffects: string; + /** TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds. */ + timeoutSeconds?: number; + } + /** ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. */ + export interface io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** Webhooks is a list of webhooks and the affected resources and operations. */ + webhooks?: Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhook[]; + } + /** ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration. */ + export interface io$k8s$api$admissionregistration$v1$ValidatingWebhookConfigurationList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of ValidatingWebhookConfiguration. */ + items: Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** WebhookClientConfig contains the information to make a TLS connection with the webhook */ + export interface io$k8s$api$admissionregistration$v1$WebhookClientConfig { + /** `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + caBundle?: string; + service?: Schemas.io$k8s$api$admissionregistration$v1$ServiceReference; + /** + * `url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. + * + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. + * + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * + * The scheme must be "https"; the URL must begin with "https://". + * + * A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. + * + * Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. + */ + url?: string; + } + /** AuditAnnotation describes how to produce an audit annotation for an API request. */ + export interface io$k8s$api$admissionregistration$v1alpha1$AuditAnnotation { + /** + * key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length. + * + * The key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: "{ValidatingAdmissionPolicy name}/{key}". + * + * If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded. + * + * Required. + */ + key: string; + /** + * valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb. + * + * If multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list. + * + * Required. + */ + valueExpression: string; + } + /** ExpressionWarning is a warning information that targets a specific expression. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ExpressionWarning { + /** The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is "spec.validations[0].expression" */ + fieldRef: string; + /** The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler. */ + warning: string; + } + export interface io$k8s$api$admissionregistration$v1alpha1$MatchCondition { + /** + * Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables: + * + * 'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. + * See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz + * 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the + * request resource. + * Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/ + * + * Required. + */ + expression: string; + /** + * Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName') + * + * Required. + */ + name: string; + } + /** MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded) */ + export interface io$k8s$api$admissionregistration$v1alpha1$MatchResources { + /** ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded) */ + excludeResourceRules?: Schemas.io$k8s$api$admissionregistration$v1alpha1$NamedRuleWithOperations[]; + /** + * matchPolicy defines how the "MatchResources" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". + * + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy. + * + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy. + * + * Defaults to "Equivalent" + */ + matchPolicy?: string; + namespaceSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + objectSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule. */ + resourceRules?: Schemas.io$k8s$api$admissionregistration$v1alpha1$NamedRuleWithOperations[]; + } + /** NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames. */ + export interface io$k8s$api$admissionregistration$v1alpha1$NamedRuleWithOperations { + /** APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. */ + apiGroups?: string[]; + /** APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. */ + apiVersions?: string[]; + /** Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required. */ + operations?: string[]; + /** ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. */ + resourceNames?: string[]; + /** + * Resources is a list of resources this rule applies to. + * + * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\*' means all subresources of pods. '\*\\/scale' means all scale subresources. '\*\/\*' means all resources and their subresources. + * + * If wildcard is present, the validation rule will ensure resources do not overlap with each other. + * + * Depending on the enclosing object, subresources might not be allowed. Required. + */ + resources?: string[]; + /** scope specifies the scope of this rule. Valid values are "Cluster", "Namespaced", and "*" "Cluster" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. "Namespaced" means that only namespaced resources will match this rule. "*" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is "*". */ + scope?: string; + } + /** ParamKind is a tuple of Group Kind and Version. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ParamKind { + /** APIVersion is the API group version the resources belong to. In format of "group/version". Required. */ + apiVersion?: string; + /** Kind is the API kind the resources belong to. Required. */ + kind?: string; + } + /** ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ParamRef { + /** + * `name` is the name of the resource being referenced. + * + * `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset. + */ + name?: string; + /** + * namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields. + * + * A per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty. + * + * - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error. + * + * - If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error. + */ + namespace?: string; + /** + * `parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy. + * + * Allowed values are `Allow` or `Deny` Default to `Deny` + */ + parameterNotFoundAction?: string; + selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + } + /** TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy */ + export interface io$k8s$api$admissionregistration$v1alpha1$TypeChecking { + /** The type checking warnings for each expression. */ + expressionWarnings?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ExpressionWarning[]; + } + /** ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicySpec; + status?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyStatus; + } + /** + * ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters. + * + * For a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding. + * + * The CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget. + */ + export interface io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingSpec; + } + /** ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of PolicyBinding. */ + items?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingSpec { + matchResources?: Schemas.io$k8s$api$admissionregistration$v1alpha1$MatchResources; + paramRef?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ParamRef; + /** PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required. */ + policyName?: string; + /** + * validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions. + * + * Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy. + * + * validationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action. + * + * The supported actions values are: + * + * "Deny" specifies that a validation failure results in a denied request. + * + * "Warn" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses. + * + * "Audit" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `"validation.policy.admission.k8s.io/validation_failure": "[{"message": "Invalid value", {"policy": "policy.example.com", {"binding": "policybinding.example.com", {"expressionIndex": "1", {"validationActions": ["Audit"]}]"` + * + * Clients should expect to handle additional values by ignoring any values not recognized. + * + * "Deny" and "Warn" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers. + * + * Required. + */ + validationActions?: string[]; + } + /** ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of ValidatingAdmissionPolicy. */ + items?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicySpec { + /** auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required. */ + auditAnnotations?: Schemas.io$k8s$api$admissionregistration$v1alpha1$AuditAnnotation[]; + /** + * failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings. + * + * A policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource. + * + * failurePolicy does not define how validations that evaluate to false are handled. + * + * When failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced. + * + * Allowed values are Ignore or Fail. Defaults to Fail. + */ + failurePolicy?: string; + /** + * MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed. + * + * If a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions. + * + * The exact matching logic is (in order): + * 1. If ANY matchCondition evaluates to FALSE, the policy is skipped. + * 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated. + * 3. If any matchCondition evaluates to an error (but none are FALSE): + * - If failurePolicy=Fail, reject the request + * - If failurePolicy=Ignore, the policy is skipped + */ + matchConditions?: Schemas.io$k8s$api$admissionregistration$v1alpha1$MatchCondition[]; + matchConstraints?: Schemas.io$k8s$api$admissionregistration$v1alpha1$MatchResources; + paramKind?: Schemas.io$k8s$api$admissionregistration$v1alpha1$ParamKind; + /** Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required. */ + validations?: Schemas.io$k8s$api$admissionregistration$v1alpha1$Validation[]; + /** + * Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy. + * + * The expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic. + */ + variables?: Schemas.io$k8s$api$admissionregistration$v1alpha1$Variable[]; + } + /** ValidatingAdmissionPolicyStatus represents the status of a ValidatingAdmissionPolicy. */ + export interface io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyStatus { + /** The conditions represent the latest available observations of a policy's current state. */ + conditions?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Condition[]; + /** The generation observed by the controller. */ + observedGeneration?: number; + typeChecking?: Schemas.io$k8s$api$admissionregistration$v1alpha1$TypeChecking; + } + /** Validation specifies the CEL expression which is used to apply the validation. */ + export interface io$k8s$api$admissionregistration$v1alpha1$Validation { + /** + * Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables: + * + * - 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value. + * For example, a variable named 'foo' can be accessed as 'variables.foo'. + * - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. + * See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz + * - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the + * request resource. + * + * The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible. + * + * Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are: + * "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", + * "import", "let", "loop", "package", "namespace", "return". + * Examples: + * - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"} + * - Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"} + * - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"} + * + * Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: + * - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and + * non-intersecting elements in `Y` are appended, retaining their partial order. + * - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values + * are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with + * non-intersecting keys are appended, retaining their partial order. + * Required. + */ + expression: string; + /** Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is "failed Expression: {Expression}". */ + message?: string; + /** messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: "object.x must be less than max ("+string(params.max)+")" */ + messageExpression?: string; + /** Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge". If not set, StatusReasonInvalid is used in the response to the client. */ + reason?: string; + } + /** Variable is the definition of a variable that is used for composition. */ + export interface io$k8s$api$admissionregistration$v1alpha1$Variable { + /** Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation. */ + expression: string; + /** Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is "foo", the variable will be available as `variables.foo` */ + name: string; + } + /** AuditAnnotation describes how to produce an audit annotation for an API request. */ + export interface io$k8s$api$admissionregistration$v1beta1$AuditAnnotation { + /** + * key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length. + * + * The key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: "{ValidatingAdmissionPolicy name}/{key}". + * + * If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded. + * + * Required. + */ + key: string; + /** + * valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb. + * + * If multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list. + * + * Required. + */ + valueExpression: string; + } + /** ExpressionWarning is a warning information that targets a specific expression. */ + export interface io$k8s$api$admissionregistration$v1beta1$ExpressionWarning { + /** The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is "spec.validations[0].expression" */ + fieldRef: string; + /** The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler. */ + warning: string; + } + /** MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook. */ + export interface io$k8s$api$admissionregistration$v1beta1$MatchCondition { + /** + * Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables: + * + * 'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. + * See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz + * 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the + * request resource. + * Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/ + * + * Required. + */ + expression: string; + /** + * Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName') + * + * Required. + */ + name: string; + } + /** MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded) */ + export interface io$k8s$api$admissionregistration$v1beta1$MatchResources { + /** ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded) */ + excludeResourceRules?: Schemas.io$k8s$api$admissionregistration$v1beta1$NamedRuleWithOperations[]; + /** + * matchPolicy defines how the "MatchResources" list is used to match incoming requests. Allowed values are "Exact" or "Equivalent". + * + * - Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy. + * + * - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy. + * + * Defaults to "Equivalent" + */ + matchPolicy?: string; + namespaceSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + objectSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule. */ + resourceRules?: Schemas.io$k8s$api$admissionregistration$v1beta1$NamedRuleWithOperations[]; + } + /** NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames. */ + export interface io$k8s$api$admissionregistration$v1beta1$NamedRuleWithOperations { + /** APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. */ + apiGroups?: string[]; + /** APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. */ + apiVersions?: string[]; + /** Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required. */ + operations?: string[]; + /** ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. */ + resourceNames?: string[]; + /** + * Resources is a list of resources this rule applies to. + * + * For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/\\*' means all subresources of pods. '\*\\/scale' means all scale subresources. '\*\/\*' means all resources and their subresources. + * + * If wildcard is present, the validation rule will ensure resources do not overlap with each other. + * + * Depending on the enclosing object, subresources might not be allowed. Required. + */ + resources?: string[]; + /** scope specifies the scope of this rule. Valid values are "Cluster", "Namespaced", and "*" "Cluster" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. "Namespaced" means that only namespaced resources will match this rule. "*" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is "*". */ + scope?: string; + } + /** ParamKind is a tuple of Group Kind and Version. */ + export interface io$k8s$api$admissionregistration$v1beta1$ParamKind { + /** APIVersion is the API group version the resources belong to. In format of "group/version". Required. */ + apiVersion?: string; + /** Kind is the API kind the resources belong to. Required. */ + kind?: string; + } + /** ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding. */ + export interface io$k8s$api$admissionregistration$v1beta1$ParamRef { + /** + * name is the name of the resource being referenced. + * + * One of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset. + * + * A single parameter used for all admission requests can be configured by setting the `name` field, leaving `selector` blank, and setting namespace if `paramKind` is namespace-scoped. + */ + name?: string; + /** + * namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields. + * + * A per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty. + * + * - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error. + * + * - If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error. + */ + namespace?: string; + /** + * `parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy. + * + * Allowed values are `Allow` or `Deny` + * + * Required + */ + parameterNotFoundAction?: string; + selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + } + /** TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy */ + export interface io$k8s$api$admissionregistration$v1beta1$TypeChecking { + /** The type checking warnings for each expression. */ + expressionWarnings?: Schemas.io$k8s$api$admissionregistration$v1beta1$ExpressionWarning[]; + } + /** ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it. */ + export interface io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicySpec; + status?: Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyStatus; + } + /** + * ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters. + * + * For a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding. + * + * The CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget. + */ + export interface io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingSpec; + } + /** ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding. */ + export interface io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of PolicyBinding. */ + items?: Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding. */ + export interface io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingSpec { + matchResources?: Schemas.io$k8s$api$admissionregistration$v1beta1$MatchResources; + paramRef?: Schemas.io$k8s$api$admissionregistration$v1beta1$ParamRef; + /** PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required. */ + policyName?: string; + /** + * validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions. + * + * Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy. + * + * validationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action. + * + * The supported actions values are: + * + * "Deny" specifies that a validation failure results in a denied request. + * + * "Warn" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses. + * + * "Audit" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `"validation.policy.admission.k8s.io/validation_failure": "[{"message": "Invalid value", {"policy": "policy.example.com", {"binding": "policybinding.example.com", {"expressionIndex": "1", {"validationActions": ["Audit"]}]"` + * + * Clients should expect to handle additional values by ignoring any values not recognized. + * + * "Deny" and "Warn" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers. + * + * Required. + */ + validationActions?: string[]; + } + /** ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy. */ + export interface io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of ValidatingAdmissionPolicy. */ + items?: Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy. */ + export interface io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicySpec { + /** auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required. */ + auditAnnotations?: Schemas.io$k8s$api$admissionregistration$v1beta1$AuditAnnotation[]; + /** + * failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings. + * + * A policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource. + * + * failurePolicy does not define how validations that evaluate to false are handled. + * + * When failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced. + * + * Allowed values are Ignore or Fail. Defaults to Fail. + */ + failurePolicy?: string; + /** + * MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed. + * + * If a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions. + * + * The exact matching logic is (in order): + * 1. If ANY matchCondition evaluates to FALSE, the policy is skipped. + * 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated. + * 3. If any matchCondition evaluates to an error (but none are FALSE): + * - If failurePolicy=Fail, reject the request + * - If failurePolicy=Ignore, the policy is skipped + */ + matchConditions?: Schemas.io$k8s$api$admissionregistration$v1beta1$MatchCondition[]; + matchConstraints?: Schemas.io$k8s$api$admissionregistration$v1beta1$MatchResources; + paramKind?: Schemas.io$k8s$api$admissionregistration$v1beta1$ParamKind; + /** Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required. */ + validations?: Schemas.io$k8s$api$admissionregistration$v1beta1$Validation[]; + /** + * Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy. + * + * The expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic. + */ + variables?: Schemas.io$k8s$api$admissionregistration$v1beta1$Variable[]; + } + /** ValidatingAdmissionPolicyStatus represents the status of an admission validation policy. */ + export interface io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyStatus { + /** The conditions represent the latest available observations of a policy's current state. */ + conditions?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Condition[]; + /** The generation observed by the controller. */ + observedGeneration?: number; + typeChecking?: Schemas.io$k8s$api$admissionregistration$v1beta1$TypeChecking; + } + /** Validation specifies the CEL expression which is used to apply the validation. */ + export interface io$k8s$api$admissionregistration$v1beta1$Validation { + /** + * Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables: + * + * - 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value. + * For example, a variable named 'foo' can be accessed as 'variables.foo'. + * - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request. + * See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz + * - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the + * request resource. + * + * The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible. + * + * Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are: + * "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", + * "import", "let", "loop", "package", "namespace", "return". + * Examples: + * - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"} + * - Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"} + * - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"} + * + * Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: + * - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and + * non-intersecting elements in `Y` are appended, retaining their partial order. + * - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values + * are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with + * non-intersecting keys are appended, retaining their partial order. + * Required. + */ + expression: string; + /** Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is "failed Expression: {Expression}". */ + message?: string; + /** messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: "object.x must be less than max ("+string(params.max)+")" */ + messageExpression?: string; + /** Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge". If not set, StatusReasonInvalid is used in the response to the client. */ + reason?: string; + } + /** Variable is the definition of a variable that is used for composition. A variable is defined as a named expression. */ + export interface io$k8s$api$admissionregistration$v1beta1$Variable { + /** Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation. */ + expression: string; + /** Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is "foo", the variable will be available as `variables.foo` */ + name: string; + } + /** An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend. */ + export interface io$k8s$api$apiserverinternal$v1alpha1$ServerStorageVersion { + /** The ID of the reporting API server. */ + apiServerID?: string; + /** The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions. */ + decodableVersions?: string[]; + /** The API server encodes the object to this version when persisting it in the backend (e.g., etcd). */ + encodingVersion?: string; + /** The API server can serve these versions. DecodableVersions must include all ServedVersions. */ + servedVersions?: string[]; + } + /** Storage version of a specific resource. */ + export interface io$k8s$api$apiserverinternal$v1alpha1$StorageVersion { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionSpec; + status: Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionStatus; + } + /** Describes the state of the storageVersion at a certain point. */ + export interface io$k8s$api$apiserverinternal$v1alpha1$StorageVersionCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** A human readable message indicating details about the transition. */ + message?: string; + /** If set, this represents the .metadata.generation that the condition was set based upon. */ + observedGeneration?: number; + /** The reason for the condition's last transition. */ + reason: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of the condition. */ + type: string; + } + /** A list of StorageVersions. */ + export interface io$k8s$api$apiserverinternal$v1alpha1$StorageVersionList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items holds a list of StorageVersion */ + items: Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** StorageVersionSpec is an empty spec. */ + export interface io$k8s$api$apiserverinternal$v1alpha1$StorageVersionSpec { + } + /** API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend. */ + export interface io$k8s$api$apiserverinternal$v1alpha1$StorageVersionStatus { + /** If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality. */ + commonEncodingVersion?: string; + /** The latest available observations of the storageVersion's state. */ + conditions?: Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionCondition[]; + /** The reported versions per API server instance. */ + storageVersions?: Schemas.io$k8s$api$apiserverinternal$v1alpha1$ServerStorageVersion[]; + } + /** ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. */ + export interface io$k8s$api$apps$v1$ControllerRevision { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + data?: Schemas.io$k8s$apimachinery$pkg$runtime$RawExtension; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** Revision indicates the revision of the state represented by Data. */ + revision: number; + } + /** ControllerRevisionList is a resource containing a list of ControllerRevision objects. */ + export interface io$k8s$api$apps$v1$ControllerRevisionList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of ControllerRevisions */ + items: Schemas.io$k8s$api$apps$v1$ControllerRevision[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** DaemonSet represents the configuration of a daemon set. */ + export interface io$k8s$api$apps$v1$DaemonSet { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$apps$v1$DaemonSetSpec; + status?: Schemas.io$k8s$api$apps$v1$DaemonSetStatus; + } + /** DaemonSetCondition describes the state of a DaemonSet at a certain point. */ + export interface io$k8s$api$apps$v1$DaemonSetCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** A human readable message indicating details about the transition. */ + message?: string; + /** The reason for the condition's last transition. */ + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of DaemonSet condition. */ + type: string; + } + /** DaemonSetList is a collection of daemon sets. */ + export interface io$k8s$api$apps$v1$DaemonSetList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** A list of daemon sets. */ + items: Schemas.io$k8s$api$apps$v1$DaemonSet[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** DaemonSetSpec is the specification of a daemon set. */ + export interface io$k8s$api$apps$v1$DaemonSetSpec { + /** The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). */ + minReadySeconds?: number; + /** The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. */ + revisionHistoryLimit?: number; + selector: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + template: Schemas.io$k8s$api$core$v1$PodTemplateSpec; + updateStrategy?: Schemas.io$k8s$api$apps$v1$DaemonSetUpdateStrategy; + } + /** DaemonSetStatus represents the current status of a daemon set. */ + export interface io$k8s$api$apps$v1$DaemonSetStatus { + /** Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. */ + collisionCount?: number; + /** Represents the latest available observations of a DaemonSet's current state. */ + conditions?: Schemas.io$k8s$api$apps$v1$DaemonSetCondition[]; + /** The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ */ + currentNumberScheduled: number; + /** The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ */ + desiredNumberScheduled: number; + /** The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds) */ + numberAvailable?: number; + /** The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ */ + numberMisscheduled: number; + /** numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition. */ + numberReady: number; + /** The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds) */ + numberUnavailable?: number; + /** The most recent generation observed by the daemon set controller. */ + observedGeneration?: number; + /** The total number of nodes that are running updated daemon pod */ + updatedNumberScheduled?: number; + } + /** DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet. */ + export interface io$k8s$api$apps$v1$DaemonSetUpdateStrategy { + rollingUpdate?: Schemas.io$k8s$api$apps$v1$RollingUpdateDaemonSet; + /** Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate. */ + type?: string; + } + /** Deployment enables declarative updates for Pods and ReplicaSets. */ + export interface io$k8s$api$apps$v1$Deployment { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$apps$v1$DeploymentSpec; + status?: Schemas.io$k8s$api$apps$v1$DeploymentStatus; + } + /** DeploymentCondition describes the state of a deployment at a certain point. */ + export interface io$k8s$api$apps$v1$DeploymentCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + lastUpdateTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** A human readable message indicating details about the transition. */ + message?: string; + /** The reason for the condition's last transition. */ + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of deployment condition. */ + type: string; + } + /** DeploymentList is a list of Deployments. */ + export interface io$k8s$api$apps$v1$DeploymentList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of Deployments. */ + items: Schemas.io$k8s$api$apps$v1$Deployment[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** DeploymentSpec is the specification of the desired behavior of the Deployment. */ + export interface io$k8s$api$apps$v1$DeploymentSpec { + /** Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) */ + minReadySeconds?: number; + /** Indicates that the deployment is paused. */ + paused?: boolean; + /** The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s. */ + progressDeadlineSeconds?: number; + /** Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1. */ + replicas?: number; + /** The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. */ + revisionHistoryLimit?: number; + selector: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + strategy?: Schemas.io$k8s$api$apps$v1$DeploymentStrategy; + template: Schemas.io$k8s$api$core$v1$PodTemplateSpec; + } + /** DeploymentStatus is the most recently observed status of the Deployment. */ + export interface io$k8s$api$apps$v1$DeploymentStatus { + /** Total number of available pods (ready for at least minReadySeconds) targeted by this deployment. */ + availableReplicas?: number; + /** Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet. */ + collisionCount?: number; + /** Represents the latest available observations of a deployment's current state. */ + conditions?: Schemas.io$k8s$api$apps$v1$DeploymentCondition[]; + /** The generation observed by the deployment controller. */ + observedGeneration?: number; + /** readyReplicas is the number of pods targeted by this Deployment with a Ready Condition. */ + readyReplicas?: number; + /** Total number of non-terminated pods targeted by this deployment (their labels match the selector). */ + replicas?: number; + /** Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created. */ + unavailableReplicas?: number; + /** Total number of non-terminated pods targeted by this deployment that have the desired template spec. */ + updatedReplicas?: number; + } + /** DeploymentStrategy describes how to replace existing pods with new ones. */ + export interface io$k8s$api$apps$v1$DeploymentStrategy { + rollingUpdate?: Schemas.io$k8s$api$apps$v1$RollingUpdateDeployment; + /** Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. */ + type?: string; + } + /** ReplicaSet ensures that a specified number of pod replicas are running at any given time. */ + export interface io$k8s$api$apps$v1$ReplicaSet { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$apps$v1$ReplicaSetSpec; + status?: Schemas.io$k8s$api$apps$v1$ReplicaSetStatus; + } + /** ReplicaSetCondition describes the state of a replica set at a certain point. */ + export interface io$k8s$api$apps$v1$ReplicaSetCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** A human readable message indicating details about the transition. */ + message?: string; + /** The reason for the condition's last transition. */ + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of replica set condition. */ + type: string; + } + /** ReplicaSetList is a collection of ReplicaSets. */ + export interface io$k8s$api$apps$v1$ReplicaSetList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller */ + items: Schemas.io$k8s$api$apps$v1$ReplicaSet[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ReplicaSetSpec is the specification of a ReplicaSet. */ + export interface io$k8s$api$apps$v1$ReplicaSetSpec { + /** Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) */ + minReadySeconds?: number; + /** Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller */ + replicas?: number; + selector: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + template?: Schemas.io$k8s$api$core$v1$PodTemplateSpec; + } + /** ReplicaSetStatus represents the current status of a ReplicaSet. */ + export interface io$k8s$api$apps$v1$ReplicaSetStatus { + /** The number of available replicas (ready for at least minReadySeconds) for this replica set. */ + availableReplicas?: number; + /** Represents the latest available observations of a replica set's current state. */ + conditions?: Schemas.io$k8s$api$apps$v1$ReplicaSetCondition[]; + /** The number of pods that have labels matching the labels of the pod template of the replicaset. */ + fullyLabeledReplicas?: number; + /** ObservedGeneration reflects the generation of the most recently observed ReplicaSet. */ + observedGeneration?: number; + /** readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition. */ + readyReplicas?: number; + /** Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller */ + replicas: number; + } + /** Spec to control the desired behavior of daemon set rolling update. */ + export interface io$k8s$api$apps$v1$RollingUpdateDaemonSet { + maxSurge?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + maxUnavailable?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + } + /** Spec to control the desired behavior of rolling update. */ + export interface io$k8s$api$apps$v1$RollingUpdateDeployment { + maxSurge?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + maxUnavailable?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + } + /** RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType. */ + export interface io$k8s$api$apps$v1$RollingUpdateStatefulSetStrategy { + maxUnavailable?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + /** Partition indicates the ordinal at which the StatefulSet should be partitioned for updates. During a rolling update, all pods from ordinal Replicas-1 to Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched. This is helpful in being able to do a canary based deployment. The default value is 0. */ + partition?: number; + } + /** + * StatefulSet represents a set of pods with consistent identities. Identities are defined as: + * - Network: A single stable DNS and hostname. + * - Storage: As many VolumeClaims as requested. + * + * The StatefulSet guarantees that a given network identity will always map to the same storage identity. + */ + export interface io$k8s$api$apps$v1$StatefulSet { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$apps$v1$StatefulSetSpec; + status?: Schemas.io$k8s$api$apps$v1$StatefulSetStatus; + } + /** StatefulSetCondition describes the state of a statefulset at a certain point. */ + export interface io$k8s$api$apps$v1$StatefulSetCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** A human readable message indicating details about the transition. */ + message?: string; + /** The reason for the condition's last transition. */ + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of statefulset condition. */ + type: string; + } + /** StatefulSetList is a collection of StatefulSets. */ + export interface io$k8s$api$apps$v1$StatefulSetList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of stateful sets. */ + items: Schemas.io$k8s$api$apps$v1$StatefulSet[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet. */ + export interface io$k8s$api$apps$v1$StatefulSetOrdinals { + /** + * start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range: + * [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas). + * If unset, defaults to 0. Replica indices will be in the range: + * [0, .spec.replicas). + */ + start?: number; + } + /** StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates. */ + export interface io$k8s$api$apps$v1$StatefulSetPersistentVolumeClaimRetentionPolicy { + /** WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted. */ + whenDeleted?: string; + /** WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down. The default policy of `Retain` causes PVCs to not be affected by a scaledown. The `Delete` policy causes the associated PVCs for any excess pods above the replica count to be deleted. */ + whenScaled?: string; + } + /** A StatefulSetSpec is the specification of a StatefulSet. */ + export interface io$k8s$api$apps$v1$StatefulSetSpec { + /** Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) */ + minReadySeconds?: number; + ordinals?: Schemas.io$k8s$api$apps$v1$StatefulSetOrdinals; + persistentVolumeClaimRetentionPolicy?: Schemas.io$k8s$api$apps$v1$StatefulSetPersistentVolumeClaimRetentionPolicy; + /** podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once. */ + podManagementPolicy?: string; + /** replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1. */ + replicas?: number; + /** revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10. */ + revisionHistoryLimit?: number; + selector: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller. */ + serviceName: string; + template: Schemas.io$k8s$api$core$v1$PodTemplateSpec; + updateStrategy?: Schemas.io$k8s$api$apps$v1$StatefulSetUpdateStrategy; + /** volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. */ + volumeClaimTemplates?: Schemas.io$k8s$api$core$v1$PersistentVolumeClaim[]; + } + /** StatefulSetStatus represents the current state of a StatefulSet. */ + export interface io$k8s$api$apps$v1$StatefulSetStatus { + /** Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset. */ + availableReplicas?: number; + /** collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. */ + collisionCount?: number; + /** Represents the latest available observations of a statefulset's current state. */ + conditions?: Schemas.io$k8s$api$apps$v1$StatefulSetCondition[]; + /** currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision. */ + currentReplicas?: number; + /** currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas). */ + currentRevision?: string; + /** observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server. */ + observedGeneration?: number; + /** readyReplicas is the number of pods created for this StatefulSet with a Ready Condition. */ + readyReplicas?: number; + /** replicas is the number of Pods created by the StatefulSet controller. */ + replicas: number; + /** updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas) */ + updateRevision?: string; + /** updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision. */ + updatedReplicas?: number; + } + /** StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy. */ + export interface io$k8s$api$apps$v1$StatefulSetUpdateStrategy { + rollingUpdate?: Schemas.io$k8s$api$apps$v1$RollingUpdateStatefulSetStrategy; + /** Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate. */ + type?: string; + } + /** BoundObjectReference is a reference to an object that a token is bound to. */ + export interface io$k8s$api$authentication$v1$BoundObjectReference { + /** API version of the referent. */ + apiVersion?: string; + /** Kind of the referent. Valid kinds are 'Pod' and 'Secret'. */ + kind?: string; + /** Name of the referent. */ + name?: string; + /** UID of the referent. */ + uid?: string; + } + /** SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase. */ + export interface io$k8s$api$authentication$v1$SelfSubjectReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + status?: Schemas.io$k8s$api$authentication$v1$SelfSubjectReviewStatus; + } + /** SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user. */ + export interface io$k8s$api$authentication$v1$SelfSubjectReviewStatus { + userInfo?: Schemas.io$k8s$api$authentication$v1$UserInfo; + } + /** TokenRequest requests a token for a given service account. */ + export interface io$k8s$api$authentication$v1$TokenRequest { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$authentication$v1$TokenRequestSpec; + status?: Schemas.io$k8s$api$authentication$v1$TokenRequestStatus; + } + /** TokenRequestSpec contains client provided parameters of a token request. */ + export interface io$k8s$api$authentication$v1$TokenRequestSpec { + /** Audiences are the intendend audiences of the token. A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences. */ + audiences: string[]; + boundObjectRef?: Schemas.io$k8s$api$authentication$v1$BoundObjectReference; + /** ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response. */ + expirationSeconds?: number; + } + /** TokenRequestStatus is the result of a token request. */ + export interface io$k8s$api$authentication$v1$TokenRequestStatus { + expirationTimestamp: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Token is the opaque bearer token. */ + token: string; + } + /** TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver. */ + export interface io$k8s$api$authentication$v1$TokenReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$authentication$v1$TokenReviewSpec; + status?: Schemas.io$k8s$api$authentication$v1$TokenReviewStatus; + } + /** TokenReviewSpec is a description of the token authentication request. */ + export interface io$k8s$api$authentication$v1$TokenReviewSpec { + /** Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver. */ + audiences?: string[]; + /** Token is the opaque bearer token. */ + token?: string; + } + /** TokenReviewStatus is the result of the token authentication request. */ + export interface io$k8s$api$authentication$v1$TokenReviewStatus { + /** Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is "true", the token is valid against the audience of the Kubernetes API server. */ + audiences?: string[]; + /** Authenticated indicates that the token was associated with a known user. */ + authenticated?: boolean; + /** Error indicates that the token couldn't be checked */ + error?: string; + user?: Schemas.io$k8s$api$authentication$v1$UserInfo; + } + /** UserInfo holds the information about the user needed to implement the user.Info interface. */ + export interface io$k8s$api$authentication$v1$UserInfo { + /** Any additional information provided by the authenticator. */ + extra?: { + [key: string]: string[]; + }; + /** The names of groups this user is a part of. */ + groups?: string[]; + /** A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs. */ + uid?: string; + /** The name that uniquely identifies this user among all active users. */ + username?: string; + } + /** SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase. */ + export interface io$k8s$api$authentication$v1alpha1$SelfSubjectReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + status?: Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReviewStatus; + } + /** SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user. */ + export interface io$k8s$api$authentication$v1alpha1$SelfSubjectReviewStatus { + userInfo?: Schemas.io$k8s$api$authentication$v1$UserInfo; + } + /** SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase. */ + export interface io$k8s$api$authentication$v1beta1$SelfSubjectReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + status?: Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReviewStatus; + } + /** SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user. */ + export interface io$k8s$api$authentication$v1beta1$SelfSubjectReviewStatus { + userInfo?: Schemas.io$k8s$api$authentication$v1$UserInfo; + } + /** LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. */ + export interface io$k8s$api$authorization$v1$LocalSubjectAccessReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$authorization$v1$SubjectAccessReviewSpec; + status?: Schemas.io$k8s$api$authorization$v1$SubjectAccessReviewStatus; + } + /** NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface */ + export interface io$k8s$api$authorization$v1$NonResourceAttributes { + /** Path is the URL path of the request */ + path?: string; + /** Verb is the standard HTTP verb */ + verb?: string; + } + /** NonResourceRule holds information that describes a rule for the non-resource */ + export interface io$k8s$api$authorization$v1$NonResourceRule { + /** NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. "*" means all. */ + nonResourceURLs?: string[]; + /** Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. "*" means all. */ + verbs: string[]; + } + /** ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface */ + export interface io$k8s$api$authorization$v1$ResourceAttributes { + /** Group is the API Group of the Resource. "*" means all. */ + group?: string; + /** Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all. */ + name?: string; + /** Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview */ + namespace?: string; + /** Resource is one of the existing resource types. "*" means all. */ + resource?: string; + /** Subresource is one of the existing resource types. "" means none. */ + subresource?: string; + /** Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all. */ + verb?: string; + /** Version is the API Version of the Resource. "*" means all. */ + version?: string; + } + /** ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. */ + export interface io$k8s$api$authorization$v1$ResourceRule { + /** APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "*" means all. */ + apiGroups?: string[]; + /** ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. "*" means all. */ + resourceNames?: string[]; + /** + * Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. + * "\*\\/foo" represents the subresource 'foo' for all resources in the specified apiGroups. + */ + resources?: string[]; + /** Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all. */ + verbs: string[]; + } + /** SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action */ + export interface io$k8s$api$authorization$v1$SelfSubjectAccessReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReviewSpec; + status?: Schemas.io$k8s$api$authorization$v1$SubjectAccessReviewStatus; + } + /** SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set */ + export interface io$k8s$api$authorization$v1$SelfSubjectAccessReviewSpec { + nonResourceAttributes?: Schemas.io$k8s$api$authorization$v1$NonResourceAttributes; + resourceAttributes?: Schemas.io$k8s$api$authorization$v1$ResourceAttributes; + } + /** SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. */ + export interface io$k8s$api$authorization$v1$SelfSubjectRulesReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReviewSpec; + status?: Schemas.io$k8s$api$authorization$v1$SubjectRulesReviewStatus; + } + /** SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview. */ + export interface io$k8s$api$authorization$v1$SelfSubjectRulesReviewSpec { + /** Namespace to evaluate rules for. Required. */ + namespace?: string; + } + /** SubjectAccessReview checks whether or not a user or group can perform an action. */ + export interface io$k8s$api$authorization$v1$SubjectAccessReview { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$authorization$v1$SubjectAccessReviewSpec; + status?: Schemas.io$k8s$api$authorization$v1$SubjectAccessReviewStatus; + } + /** SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set */ + export interface io$k8s$api$authorization$v1$SubjectAccessReviewSpec { + /** Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here. */ + extra?: { + [key: string]: string[]; + }; + /** Groups is the groups you're testing for. */ + groups?: string[]; + nonResourceAttributes?: Schemas.io$k8s$api$authorization$v1$NonResourceAttributes; + resourceAttributes?: Schemas.io$k8s$api$authorization$v1$ResourceAttributes; + /** UID information about the requesting user. */ + uid?: string; + /** User is the user you're testing for. If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups */ + user?: string; + } + /** SubjectAccessReviewStatus */ + export interface io$k8s$api$authorization$v1$SubjectAccessReviewStatus { + /** Allowed is required. True if the action would be allowed, false otherwise. */ + allowed: boolean; + /** Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true. */ + denied?: boolean; + /** EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request. */ + evaluationError?: string; + /** Reason is optional. It indicates why a request was allowed or denied. */ + reason?: string; + } + /** SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete. */ + export interface io$k8s$api$authorization$v1$SubjectRulesReviewStatus { + /** EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete. */ + evaluationError?: string; + /** Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation. */ + incomplete: boolean; + /** NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. */ + nonResourceRules: Schemas.io$k8s$api$authorization$v1$NonResourceRule[]; + /** ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. */ + resourceRules: Schemas.io$k8s$api$authorization$v1$ResourceRule[]; + } + /** CrossVersionObjectReference contains enough information to let you identify the referred resource. */ + export interface io$k8s$api$autoscaling$v1$CrossVersionObjectReference { + /** apiVersion is the API version of the referent */ + apiVersion?: string; + /** kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind: string; + /** name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name: string; + } + /** configuration of a horizontal pod autoscaler. */ + export interface io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerSpec; + status?: Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerStatus; + } + /** list of horizontal pod autoscaler objects. */ + export interface io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of horizontal pod autoscaler objects. */ + items: Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** specification of a horizontal pod autoscaler. */ + export interface io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerSpec { + /** maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas. */ + maxReplicas: number; + /** minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available. */ + minReplicas?: number; + scaleTargetRef: Schemas.io$k8s$api$autoscaling$v1$CrossVersionObjectReference; + /** targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used. */ + targetCPUUtilizationPercentage?: number; + } + /** current status of a horizontal pod autoscaler */ + export interface io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerStatus { + /** currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU. */ + currentCPUUtilizationPercentage?: number; + /** currentReplicas is the current number of replicas of pods managed by this autoscaler. */ + currentReplicas: number; + /** desiredReplicas is the desired number of replicas of pods managed by this autoscaler. */ + desiredReplicas: number; + lastScaleTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** observedGeneration is the most recent generation observed by this autoscaler. */ + observedGeneration?: number; + } + /** Scale represents a scaling request for a resource. */ + export interface io$k8s$api$autoscaling$v1$Scale { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$autoscaling$v1$ScaleSpec; + status?: Schemas.io$k8s$api$autoscaling$v1$ScaleStatus; + } + /** ScaleSpec describes the attributes of a scale subresource. */ + export interface io$k8s$api$autoscaling$v1$ScaleSpec { + /** replicas is the desired number of instances for the scaled object. */ + replicas?: number; + } + /** ScaleStatus represents the current status of a scale subresource. */ + export interface io$k8s$api$autoscaling$v1$ScaleStatus { + /** replicas is the actual number of observed instances of the scaled object. */ + replicas: number; + /** selector is the label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ */ + selector?: string; + } + /** ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set. */ + export interface io$k8s$api$autoscaling$v2$ContainerResourceMetricSource { + /** container is the name of the container in the pods of the scaling target */ + container: string; + /** name is the name of the resource in question. */ + name: string; + target: Schemas.io$k8s$api$autoscaling$v2$MetricTarget; + } + /** ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. */ + export interface io$k8s$api$autoscaling$v2$ContainerResourceMetricStatus { + /** container is the name of the container in the pods of the scaling target */ + container: string; + current: Schemas.io$k8s$api$autoscaling$v2$MetricValueStatus; + /** name is the name of the resource in question. */ + name: string; + } + /** CrossVersionObjectReference contains enough information to let you identify the referred resource. */ + export interface io$k8s$api$autoscaling$v2$CrossVersionObjectReference { + /** apiVersion is the API version of the referent */ + apiVersion?: string; + /** kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind: string; + /** name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name: string; + } + /** ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). */ + export interface io$k8s$api$autoscaling$v2$ExternalMetricSource { + metric: Schemas.io$k8s$api$autoscaling$v2$MetricIdentifier; + target: Schemas.io$k8s$api$autoscaling$v2$MetricTarget; + } + /** ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object. */ + export interface io$k8s$api$autoscaling$v2$ExternalMetricStatus { + current: Schemas.io$k8s$api$autoscaling$v2$MetricValueStatus; + metric: Schemas.io$k8s$api$autoscaling$v2$MetricIdentifier; + } + /** HPAScalingPolicy is a single policy which must hold true for a specified past interval. */ + export interface io$k8s$api$autoscaling$v2$HPAScalingPolicy { + /** periodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min). */ + periodSeconds: number; + /** type is used to specify the scaling policy. */ + type: string; + /** value contains the amount of change which is permitted by the policy. It must be greater than zero */ + value: number; + } + /** HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen. */ + export interface io$k8s$api$autoscaling$v2$HPAScalingRules { + /** policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid */ + policies?: Schemas.io$k8s$api$autoscaling$v2$HPAScalingPolicy[]; + /** selectPolicy is used to specify which policy should be used. If not set, the default value Max is used. */ + selectPolicy?: string; + /** stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long). */ + stabilizationWindowSeconds?: number; + } + /** HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified. */ + export interface io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerSpec; + status?: Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerStatus; + } + /** HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). */ + export interface io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerBehavior { + scaleDown?: Schemas.io$k8s$api$autoscaling$v2$HPAScalingRules; + scaleUp?: Schemas.io$k8s$api$autoscaling$v2$HPAScalingRules; + } + /** HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point. */ + export interface io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** message is a human-readable explanation containing details about the transition */ + message?: string; + /** reason is the reason for the condition's last transition. */ + reason?: string; + /** status is the status of the condition (True, False, Unknown) */ + status: string; + /** type describes the current condition */ + type: string; + } + /** HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects. */ + export interface io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of horizontal pod autoscaler objects. */ + items: Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler. */ + export interface io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerSpec { + behavior?: Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerBehavior; + /** maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas. */ + maxReplicas: number; + /** metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization. */ + metrics?: Schemas.io$k8s$api$autoscaling$v2$MetricSpec[]; + /** minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available. */ + minReplicas?: number; + scaleTargetRef: Schemas.io$k8s$api$autoscaling$v2$CrossVersionObjectReference; + } + /** HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler. */ + export interface io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerStatus { + /** conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met. */ + conditions?: Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerCondition[]; + /** currentMetrics is the last read state of the metrics used by this autoscaler. */ + currentMetrics?: Schemas.io$k8s$api$autoscaling$v2$MetricStatus[]; + /** currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler. */ + currentReplicas?: number; + /** desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler. */ + desiredReplicas: number; + lastScaleTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** observedGeneration is the most recent generation observed by this autoscaler. */ + observedGeneration?: number; + } + /** MetricIdentifier defines the name and optionally selector for a metric */ + export interface io$k8s$api$autoscaling$v2$MetricIdentifier { + /** name is the name of the given metric */ + name: string; + selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + } + /** MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once). */ + export interface io$k8s$api$autoscaling$v2$MetricSpec { + containerResource?: Schemas.io$k8s$api$autoscaling$v2$ContainerResourceMetricSource; + external?: Schemas.io$k8s$api$autoscaling$v2$ExternalMetricSource; + object?: Schemas.io$k8s$api$autoscaling$v2$ObjectMetricSource; + pods?: Schemas.io$k8s$api$autoscaling$v2$PodsMetricSource; + resource?: Schemas.io$k8s$api$autoscaling$v2$ResourceMetricSource; + /** type is the type of metric source. It should be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled */ + type: string; + } + /** MetricStatus describes the last-read state of a single metric. */ + export interface io$k8s$api$autoscaling$v2$MetricStatus { + containerResource?: Schemas.io$k8s$api$autoscaling$v2$ContainerResourceMetricStatus; + external?: Schemas.io$k8s$api$autoscaling$v2$ExternalMetricStatus; + object?: Schemas.io$k8s$api$autoscaling$v2$ObjectMetricStatus; + pods?: Schemas.io$k8s$api$autoscaling$v2$PodsMetricStatus; + resource?: Schemas.io$k8s$api$autoscaling$v2$ResourceMetricStatus; + /** type is the type of metric source. It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled */ + type: string; + } + /** MetricTarget defines the target value, average value, or average utilization of a specific metric */ + export interface io$k8s$api$autoscaling$v2$MetricTarget { + /** averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type */ + averageUtilization?: number; + averageValue?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + /** type represents whether the metric type is Utilization, Value, or AverageValue */ + type: string; + value?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + } + /** MetricValueStatus holds the current value for a metric */ + export interface io$k8s$api$autoscaling$v2$MetricValueStatus { + /** currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. */ + averageUtilization?: number; + averageValue?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + value?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + } + /** ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object). */ + export interface io$k8s$api$autoscaling$v2$ObjectMetricSource { + describedObject: Schemas.io$k8s$api$autoscaling$v2$CrossVersionObjectReference; + metric: Schemas.io$k8s$api$autoscaling$v2$MetricIdentifier; + target: Schemas.io$k8s$api$autoscaling$v2$MetricTarget; + } + /** ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object). */ + export interface io$k8s$api$autoscaling$v2$ObjectMetricStatus { + current: Schemas.io$k8s$api$autoscaling$v2$MetricValueStatus; + describedObject: Schemas.io$k8s$api$autoscaling$v2$CrossVersionObjectReference; + metric: Schemas.io$k8s$api$autoscaling$v2$MetricIdentifier; + } + /** PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value. */ + export interface io$k8s$api$autoscaling$v2$PodsMetricSource { + metric: Schemas.io$k8s$api$autoscaling$v2$MetricIdentifier; + target: Schemas.io$k8s$api$autoscaling$v2$MetricTarget; + } + /** PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second). */ + export interface io$k8s$api$autoscaling$v2$PodsMetricStatus { + current: Schemas.io$k8s$api$autoscaling$v2$MetricValueStatus; + metric: Schemas.io$k8s$api$autoscaling$v2$MetricIdentifier; + } + /** ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set. */ + export interface io$k8s$api$autoscaling$v2$ResourceMetricSource { + /** name is the name of the resource in question. */ + name: string; + target: Schemas.io$k8s$api$autoscaling$v2$MetricTarget; + } + /** ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. */ + export interface io$k8s$api$autoscaling$v2$ResourceMetricStatus { + current: Schemas.io$k8s$api$autoscaling$v2$MetricValueStatus; + /** name is the name of the resource in question. */ + name: string; + } + /** CronJob represents the configuration of a single cron job. */ + export interface io$k8s$api$batch$v1$CronJob { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$batch$v1$CronJobSpec; + status?: Schemas.io$k8s$api$batch$v1$CronJobStatus; + } + /** CronJobList is a collection of cron jobs. */ + export interface io$k8s$api$batch$v1$CronJobList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of CronJobs. */ + items: Schemas.io$k8s$api$batch$v1$CronJob[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** CronJobSpec describes how the job execution will look like and when it will actually run. */ + export interface io$k8s$api$batch$v1$CronJobSpec { + /** + * Specifies how to treat concurrent executions of a Job. Valid values are: + * + * - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one + */ + concurrencyPolicy?: string; + /** The number of failed finished jobs to retain. Value must be non-negative integer. Defaults to 1. */ + failedJobsHistoryLimit?: number; + jobTemplate: Schemas.io$k8s$api$batch$v1$JobTemplateSpec; + /** The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron. */ + schedule: string; + /** Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones. */ + startingDeadlineSeconds?: number; + /** The number of successful finished jobs to retain. Value must be non-negative integer. Defaults to 3. */ + successfulJobsHistoryLimit?: number; + /** This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false. */ + suspend?: boolean; + /** The time zone name for the given schedule, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones. If not specified, this will default to the time zone of the kube-controller-manager process. The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution. If no system-wide time zone database can be found a bundled version of the database is used instead. If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason UnknownTimeZone. More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones */ + timeZone?: string; + } + /** CronJobStatus represents the current state of a cron job. */ + export interface io$k8s$api$batch$v1$CronJobStatus { + /** A list of pointers to currently running jobs. */ + active?: Schemas.io$k8s$api$core$v1$ObjectReference[]; + lastScheduleTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + lastSuccessfulTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + } + /** Job represents the configuration of a single job. */ + export interface io$k8s$api$batch$v1$Job { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$batch$v1$JobSpec; + status?: Schemas.io$k8s$api$batch$v1$JobStatus; + } + /** JobCondition describes current state of a job. */ + export interface io$k8s$api$batch$v1$JobCondition { + lastProbeTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Human readable message indicating details about last transition. */ + message?: string; + /** (brief) reason for the condition's last transition. */ + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of job condition, Complete or Failed. */ + type: string; + } + /** JobList is a collection of jobs. */ + export interface io$k8s$api$batch$v1$JobList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of Jobs. */ + items: Schemas.io$k8s$api$batch$v1$Job[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** JobSpec describes how the job execution will look like. */ + export interface io$k8s$api$batch$v1$JobSpec { + /** Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer. If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again. */ + activeDeadlineSeconds?: number; + /** Specifies the number of retries before marking this job failed. Defaults to 6 */ + backoffLimit?: number; + /** Specifies the limit for the number of retries within an index before marking this index as failed. When enabled the number of failures per index is kept in the pod's batch.kubernetes.io/job-index-failure-count annotation. It can only be set when Job's completionMode=Indexed, and the Pod's restart policy is Never. The field is immutable. This field is alpha-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default). */ + backoffLimitPerIndex?: number; + /** + * completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`. + * + * `NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other. + * + * `Indexed` means that the Pods of a Job get an associated completion index from 0 to (.spec.completions - 1), available in the annotation batch.kubernetes.io/job-completion-index. The Job is considered complete when there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`. + * + * More completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job. + */ + completionMode?: string; + /** Specifies the desired number of successfully finished pods the job should be run with. Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ + completions?: number; + /** manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector */ + manualSelector?: boolean; + /** Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set. Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated. When left as null the job continues execution of all of its indexes and is marked with the `Complete` Job condition. It can only be specified when backoffLimitPerIndex is set. It can be null or up to completions. It is required and must be less than or equal to 10^4 when is completions greater than 10^5. This field is alpha-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default). */ + maxFailedIndexes?: number; + /** Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ + parallelism?: number; + podFailurePolicy?: Schemas.io$k8s$api$batch$v1$PodFailurePolicy; + /** + * podReplacementPolicy specifies when to create replacement Pods. Possible values are: - TerminatingOrFailed means that we recreate pods + * when they are terminating (has a metadata.deletionTimestamp) or failed. + * - Failed means to wait until a previously created Pod is fully terminated (has phase + * Failed or Succeeded) before creating a replacement Pod. + * + * When using podFailurePolicy, Failed is the the only allowed value. TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use. This is an alpha field. Enable JobPodReplacementPolicy to be able to use this field. + */ + podReplacementPolicy?: string; + selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too. Defaults to false. */ + suspend?: boolean; + template: Schemas.io$k8s$api$core$v1$PodTemplateSpec; + /** ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. */ + ttlSecondsAfterFinished?: number; + } + /** JobStatus represents the current state of a Job. */ + export interface io$k8s$api$batch$v1$JobStatus { + /** The number of pending and running pods. */ + active?: number; + /** completedIndexes holds the completed indexes when .spec.completionMode = "Indexed" in a text format. The indexes are represented as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as "1,3-5,7". */ + completedIndexes?: string; + completionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** The latest available observations of an object's current state. When a Job fails, one of the conditions will have type "Failed" and status true. When a Job is suspended, one of the conditions will have type "Suspended" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type "Complete" and status true. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ + conditions?: Schemas.io$k8s$api$batch$v1$JobCondition[]; + /** The number of pods which reached phase Failed. */ + failed?: number; + /** FailedIndexes holds the failed indexes when backoffLimitPerIndex=true. The indexes are represented in the text format analogous as for the `completedIndexes` field, ie. they are kept as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the failed indexes are 1, 3, 4, 5 and 7, they are represented as "1,3-5,7". This field is alpha-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default). */ + failedIndexes?: string; + /** + * The number of pods which have a Ready condition. + * + * This field is beta-level. The job controller populates the field when the feature gate JobReadyPods is enabled (enabled by default). + */ + ready?: number; + startTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** The number of pods which reached phase Succeeded. */ + succeeded?: number; + /** + * The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp). + * + * This field is alpha-level. The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (disabled by default). + */ + terminating?: number; + uncountedTerminatedPods?: Schemas.io$k8s$api$batch$v1$UncountedTerminatedPods; + } + /** JobTemplateSpec describes the data a Job should have when created from a template */ + export interface io$k8s$api$batch$v1$JobTemplateSpec { + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$batch$v1$JobSpec; + } + /** PodFailurePolicy describes how failed pods influence the backoffLimit. */ + export interface io$k8s$api$batch$v1$PodFailurePolicy { + /** A list of pod failure policy rules. The rules are evaluated in order. Once a rule matches a Pod failure, the remaining of the rules are ignored. When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit. At most 20 elements are allowed. */ + rules: Schemas.io$k8s$api$batch$v1$PodFailurePolicyRule[]; + } + /** PodFailurePolicyOnExitCodesRequirement describes the requirement for handling a failed pod based on its container exit codes. In particular, it lookups the .state.terminated.exitCode for each app container and init container status, represented by the .status.containerStatuses and .status.initContainerStatuses fields in the Pod status, respectively. Containers completed with success (exit code 0) are excluded from the requirement check. */ + export interface io$k8s$api$batch$v1$PodFailurePolicyOnExitCodesRequirement { + /** Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names in the pod template. */ + containerName?: string; + /** + * Represents the relationship between the container exit code(s) and the specified values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are: + * + * - In: the requirement is satisfied if at least one container exit code + * (might be multiple if there are multiple containers not restricted + * by the 'containerName' field) is in the set of specified values. + * - NotIn: the requirement is satisfied if at least one container exit code + * (might be multiple if there are multiple containers not restricted + * by the 'containerName' field) is not in the set of specified values. + * Additional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied. + */ + operator: string; + /** Specifies the set of values. Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator. The list of values must be ordered and must not contain duplicates. Value '0' cannot be used for the In operator. At least one element is required. At most 255 elements are allowed. */ + values: number[]; + } + /** PodFailurePolicyOnPodConditionsPattern describes a pattern for matching an actual pod condition type. */ + export interface io$k8s$api$batch$v1$PodFailurePolicyOnPodConditionsPattern { + /** Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True. */ + status: string; + /** Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type. */ + type: string; + } + /** PodFailurePolicyRule describes how a pod failure is handled when the requirements are met. One of onExitCodes and onPodConditions, but not both, can be used in each rule. */ + export interface io$k8s$api$batch$v1$PodFailurePolicyRule { + /** + * Specifies the action taken on a pod failure when the requirements are satisfied. Possible values are: + * + * - FailJob: indicates that the pod's job is marked as Failed and all + * running pods are terminated. + * - FailIndex: indicates that the pod's index is marked as Failed and will + * not be restarted. + * This value is alpha-level. It can be used when the + * `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default). + * - Ignore: indicates that the counter towards the .backoffLimit is not + * incremented and a replacement pod is created. + * - Count: indicates that the pod is handled in the default way - the + * counter towards the .backoffLimit is incremented. + * Additional values are considered to be added in the future. Clients should react to an unknown action by skipping the rule. + */ + action: string; + onExitCodes?: Schemas.io$k8s$api$batch$v1$PodFailurePolicyOnExitCodesRequirement; + /** Represents the requirement on the pod conditions. The requirement is represented as a list of pod condition patterns. The requirement is satisfied if at least one pattern matches an actual pod condition. At most 20 elements are allowed. */ + onPodConditions?: Schemas.io$k8s$api$batch$v1$PodFailurePolicyOnPodConditionsPattern[]; + } + /** UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters. */ + export interface io$k8s$api$batch$v1$UncountedTerminatedPods { + /** failed holds UIDs of failed Pods. */ + failed?: string[]; + /** succeeded holds UIDs of succeeded Pods. */ + succeeded?: string[]; + } + /** + * CertificateSigningRequest objects provide a mechanism to obtain x509 certificates by submitting a certificate signing request, and having it asynchronously approved and issued. + * + * Kubelets use this API to obtain: + * 1. client certificates to authenticate to kube-apiserver (with the "kubernetes.io/kube-apiserver-client-kubelet" signerName). + * 2. serving certificates for TLS endpoints kube-apiserver can connect to securely (with the "kubernetes.io/kubelet-serving" signerName). + * + * This API can be used to request client certificates to authenticate to kube-apiserver (with the "kubernetes.io/kube-apiserver-client" signerName), or to obtain certificates from custom non-Kubernetes signers. + */ + export interface io$k8s$api$certificates$v1$CertificateSigningRequest { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestSpec; + status?: Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestStatus; + } + /** CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object */ + export interface io$k8s$api$certificates$v1$CertificateSigningRequestCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + lastUpdateTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** message contains a human readable message with details about the request state */ + message?: string; + /** reason indicates a brief reason for the request state */ + reason?: string; + /** status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be "False" or "Unknown". */ + status: string; + /** + * type of the condition. Known conditions are "Approved", "Denied", and "Failed". + * + * An "Approved" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer. + * + * A "Denied" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer. + * + * A "Failed" condition is added via the /status subresource, indicating the signer failed to issue the certificate. + * + * Approved and Denied conditions are mutually exclusive. Approved, Denied, and Failed conditions cannot be removed once added. + * + * Only one condition of a given type is allowed. + */ + type: string; + } + /** CertificateSigningRequestList is a collection of CertificateSigningRequest objects */ + export interface io$k8s$api$certificates$v1$CertificateSigningRequestList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a collection of CertificateSigningRequest objects */ + items: Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** CertificateSigningRequestSpec contains the certificate request. */ + export interface io$k8s$api$certificates$v1$CertificateSigningRequestSpec { + /** + * expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration. + * + * The v1.22+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller manager. + * + * Certificate signers may not honor this field for various reasons: + * + * 1. Old signer that is unaware of the field (such as the in-tree + * implementations prior to v1.22) + * 2. Signer whose configured maximum is shorter than the requested duration + * 3. Signer whose configured minimum is longer than the requested duration + * + * The minimum valid value for expirationSeconds is 600, i.e. 10 minutes. + */ + expirationSeconds?: number; + /** extra contains extra attributes of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable. */ + extra?: { + [key: string]: string[]; + }; + /** groups contains group membership of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable. */ + groups?: string[]; + /** request contains an x509 certificate signing request encoded in a "CERTIFICATE REQUEST" PEM block. When serialized as JSON or YAML, the data is additionally base64-encoded. */ + request: string; + /** + * signerName indicates the requested signer, and is a qualified name. + * + * List/watch requests for CertificateSigningRequests can filter on this field using a "spec.signerName=NAME" fieldSelector. + * + * Well-known Kubernetes signers are: + * 1. "kubernetes.io/kube-apiserver-client": issues client certificates that can be used to authenticate to kube-apiserver. + * Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the "csrsigning" controller in kube-controller-manager. + * 2. "kubernetes.io/kube-apiserver-client-kubelet": issues client certificates that kubelets use to authenticate to kube-apiserver. + * Requests for this signer can be auto-approved by the "csrapproving" controller in kube-controller-manager, and can be issued by the "csrsigning" controller in kube-controller-manager. + * 3. "kubernetes.io/kubelet-serving" issues serving certificates that kubelets use to serve TLS endpoints, which kube-apiserver can connect to securely. + * Requests for this signer are never auto-approved by kube-controller-manager, and can be issued by the "csrsigning" controller in kube-controller-manager. + * + * More details are available at https://k8s.io/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signers + * + * Custom signerNames can also be specified. The signer defines: + * 1. Trust distribution: how trust (CA bundles) are distributed. + * 2. Permitted subjects: and behavior when a disallowed subject is requested. + * 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested. + * 4. Required, permitted, or forbidden key usages / extended key usages. + * 5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin. + * 6. Whether or not requests for CA certificates are allowed. + */ + signerName: string; + /** uid contains the uid of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable. */ + uid?: string; + /** + * usages specifies a set of key usages requested in the issued certificate. + * + * Requests for TLS client certificates typically request: "digital signature", "key encipherment", "client auth". + * + * Requests for TLS serving certificates typically request: "key encipherment", "digital signature", "server auth". + * + * Valid values are: + * "signing", "digital signature", "content commitment", + * "key encipherment", "key agreement", "data encipherment", + * "cert sign", "crl sign", "encipher only", "decipher only", "any", + * "server auth", "client auth", + * "code signing", "email protection", "s/mime", + * "ipsec end system", "ipsec tunnel", "ipsec user", + * "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc" + */ + usages?: string[]; + /** username contains the name of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable. */ + username?: string; + } + /** CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate. */ + export interface io$k8s$api$certificates$v1$CertificateSigningRequestStatus { + /** + * certificate is populated with an issued certificate by the signer after an Approved condition is present. This field is set via the /status subresource. Once populated, this field is immutable. + * + * If the certificate signing request is denied, a condition of type "Denied" is added and this field remains empty. If the signer cannot issue the certificate, a condition of type "Failed" is added and this field remains empty. + * + * Validation requirements: + * 1. certificate must contain one or more PEM blocks. + * 2. All PEM blocks must have the "CERTIFICATE" label, contain no headers, and the encoded data + * must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280. + * 3. Non-PEM content may appear before or after the "CERTIFICATE" PEM blocks and is unvalidated, + * to allow for explanatory text as described in section 5.2 of RFC7468. + * + * If more than one PEM block is present, and the definition of the requested spec.signerName does not indicate otherwise, the first block is the issued certificate, and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakes. + * + * The certificate is encoded in PEM format. + * + * When serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of: + * + * base64( + * -----BEGIN CERTIFICATE----- + * ... + * -----END CERTIFICATE----- + * ) + */ + certificate?: string; + /** conditions applied to the request. Known conditions are "Approved", "Denied", and "Failed". */ + conditions?: Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestCondition[]; + } + /** + * ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors (root certificates). + * + * ClusterTrustBundle objects are considered to be readable by any authenticated user in the cluster, because they can be mounted by pods using the `clusterTrustBundle` projection. All service accounts have read access to ClusterTrustBundles by default. Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access to. + * + * It can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer. Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust anchors for that signer. Admission control is used to enforce that only users with permissions on the signer can create or modify the corresponding bundle. + */ + export interface io$k8s$api$certificates$v1alpha1$ClusterTrustBundle { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundleSpec; + } + /** ClusterTrustBundleList is a collection of ClusterTrustBundle objects */ + export interface io$k8s$api$certificates$v1alpha1$ClusterTrustBundleList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a collection of ClusterTrustBundle objects */ + items: Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ClusterTrustBundleSpec contains the signer and trust anchors. */ + export interface io$k8s$api$certificates$v1alpha1$ClusterTrustBundleSpec { + /** + * signerName indicates the associated signer, if any. + * + * In order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificates.k8s.io resource=signers resourceName= verb=attest. + * + * If signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons). For example, for the signer name `example.com/foo`, valid ClusterTrustBundle object names include `example.com:foo:abc` and `example.com:foo:v1`. + * + * If signerName is empty, then the ClusterTrustBundle object's name must not have such a prefix. + * + * List/watch requests for ClusterTrustBundles can filter on this field using a `spec.signerName=NAME` field selector. + */ + signerName?: string; + /** + * trustBundle contains the individual X.509 trust anchors for this bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates. + * + * The data must consist only of PEM certificate blocks that parse as valid X.509 certificates. Each certificate must include a basic constraints extension with the CA bit set. The API server will reject objects that contain duplicate certificates, or that use PEM block headers. + * + * Users of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and inter-block data. + */ + trustBundle: string; + } + /** Lease defines a lease concept. */ + export interface io$k8s$api$coordination$v1$Lease { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$coordination$v1$LeaseSpec; + } + /** LeaseList is a list of Lease objects. */ + export interface io$k8s$api$coordination$v1$LeaseList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a list of schema objects. */ + items: Schemas.io$k8s$api$coordination$v1$Lease[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** LeaseSpec is a specification of a Lease. */ + export interface io$k8s$api$coordination$v1$LeaseSpec { + acquireTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$MicroTime; + /** holderIdentity contains the identity of the holder of a current lease. */ + holderIdentity?: string; + /** leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed renewTime. */ + leaseDurationSeconds?: number; + /** leaseTransitions is the number of transitions of a lease between holders. */ + leaseTransitions?: number; + renewTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$MicroTime; + } + /** + * Represents a Persistent Disk resource in AWS. + * + * An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling. + */ + export interface io$k8s$api$core$v1$AWSElasticBlockStoreVolumeSource { + /** fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore */ + fsType?: string; + /** partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). */ + partition?: number; + /** readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore */ + readOnly?: boolean; + /** volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore */ + volumeID: string; + } + /** Affinity is a group of affinity scheduling rules. */ + export interface io$k8s$api$core$v1$Affinity { + nodeAffinity?: Schemas.io$k8s$api$core$v1$NodeAffinity; + podAffinity?: Schemas.io$k8s$api$core$v1$PodAffinity; + podAntiAffinity?: Schemas.io$k8s$api$core$v1$PodAntiAffinity; + } + /** AttachedVolume describes a volume attached to a node */ + export interface io$k8s$api$core$v1$AttachedVolume { + /** DevicePath represents the device path where the volume should be available */ + devicePath: string; + /** Name of the attached volume */ + name: string; + } + /** AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. */ + export interface io$k8s$api$core$v1$AzureDiskVolumeSource { + /** cachingMode is the Host Caching mode: None, Read Only, Read Write. */ + cachingMode?: string; + /** diskName is the Name of the data disk in the blob storage */ + diskName: string; + /** diskURI is the URI of data disk in the blob storage */ + diskURI: string; + /** fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. */ + fsType?: string; + /** kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared */ + kind?: string; + /** readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + } + /** AzureFile represents an Azure File Service mount on the host and bind mount to the pod. */ + export interface io$k8s$api$core$v1$AzureFilePersistentVolumeSource { + /** readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + /** secretName is the name of secret that contains Azure Storage Account Name and Key */ + secretName: string; + /** secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod */ + secretNamespace?: string; + /** shareName is the azure Share Name */ + shareName: string; + } + /** AzureFile represents an Azure File Service mount on the host and bind mount to the pod. */ + export interface io$k8s$api$core$v1$AzureFileVolumeSource { + /** readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + /** secretName is the name of secret that contains Azure Storage Account Name and Key */ + secretName: string; + /** shareName is the azure share Name */ + shareName: string; + } + /** Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead. */ + export interface io$k8s$api$core$v1$Binding { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + target: Schemas.io$k8s$api$core$v1$ObjectReference; + } + /** Represents storage that is managed by an external CSI volume driver (Beta feature) */ + export interface io$k8s$api$core$v1$CSIPersistentVolumeSource { + controllerExpandSecretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + controllerPublishSecretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + /** driver is the name of the driver to use for this volume. Required. */ + driver: string; + /** fsType to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". */ + fsType?: string; + nodeExpandSecretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + nodePublishSecretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + nodeStageSecretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + /** readOnly value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write). */ + readOnly?: boolean; + /** volumeAttributes of the volume to publish. */ + volumeAttributes?: { + [key: string]: string; + }; + /** volumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required. */ + volumeHandle: string; + } + /** Represents a source location of a volume to mount, managed by an external CSI driver */ + export interface io$k8s$api$core$v1$CSIVolumeSource { + /** driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. */ + driver: string; + /** fsType to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. */ + fsType?: string; + nodePublishSecretRef?: Schemas.io$k8s$api$core$v1$LocalObjectReference; + /** readOnly specifies a read-only configuration for the volume. Defaults to false (read/write). */ + readOnly?: boolean; + /** volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. */ + volumeAttributes?: { + [key: string]: string; + }; + } + /** Adds and removes POSIX capabilities from running containers. */ + export interface io$k8s$api$core$v1$Capabilities { + /** Added capabilities */ + add?: string[]; + /** Removed capabilities */ + drop?: string[]; + } + /** Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$CephFSPersistentVolumeSource { + /** monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + monitors: string[]; + /** path is Optional: Used as the mounted root, rather than the full Ceph tree, default is / */ + path?: string; + /** readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + readOnly?: boolean; + /** secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + secretFile?: string; + secretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + /** user is Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + user?: string; + } + /** Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$CephFSVolumeSource { + /** monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + monitors: string[]; + /** path is Optional: Used as the mounted root, rather than the full Ceph tree, default is / */ + path?: string; + /** readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + readOnly?: boolean; + /** secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + secretFile?: string; + secretRef?: Schemas.io$k8s$api$core$v1$LocalObjectReference; + /** user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it */ + user?: string; + } + /** Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$CinderPersistentVolumeSource { + /** fsType Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md */ + fsType?: string; + /** readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + /** volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md */ + volumeID: string; + } + /** Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$CinderVolumeSource { + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md */ + fsType?: string; + /** readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$LocalObjectReference; + /** volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md */ + volumeID: string; + } + /** + * ClaimSource describes a reference to a ResourceClaim. + * + * Exactly one of these fields should be set. Consumers of this type must treat an empty object as if it has an unknown value. + */ + export interface io$k8s$api$core$v1$ClaimSource { + /** ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod. */ + resourceClaimName?: string; + /** + * ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod. + * + * The template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. + * + * This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim. + */ + resourceClaimTemplateName?: string; + } + /** ClientIPConfig represents the configurations of Client IP based session affinity. */ + export interface io$k8s$api$core$v1$ClientIPConfig { + /** timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours). */ + timeoutSeconds?: number; + } + /** Information about the condition of a component. */ + export interface io$k8s$api$core$v1$ComponentCondition { + /** Condition error code for a component. For example, a health check error code. */ + error?: string; + /** Message about the condition for a component. For example, information about a health check. */ + message?: string; + /** Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown". */ + status: string; + /** Type of condition for a component. Valid value: "Healthy" */ + type: string; + } + /** ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+ */ + export interface io$k8s$api$core$v1$ComponentStatus { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of component conditions observed */ + conditions?: Schemas.io$k8s$api$core$v1$ComponentCondition[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + } + /** Status of all the conditions for the component as a list of ComponentStatus objects. Deprecated: This API is deprecated in v1.19+ */ + export interface io$k8s$api$core$v1$ComponentStatusList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of ComponentStatus objects. */ + items: Schemas.io$k8s$api$core$v1$ComponentStatus[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ConfigMap holds configuration data for pods to consume. */ + export interface io$k8s$api$core$v1$ConfigMap { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet. */ + binaryData?: { + [key: string]: string; + }; + /** Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process. */ + data?: { + [key: string]: string; + }; + /** Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. */ + immutable?: boolean; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + } + /** + * ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. + * + * The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables. + */ + export interface io$k8s$api$core$v1$ConfigMapEnvSource { + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** Specify whether the ConfigMap must be defined */ + optional?: boolean; + } + /** Selects a key from a ConfigMap. */ + export interface io$k8s$api$core$v1$ConfigMapKeySelector { + /** The key to select. */ + key: string; + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** Specify whether the ConfigMap or its key must be defined */ + optional?: boolean; + } + /** ConfigMapList is a resource containing a list of ConfigMap objects. */ + export interface io$k8s$api$core$v1$ConfigMapList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of ConfigMaps. */ + items: Schemas.io$k8s$api$core$v1$ConfigMap[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration */ + export interface io$k8s$api$core$v1$ConfigMapNodeConfigSource { + /** KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases. */ + kubeletConfigKey: string; + /** Name is the metadata.name of the referenced ConfigMap. This field is required in all cases. */ + name: string; + /** Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases. */ + namespace: string; + /** ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status. */ + resourceVersion?: string; + /** UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status. */ + uid?: string; + } + /** + * Adapts a ConfigMap into a projected volume. + * + * The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode. + */ + export interface io$k8s$api$core$v1$ConfigMapProjection { + /** items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. */ + items?: Schemas.io$k8s$api$core$v1$KeyToPath[]; + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** optional specify whether the ConfigMap or its keys must be defined */ + optional?: boolean; + } + /** + * Adapts a ConfigMap into a volume. + * + * The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling. + */ + export interface io$k8s$api$core$v1$ConfigMapVolumeSource { + /** defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. */ + defaultMode?: number; + /** items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. */ + items?: Schemas.io$k8s$api$core$v1$KeyToPath[]; + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** optional specify whether the ConfigMap or its keys must be defined */ + optional?: boolean; + } + /** A single application container that you want to run within a pod. */ + export interface io$k8s$api$core$v1$Container { + /** Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell */ + args?: string[]; + /** Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell */ + command?: string[]; + /** List of environment variables to set in the container. Cannot be updated. */ + env?: Schemas.io$k8s$api$core$v1$EnvVar[]; + /** List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. */ + envFrom?: Schemas.io$k8s$api$core$v1$EnvFromSource[]; + /** Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets. */ + image?: string; + /** Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images */ + imagePullPolicy?: string; + lifecycle?: Schemas.io$k8s$api$core$v1$Lifecycle; + livenessProbe?: Schemas.io$k8s$api$core$v1$Probe; + /** Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. */ + name: string; + /** List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. */ + ports?: Schemas.io$k8s$api$core$v1$ContainerPort[]; + readinessProbe?: Schemas.io$k8s$api$core$v1$Probe; + /** Resources resize policy for the container. */ + resizePolicy?: Schemas.io$k8s$api$core$v1$ContainerResizePolicy[]; + resources?: Schemas.io$k8s$api$core$v1$ResourceRequirements; + /** RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is "Always". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod's restart policy and the container type. Setting the RestartPolicy as "Always" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy "Always" will be shut down. This lifecycle differs from normal init containers and is often referred to as a "sidecar" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed. */ + restartPolicy?: string; + securityContext?: Schemas.io$k8s$api$core$v1$SecurityContext; + startupProbe?: Schemas.io$k8s$api$core$v1$Probe; + /** Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. */ + stdin?: boolean; + /** Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false */ + stdinOnce?: boolean; + /** Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. */ + terminationMessagePath?: string; + /** Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. */ + terminationMessagePolicy?: string; + /** Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. */ + tty?: boolean; + /** volumeDevices is the list of block devices to be used by the container. */ + volumeDevices?: Schemas.io$k8s$api$core$v1$VolumeDevice[]; + /** Pod volumes to mount into the container's filesystem. Cannot be updated. */ + volumeMounts?: Schemas.io$k8s$api$core$v1$VolumeMount[]; + /** Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. */ + workingDir?: string; + } + /** Describe a container image */ + export interface io$k8s$api$core$v1$ContainerImage { + /** Names by which this image is known. e.g. ["kubernetes.example/hyperkube:v1.0.7", "cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7"] */ + names?: string[]; + /** The size of the image in bytes. */ + sizeBytes?: number; + } + /** ContainerPort represents a network port in a single container. */ + export interface io$k8s$api$core$v1$ContainerPort { + /** Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. */ + containerPort: number; + /** What host IP to bind the external port to. */ + hostIP?: string; + /** Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. */ + hostPort?: number; + /** If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. */ + name?: string; + /** Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". */ + protocol?: string; + } + /** ContainerResizePolicy represents resource resize policy for the container. */ + export interface io$k8s$api$core$v1$ContainerResizePolicy { + /** Name of the resource to which this resource resize policy applies. Supported values: cpu, memory. */ + resourceName: string; + /** Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired. */ + restartPolicy: string; + } + /** ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting. */ + export interface io$k8s$api$core$v1$ContainerState { + running?: Schemas.io$k8s$api$core$v1$ContainerStateRunning; + terminated?: Schemas.io$k8s$api$core$v1$ContainerStateTerminated; + waiting?: Schemas.io$k8s$api$core$v1$ContainerStateWaiting; + } + /** ContainerStateRunning is a running state of a container. */ + export interface io$k8s$api$core$v1$ContainerStateRunning { + startedAt?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + } + /** ContainerStateTerminated is a terminated state of a container. */ + export interface io$k8s$api$core$v1$ContainerStateTerminated { + /** Container's ID in the format '://' */ + containerID?: string; + /** Exit status from the last termination of the container */ + exitCode: number; + finishedAt?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Message regarding the last termination of the container */ + message?: string; + /** (brief) reason from the last termination of the container */ + reason?: string; + /** Signal from the last termination of the container */ + signal?: number; + startedAt?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + } + /** ContainerStateWaiting is a waiting state of a container. */ + export interface io$k8s$api$core$v1$ContainerStateWaiting { + /** Message regarding why the container is not yet running. */ + message?: string; + /** (brief) reason the container is not yet running. */ + reason?: string; + } + /** ContainerStatus contains details for the current status of this container. */ + export interface io$k8s$api$core$v1$ContainerStatus { + /** AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully admitting desired pod resize. */ + allocatedResources?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** ContainerID is the ID of the container in the format '://'. Where type is a container runtime identifier, returned from Version call of CRI API (for example "containerd"). */ + containerID?: string; + /** Image is the name of container image that the container is running. The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime. More info: https://kubernetes.io/docs/concepts/containers/images. */ + image: string; + /** ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime. */ + imageID: string; + lastState?: Schemas.io$k8s$api$core$v1$ContainerState; + /** Name is a DNS_LABEL representing the unique name of the container. Each container in a pod must have a unique name across all container types. Cannot be updated. */ + name: string; + /** + * Ready specifies whether the container is currently passing its readiness check. The value will change as readiness probes keep executing. If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field). + * + * The value is typically used to determine whether a container is ready to accept traffic. + */ + ready: boolean; + resources?: Schemas.io$k8s$api$core$v1$ResourceRequirements; + /** RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative. */ + restartCount: number; + /** Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook. The null value must be treated the same as false. */ + started?: boolean; + state?: Schemas.io$k8s$api$core$v1$ContainerState; + } + /** DaemonEndpoint contains information about a single Daemon endpoint. */ + export interface io$k8s$api$core$v1$DaemonEndpoint { + /** Port number of the given endpoint. */ + Port: number; + } + /** Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode. */ + export interface io$k8s$api$core$v1$DownwardAPIProjection { + /** Items is a list of DownwardAPIVolume file */ + items?: Schemas.io$k8s$api$core$v1$DownwardAPIVolumeFile[]; + } + /** DownwardAPIVolumeFile represents information to create the file containing the pod field */ + export interface io$k8s$api$core$v1$DownwardAPIVolumeFile { + fieldRef?: Schemas.io$k8s$api$core$v1$ObjectFieldSelector; + /** Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. */ + mode?: number; + /** Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' */ + path: string; + resourceFieldRef?: Schemas.io$k8s$api$core$v1$ResourceFieldSelector; + } + /** DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$DownwardAPIVolumeSource { + /** Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. */ + defaultMode?: number; + /** Items is a list of downward API volume file */ + items?: Schemas.io$k8s$api$core$v1$DownwardAPIVolumeFile[]; + } + /** Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$EmptyDirVolumeSource { + /** medium represents what type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir */ + medium?: string; + sizeLimit?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + } + /** EndpointAddress is a tuple that describes single IP address. */ + export interface io$k8s$api$core$v1$EndpointAddress { + /** The Hostname of this endpoint */ + hostname?: string; + /** The IP of this endpoint. May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10), or link-local multicast (224.0.0.0/24 or ff02::/16). */ + ip: string; + /** Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node. */ + nodeName?: string; + targetRef?: Schemas.io$k8s$api$core$v1$ObjectReference; + } + /** EndpointPort is a tuple that describes a single port. */ + export interface io$k8s$api$core$v1$EndpointPort { + /** + * The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either: + * + * * Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names). + * + * * Kubernetes-defined prefixed names: + * * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540 + * * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + * * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + * + * * Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol. + */ + appProtocol?: string; + /** The name of this port. This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined. */ + name?: string; + /** The port number of the endpoint. */ + port: number; + /** The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP. */ + protocol?: string; + } + /** + * EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: + * + * { + * Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], + * Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] + * } + * + * The resulting set of endpoints can be viewed as: + * + * a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], + * b: [ 10.10.1.1:309, 10.10.2.2:309 ] + */ + export interface io$k8s$api$core$v1$EndpointSubset { + /** IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize. */ + addresses?: Schemas.io$k8s$api$core$v1$EndpointAddress[]; + /** IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check. */ + notReadyAddresses?: Schemas.io$k8s$api$core$v1$EndpointAddress[]; + /** Port numbers available on the related IP addresses. */ + ports?: Schemas.io$k8s$api$core$v1$EndpointPort[]; + } + /** + * Endpoints is a collection of endpoints that implement the actual service. Example: + * + * Name: "mysvc", + * Subsets: [ + * { + * Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], + * Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] + * }, + * { + * Addresses: [{"ip": "10.10.3.3"}], + * Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] + * }, + * ] + */ + export interface io$k8s$api$core$v1$Endpoints { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service. */ + subsets?: Schemas.io$k8s$api$core$v1$EndpointSubset[]; + } + /** EndpointsList is a list of endpoints. */ + export interface io$k8s$api$core$v1$EndpointsList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of endpoints. */ + items: Schemas.io$k8s$api$core$v1$Endpoints[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** EnvFromSource represents the source of a set of ConfigMaps */ + export interface io$k8s$api$core$v1$EnvFromSource { + configMapRef?: Schemas.io$k8s$api$core$v1$ConfigMapEnvSource; + /** An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. */ + prefix?: string; + secretRef?: Schemas.io$k8s$api$core$v1$SecretEnvSource; + } + /** EnvVar represents an environment variable present in a Container. */ + export interface io$k8s$api$core$v1$EnvVar { + /** Name of the environment variable. Must be a C_IDENTIFIER. */ + name: string; + /** Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". */ + value?: string; + valueFrom?: Schemas.io$k8s$api$core$v1$EnvVarSource; + } + /** EnvVarSource represents a source for the value of an EnvVar. */ + export interface io$k8s$api$core$v1$EnvVarSource { + configMapKeyRef?: Schemas.io$k8s$api$core$v1$ConfigMapKeySelector; + fieldRef?: Schemas.io$k8s$api$core$v1$ObjectFieldSelector; + resourceFieldRef?: Schemas.io$k8s$api$core$v1$ResourceFieldSelector; + secretKeyRef?: Schemas.io$k8s$api$core$v1$SecretKeySelector; + } + /** + * An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation. + * + * To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted. + */ + export interface io$k8s$api$core$v1$EphemeralContainer { + /** Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell */ + args?: string[]; + /** Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell */ + command?: string[]; + /** List of environment variables to set in the container. Cannot be updated. */ + env?: Schemas.io$k8s$api$core$v1$EnvVar[]; + /** List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. */ + envFrom?: Schemas.io$k8s$api$core$v1$EnvFromSource[]; + /** Container image name. More info: https://kubernetes.io/docs/concepts/containers/images */ + image?: string; + /** Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images */ + imagePullPolicy?: string; + lifecycle?: Schemas.io$k8s$api$core$v1$Lifecycle; + livenessProbe?: Schemas.io$k8s$api$core$v1$Probe; + /** Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers. */ + name: string; + /** Ports are not allowed for ephemeral containers. */ + ports?: Schemas.io$k8s$api$core$v1$ContainerPort[]; + readinessProbe?: Schemas.io$k8s$api$core$v1$Probe; + /** Resources resize policy for the container. */ + resizePolicy?: Schemas.io$k8s$api$core$v1$ContainerResizePolicy[]; + resources?: Schemas.io$k8s$api$core$v1$ResourceRequirements; + /** Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers. */ + restartPolicy?: string; + securityContext?: Schemas.io$k8s$api$core$v1$SecurityContext; + startupProbe?: Schemas.io$k8s$api$core$v1$Probe; + /** Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. */ + stdin?: boolean; + /** Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false */ + stdinOnce?: boolean; + /** + * If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec. + * + * The container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined. + */ + targetContainerName?: string; + /** Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated. */ + terminationMessagePath?: string; + /** Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. */ + terminationMessagePolicy?: string; + /** Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. */ + tty?: boolean; + /** volumeDevices is the list of block devices to be used by the container. */ + volumeDevices?: Schemas.io$k8s$api$core$v1$VolumeDevice[]; + /** Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated. */ + volumeMounts?: Schemas.io$k8s$api$core$v1$VolumeMount[]; + /** Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. */ + workingDir?: string; + } + /** Represents an ephemeral volume that is handled by a normal storage driver. */ + export interface io$k8s$api$core$v1$EphemeralVolumeSource { + volumeClaimTemplate?: Schemas.io$k8s$api$core$v1$PersistentVolumeClaimTemplate; + } + /** Event is a report of an event somewhere in the cluster. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data. */ + export interface io$k8s$api$core$v1$Event { + /** What action was taken/failed regarding to the Regarding object. */ + action?: string; + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** The number of times this event has occurred. */ + count?: number; + eventTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$MicroTime; + firstTimestamp?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + involvedObject: Schemas.io$k8s$api$core$v1$ObjectReference; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + lastTimestamp?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** A human-readable description of the status of this operation. */ + message?: string; + metadata: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** This should be a short, machine understandable string that gives the reason for the transition into the object's current status. */ + reason?: string; + related?: Schemas.io$k8s$api$core$v1$ObjectReference; + /** Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. */ + reportingComponent?: string; + /** ID of the controller instance, e.g. `kubelet-xyzf`. */ + reportingInstance?: string; + series?: Schemas.io$k8s$api$core$v1$EventSeries; + source?: Schemas.io$k8s$api$core$v1$EventSource; + /** Type of this event (Normal, Warning), new types could be added in the future */ + type?: string; + } + /** EventList is a list of events. */ + export interface io$k8s$api$core$v1$EventList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of events */ + items: Schemas.io$k8s$api$core$v1$Event[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. */ + export interface io$k8s$api$core$v1$EventSeries { + /** Number of occurrences in this series up to the last heartbeat time */ + count?: number; + lastObservedTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$MicroTime; + } + /** EventSource contains information for an event. */ + export interface io$k8s$api$core$v1$EventSource { + /** Component from which the event is generated. */ + component?: string; + /** Node name on which the event is generated. */ + host?: string; + } + /** ExecAction describes a "run in container" action. */ + export interface io$k8s$api$core$v1$ExecAction { + /** Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. */ + command?: string[]; + } + /** Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$FCVolumeSource { + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. */ + fsType?: string; + /** lun is Optional: FC target lun number */ + lun?: number; + /** readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + /** targetWWNs is Optional: FC target worldwide names (WWNs) */ + targetWWNs?: string[]; + /** wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. */ + wwids?: string[]; + } + /** FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin. */ + export interface io$k8s$api$core$v1$FlexPersistentVolumeSource { + /** driver is the name of the driver to use for this volume. */ + driver: string; + /** fsType is the Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. */ + fsType?: string; + /** options is Optional: this field holds extra command options if any. */ + options?: { + [key: string]: string; + }; + /** readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + } + /** FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. */ + export interface io$k8s$api$core$v1$FlexVolumeSource { + /** driver is the name of the driver to use for this volume. */ + driver: string; + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. */ + fsType?: string; + /** options is Optional: this field holds extra command options if any. */ + options?: { + [key: string]: string; + }; + /** readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$LocalObjectReference; + } + /** Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$FlockerVolumeSource { + /** datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated */ + datasetName?: string; + /** datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset */ + datasetUUID?: string; + } + /** + * Represents a Persistent Disk resource in Google Compute Engine. + * + * A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling. + */ + export interface io$k8s$api$core$v1$GCEPersistentDiskVolumeSource { + /** fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk */ + fsType?: string; + /** partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk */ + partition?: number; + /** pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk */ + pdName: string; + /** readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk */ + readOnly?: boolean; + } + export interface io$k8s$api$core$v1$GRPCAction { + /** Port number of the gRPC service. Number must be in the range 1 to 65535. */ + port: number; + /** + * Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + * + * If this is not specified, the default behavior is defined by gRPC. + */ + service?: string; + } + /** + * Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. + * + * DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container. + */ + export interface io$k8s$api$core$v1$GitRepoVolumeSource { + /** directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. */ + directory?: string; + /** repository is the URL */ + repository: string; + /** revision is the commit hash for the specified revision. */ + revision?: string; + } + /** Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$GlusterfsPersistentVolumeSource { + /** endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod */ + endpoints: string; + /** endpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod */ + endpointsNamespace?: string; + /** path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod */ + path: string; + /** readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod */ + readOnly?: boolean; + } + /** Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$GlusterfsVolumeSource { + /** endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod */ + endpoints: string; + /** path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod */ + path: string; + /** readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod */ + readOnly?: boolean; + } + /** HTTPGetAction describes an action based on HTTP Get requests. */ + export interface io$k8s$api$core$v1$HTTPGetAction { + /** Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. */ + host?: string; + /** Custom headers to set in the request. HTTP allows repeated headers. */ + httpHeaders?: Schemas.io$k8s$api$core$v1$HTTPHeader[]; + /** Path to access on the HTTP server. */ + path?: string; + port: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + /** Scheme to use for connecting to the host. Defaults to HTTP. */ + scheme?: string; + } + /** HTTPHeader describes a custom header to be used in HTTP probes */ + export interface io$k8s$api$core$v1$HTTPHeader { + /** The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. */ + name: string; + /** The header field value */ + value: string; + } + /** HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file. */ + export interface io$k8s$api$core$v1$HostAlias { + /** Hostnames for the above IP address. */ + hostnames?: string[]; + /** IP address of the host file entry. */ + ip?: string; + } + /** HostIP represents a single IP address allocated to the host. */ + export interface io$k8s$api$core$v1$HostIP { + /** IP is the IP address assigned to the host */ + ip?: string; + } + /** Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$HostPathVolumeSource { + /** path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath */ + path: string; + /** type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath */ + type?: string; + } + /** ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$ISCSIPersistentVolumeSource { + /** chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication */ + chapAuthDiscovery?: boolean; + /** chapAuthSession defines whether support iSCSI Session CHAP authentication */ + chapAuthSession?: boolean; + /** fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi */ + fsType?: string; + /** initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. */ + initiatorName?: string; + /** iqn is Target iSCSI Qualified Name. */ + iqn: string; + /** iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). */ + iscsiInterface?: string; + /** lun is iSCSI Target Lun number. */ + lun: number; + /** portals is the iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). */ + portals?: string[]; + /** readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + /** targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). */ + targetPortal: string; + } + /** Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$ISCSIVolumeSource { + /** chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication */ + chapAuthDiscovery?: boolean; + /** chapAuthSession defines whether support iSCSI Session CHAP authentication */ + chapAuthSession?: boolean; + /** fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi */ + fsType?: string; + /** initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. */ + initiatorName?: string; + /** iqn is the target iSCSI Qualified Name. */ + iqn: string; + /** iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). */ + iscsiInterface?: string; + /** lun represents iSCSI Target Lun number. */ + lun: number; + /** portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). */ + portals?: string[]; + /** readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$LocalObjectReference; + /** targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). */ + targetPortal: string; + } + /** Maps a string key to a path within a volume. */ + export interface io$k8s$api$core$v1$KeyToPath { + /** key is the key to project. */ + key: string; + /** mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. */ + mode?: number; + /** path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. */ + path: string; + } + /** Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted. */ + export interface io$k8s$api$core$v1$Lifecycle { + postStart?: Schemas.io$k8s$api$core$v1$LifecycleHandler; + preStop?: Schemas.io$k8s$api$core$v1$LifecycleHandler; + } + /** LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified. */ + export interface io$k8s$api$core$v1$LifecycleHandler { + exec?: Schemas.io$k8s$api$core$v1$ExecAction; + httpGet?: Schemas.io$k8s$api$core$v1$HTTPGetAction; + tcpSocket?: Schemas.io$k8s$api$core$v1$TCPSocketAction; + } + /** LimitRange sets resource usage limits for each kind of resource in a Namespace. */ + export interface io$k8s$api$core$v1$LimitRange { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$LimitRangeSpec; + } + /** LimitRangeItem defines a min/max usage limit for any resource that matches on kind. */ + export interface io$k8s$api$core$v1$LimitRangeItem { + /** Default resource requirement limit value by resource name if resource limit is omitted. */ + default?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** DefaultRequest is the default resource requirement request value by resource name if resource request is omitted. */ + defaultRequest?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** Max usage constraints on this kind by resource name. */ + max?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource. */ + maxLimitRequestRatio?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** Min usage constraints on this kind by resource name. */ + min?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** Type of resource that this limit applies to. */ + type: string; + } + /** LimitRangeList is a list of LimitRange items. */ + export interface io$k8s$api$core$v1$LimitRangeList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ */ + items: Schemas.io$k8s$api$core$v1$LimitRange[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** LimitRangeSpec defines a min/max usage limit for resources that match on kind. */ + export interface io$k8s$api$core$v1$LimitRangeSpec { + /** Limits is the list of LimitRangeItem objects that are enforced. */ + limits: Schemas.io$k8s$api$core$v1$LimitRangeItem[]; + } + /** LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point. */ + export interface io$k8s$api$core$v1$LoadBalancerIngress { + /** Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers) */ + hostname?: string; + /** IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers) */ + ip?: string; + /** Ports is a list of records of service ports If used, every port defined in the service should have an entry in it */ + ports?: Schemas.io$k8s$api$core$v1$PortStatus[]; + } + /** LoadBalancerStatus represents the status of a load-balancer. */ + export interface io$k8s$api$core$v1$LoadBalancerStatus { + /** Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. */ + ingress?: Schemas.io$k8s$api$core$v1$LoadBalancerIngress[]; + } + /** LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. */ + export interface io$k8s$api$core$v1$LocalObjectReference { + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + } + /** Local represents directly-attached storage with node affinity (Beta feature) */ + export interface io$k8s$api$core$v1$LocalVolumeSource { + /** fsType is the filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified. */ + fsType?: string; + /** path of the full path to the volume on the node. It can be either a directory or block device (disk, partition, ...). */ + path: string; + } + /** Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$NFSVolumeSource { + /** path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs */ + path: string; + /** readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs */ + readOnly?: boolean; + /** server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs */ + server: string; + } + /** Namespace provides a scope for Names. Use of multiple namespaces is optional. */ + export interface io$k8s$api$core$v1$Namespace { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$NamespaceSpec; + status?: Schemas.io$k8s$api$core$v1$NamespaceStatus; + } + /** NamespaceCondition contains details about state of namespace. */ + export interface io$k8s$api$core$v1$NamespaceCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + message?: string; + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of namespace controller condition. */ + type: string; + } + /** NamespaceList is a list of Namespaces. */ + export interface io$k8s$api$core$v1$NamespaceList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ */ + items: Schemas.io$k8s$api$core$v1$Namespace[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** NamespaceSpec describes the attributes on a Namespace. */ + export interface io$k8s$api$core$v1$NamespaceSpec { + /** Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ */ + finalizers?: string[]; + } + /** NamespaceStatus is information about the current status of a Namespace. */ + export interface io$k8s$api$core$v1$NamespaceStatus { + /** Represents the latest available observations of a namespace's current state. */ + conditions?: Schemas.io$k8s$api$core$v1$NamespaceCondition[]; + /** Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ */ + phase?: string; + } + /** Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd). */ + export interface io$k8s$api$core$v1$Node { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$NodeSpec; + status?: Schemas.io$k8s$api$core$v1$NodeStatus; + } + /** NodeAddress contains information for the node's address. */ + export interface io$k8s$api$core$v1$NodeAddress { + /** The node address. */ + address: string; + /** Node address type, one of Hostname, ExternalIP or InternalIP. */ + type: string; + } + /** Node affinity is a group of node affinity scheduling rules. */ + export interface io$k8s$api$core$v1$NodeAffinity { + /** The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. */ + preferredDuringSchedulingIgnoredDuringExecution?: Schemas.io$k8s$api$core$v1$PreferredSchedulingTerm[]; + requiredDuringSchedulingIgnoredDuringExecution?: Schemas.io$k8s$api$core$v1$NodeSelector; + } + /** NodeCondition contains condition information for a node. */ + export interface io$k8s$api$core$v1$NodeCondition { + lastHeartbeatTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Human readable message indicating details about last transition. */ + message?: string; + /** (brief) reason for the condition's last transition. */ + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of node condition. */ + type: string; + } + /** NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22 */ + export interface io$k8s$api$core$v1$NodeConfigSource { + configMap?: Schemas.io$k8s$api$core$v1$ConfigMapNodeConfigSource; + } + /** NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource. */ + export interface io$k8s$api$core$v1$NodeConfigStatus { + active?: Schemas.io$k8s$api$core$v1$NodeConfigSource; + assigned?: Schemas.io$k8s$api$core$v1$NodeConfigSource; + /** Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions. */ + error?: string; + lastKnownGood?: Schemas.io$k8s$api$core$v1$NodeConfigSource; + } + /** NodeDaemonEndpoints lists ports opened by daemons running on the Node. */ + export interface io$k8s$api$core$v1$NodeDaemonEndpoints { + kubeletEndpoint?: Schemas.io$k8s$api$core$v1$DaemonEndpoint; + } + /** NodeList is the whole list of all Nodes which have been registered with master. */ + export interface io$k8s$api$core$v1$NodeList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of nodes */ + items: Schemas.io$k8s$api$core$v1$Node[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms. */ + export interface io$k8s$api$core$v1$NodeSelector { + /** Required. A list of node selector terms. The terms are ORed. */ + nodeSelectorTerms: Schemas.io$k8s$api$core$v1$NodeSelectorTerm[]; + } + /** A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. */ + export interface io$k8s$api$core$v1$NodeSelectorRequirement { + /** The label key that the selector applies to. */ + key: string; + /** Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. */ + operator: string; + /** An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. */ + values?: string[]; + } + /** A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. */ + export interface io$k8s$api$core$v1$NodeSelectorTerm { + /** A list of node selector requirements by node's labels. */ + matchExpressions?: Schemas.io$k8s$api$core$v1$NodeSelectorRequirement[]; + /** A list of node selector requirements by node's fields. */ + matchFields?: Schemas.io$k8s$api$core$v1$NodeSelectorRequirement[]; + } + /** NodeSpec describes the attributes that a node is created with. */ + export interface io$k8s$api$core$v1$NodeSpec { + configSource?: Schemas.io$k8s$api$core$v1$NodeConfigSource; + /** Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966 */ + externalID?: string; + /** PodCIDR represents the pod IP range assigned to the node. */ + podCIDR?: string; + /** podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6. */ + podCIDRs?: string[]; + /** ID of the node assigned by the cloud provider in the format: :// */ + providerID?: string; + /** If specified, the node's taints. */ + taints?: Schemas.io$k8s$api$core$v1$Taint[]; + /** Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration */ + unschedulable?: boolean; + } + /** NodeStatus is information about the current status of a node. */ + export interface io$k8s$api$core$v1$NodeStatus { + /** List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See https://pr.k8s.io/79391 for an example. Consumers should assume that addresses can change during the lifetime of a Node. However, there are some exceptions where this may not be possible, such as Pods that inherit a Node's address in its own status or consumers of the downward API (status.hostIP). */ + addresses?: Schemas.io$k8s$api$core$v1$NodeAddress[]; + /** Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity. */ + allocatable?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity */ + capacity?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition */ + conditions?: Schemas.io$k8s$api$core$v1$NodeCondition[]; + config?: Schemas.io$k8s$api$core$v1$NodeConfigStatus; + daemonEndpoints?: Schemas.io$k8s$api$core$v1$NodeDaemonEndpoints; + /** List of container images on this node */ + images?: Schemas.io$k8s$api$core$v1$ContainerImage[]; + nodeInfo?: Schemas.io$k8s$api$core$v1$NodeSystemInfo; + /** NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated. */ + phase?: string; + /** List of volumes that are attached to the node. */ + volumesAttached?: Schemas.io$k8s$api$core$v1$AttachedVolume[]; + /** List of attachable volumes in use (mounted) by the node. */ + volumesInUse?: string[]; + } + /** NodeSystemInfo is a set of ids/uuids to uniquely identify the node. */ + export interface io$k8s$api$core$v1$NodeSystemInfo { + /** The Architecture reported by the node */ + architecture: string; + /** Boot ID reported by the node. */ + bootID: string; + /** ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2). */ + containerRuntimeVersion: string; + /** Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64). */ + kernelVersion: string; + /** KubeProxy Version reported by the node. */ + kubeProxyVersion: string; + /** Kubelet Version reported by the node. */ + kubeletVersion: string; + /** MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html */ + machineID: string; + /** The Operating System reported by the node */ + operatingSystem: string; + /** OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)). */ + osImage: string; + /** SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid */ + systemUUID: string; + } + /** ObjectFieldSelector selects an APIVersioned field of an object. */ + export interface io$k8s$api$core$v1$ObjectFieldSelector { + /** Version of the schema the FieldPath is written in terms of, defaults to "v1". */ + apiVersion?: string; + /** Path of the field to select in the specified API version. */ + fieldPath: string; + } + /** ObjectReference contains enough information to let you inspect or modify the referred object. */ + export interface io$k8s$api$core$v1$ObjectReference { + /** API version of the referent. */ + apiVersion?: string; + /** If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object. */ + fieldPath?: string; + /** Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ */ + namespace?: string; + /** Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency */ + resourceVersion?: string; + /** UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids */ + uid?: string; + } + /** PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes */ + export interface io$k8s$api$core$v1$PersistentVolume { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$PersistentVolumeSpec; + status?: Schemas.io$k8s$api$core$v1$PersistentVolumeStatus; + } + /** PersistentVolumeClaim is a user's request for and claim to a persistent volume */ + export interface io$k8s$api$core$v1$PersistentVolumeClaim { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$PersistentVolumeClaimSpec; + status?: Schemas.io$k8s$api$core$v1$PersistentVolumeClaimStatus; + } + /** PersistentVolumeClaimCondition contains details about state of pvc */ + export interface io$k8s$api$core$v1$PersistentVolumeClaimCondition { + lastProbeTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** message is the human-readable message indicating details about last transition. */ + message?: string; + /** reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized. */ + reason?: string; + status: string; + type: string; + } + /** PersistentVolumeClaimList is a list of PersistentVolumeClaim items. */ + export interface io$k8s$api$core$v1$PersistentVolumeClaimList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims */ + items: Schemas.io$k8s$api$core$v1$PersistentVolumeClaim[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes */ + export interface io$k8s$api$core$v1$PersistentVolumeClaimSpec { + /** accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 */ + accessModes?: string[]; + dataSource?: Schemas.io$k8s$api$core$v1$TypedLocalObjectReference; + dataSourceRef?: Schemas.io$k8s$api$core$v1$TypedObjectReference; + resources?: Schemas.io$k8s$api$core$v1$ResourceRequirements; + selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 */ + storageClassName?: string; + /** volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. */ + volumeMode?: string; + /** volumeName is the binding reference to the PersistentVolume backing this claim. */ + volumeName?: string; + } + /** PersistentVolumeClaimStatus is the current status of a persistent volume claim. */ + export interface io$k8s$api$core$v1$PersistentVolumeClaimStatus { + /** accessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 */ + accessModes?: string[]; + /** + * allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either: + * * Un-prefixed keys: + * - storage - the capacity of the volume. + * * Custom resources must use implementation-defined prefixed names such as "example.com/my-custom-resource" + * Apart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used. + * + * ClaimResourceStatus can be in any of following states: + * - ControllerResizeInProgress: + * State set when resize controller starts resizing the volume in control-plane. + * - ControllerResizeFailed: + * State set when resize has failed in resize controller with a terminal error. + * - NodeResizePending: + * State set when resize controller has finished resizing the volume but further resizing of + * volume is needed on the node. + * - NodeResizeInProgress: + * State set when kubelet starts resizing the volume. + * - NodeResizeFailed: + * State set when resizing has failed in kubelet with a terminal error. Transient errors don't set + * NodeResizeFailed. + * For example: if expanding a PVC for more capacity - this field can be one of the following states: + * - pvc.status.allocatedResourceStatus['storage'] = "ControllerResizeInProgress" + * - pvc.status.allocatedResourceStatus['storage'] = "ControllerResizeFailed" + * - pvc.status.allocatedResourceStatus['storage'] = "NodeResizePending" + * - pvc.status.allocatedResourceStatus['storage'] = "NodeResizeInProgress" + * - pvc.status.allocatedResourceStatus['storage'] = "NodeResizeFailed" + * When this field is not set, it means that no resize operation is in progress for the given PVC. + * + * A controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC. + * + * This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature. + */ + allocatedResourceStatuses?: { + [key: string]: string; + }; + /** + * allocatedResources tracks the resources allocated to a PVC including its capacity. Key names follow standard Kubernetes label syntax. Valid values are either: + * * Un-prefixed keys: + * - storage - the capacity of the volume. + * * Custom resources must use implementation-defined prefixed names such as "example.com/my-custom-resource" + * Apart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used. + * + * Capacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity. + * + * A controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC. + * + * This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature. + */ + allocatedResources?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** capacity represents the actual resources of the underlying volume. */ + capacity?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'. */ + conditions?: Schemas.io$k8s$api$core$v1$PersistentVolumeClaimCondition[]; + /** phase represents the current phase of PersistentVolumeClaim. */ + phase?: string; + } + /** PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource. */ + export interface io$k8s$api$core$v1$PersistentVolumeClaimTemplate { + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$core$v1$PersistentVolumeClaimSpec; + } + /** PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system). */ + export interface io$k8s$api$core$v1$PersistentVolumeClaimVolumeSource { + /** claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims */ + claimName: string; + /** readOnly Will force the ReadOnly setting in VolumeMounts. Default false. */ + readOnly?: boolean; + } + /** PersistentVolumeList is a list of PersistentVolume items. */ + export interface io$k8s$api$core$v1$PersistentVolumeList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a list of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes */ + items: Schemas.io$k8s$api$core$v1$PersistentVolume[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PersistentVolumeSpec is the specification of a persistent volume. */ + export interface io$k8s$api$core$v1$PersistentVolumeSpec { + /** accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes */ + accessModes?: string[]; + awsElasticBlockStore?: Schemas.io$k8s$api$core$v1$AWSElasticBlockStoreVolumeSource; + azureDisk?: Schemas.io$k8s$api$core$v1$AzureDiskVolumeSource; + azureFile?: Schemas.io$k8s$api$core$v1$AzureFilePersistentVolumeSource; + /** capacity is the description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity */ + capacity?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + cephfs?: Schemas.io$k8s$api$core$v1$CephFSPersistentVolumeSource; + cinder?: Schemas.io$k8s$api$core$v1$CinderPersistentVolumeSource; + claimRef?: Schemas.io$k8s$api$core$v1$ObjectReference; + csi?: Schemas.io$k8s$api$core$v1$CSIPersistentVolumeSource; + fc?: Schemas.io$k8s$api$core$v1$FCVolumeSource; + flexVolume?: Schemas.io$k8s$api$core$v1$FlexPersistentVolumeSource; + flocker?: Schemas.io$k8s$api$core$v1$FlockerVolumeSource; + gcePersistentDisk?: Schemas.io$k8s$api$core$v1$GCEPersistentDiskVolumeSource; + glusterfs?: Schemas.io$k8s$api$core$v1$GlusterfsPersistentVolumeSource; + hostPath?: Schemas.io$k8s$api$core$v1$HostPathVolumeSource; + iscsi?: Schemas.io$k8s$api$core$v1$ISCSIPersistentVolumeSource; + local?: Schemas.io$k8s$api$core$v1$LocalVolumeSource; + /** mountOptions is the list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options */ + mountOptions?: string[]; + nfs?: Schemas.io$k8s$api$core$v1$NFSVolumeSource; + nodeAffinity?: Schemas.io$k8s$api$core$v1$VolumeNodeAffinity; + /** persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming */ + persistentVolumeReclaimPolicy?: string; + photonPersistentDisk?: Schemas.io$k8s$api$core$v1$PhotonPersistentDiskVolumeSource; + portworxVolume?: Schemas.io$k8s$api$core$v1$PortworxVolumeSource; + quobyte?: Schemas.io$k8s$api$core$v1$QuobyteVolumeSource; + rbd?: Schemas.io$k8s$api$core$v1$RBDPersistentVolumeSource; + scaleIO?: Schemas.io$k8s$api$core$v1$ScaleIOPersistentVolumeSource; + /** storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass. */ + storageClassName?: string; + storageos?: Schemas.io$k8s$api$core$v1$StorageOSPersistentVolumeSource; + /** volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. */ + volumeMode?: string; + vsphereVolume?: Schemas.io$k8s$api$core$v1$VsphereVirtualDiskVolumeSource; + } + /** PersistentVolumeStatus is the current status of a persistent volume. */ + export interface io$k8s$api$core$v1$PersistentVolumeStatus { + lastPhaseTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** message is a human-readable message indicating details about why the volume is in this state. */ + message?: string; + /** phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase */ + phase?: string; + /** reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI. */ + reason?: string; + } + /** Represents a Photon Controller persistent disk resource. */ + export interface io$k8s$api$core$v1$PhotonPersistentDiskVolumeSource { + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. */ + fsType?: string; + /** pdID is the ID that identifies Photon Controller persistent disk */ + pdID: string; + } + /** Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts. */ + export interface io$k8s$api$core$v1$Pod { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$PodSpec; + status?: Schemas.io$k8s$api$core$v1$PodStatus; + } + /** Pod affinity is a group of inter pod affinity scheduling rules. */ + export interface io$k8s$api$core$v1$PodAffinity { + /** The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. */ + preferredDuringSchedulingIgnoredDuringExecution?: Schemas.io$k8s$api$core$v1$WeightedPodAffinityTerm[]; + /** If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. */ + requiredDuringSchedulingIgnoredDuringExecution?: Schemas.io$k8s$api$core$v1$PodAffinityTerm[]; + } + /** Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running */ + export interface io$k8s$api$core$v1$PodAffinityTerm { + labelSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + namespaceSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". */ + namespaces?: string[]; + /** This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. */ + topologyKey: string; + } + /** Pod anti affinity is a group of inter pod anti affinity scheduling rules. */ + export interface io$k8s$api$core$v1$PodAntiAffinity { + /** The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. */ + preferredDuringSchedulingIgnoredDuringExecution?: Schemas.io$k8s$api$core$v1$WeightedPodAffinityTerm[]; + /** If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. */ + requiredDuringSchedulingIgnoredDuringExecution?: Schemas.io$k8s$api$core$v1$PodAffinityTerm[]; + } + /** PodCondition contains details for the current condition of this pod. */ + export interface io$k8s$api$core$v1$PodCondition { + lastProbeTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Human-readable message indicating details about last transition. */ + message?: string; + /** Unique, one-word, CamelCase reason for the condition's last transition. */ + reason?: string; + /** Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions */ + status: string; + /** Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions */ + type: string; + } + /** PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy. */ + export interface io$k8s$api$core$v1$PodDNSConfig { + /** A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. */ + nameservers?: string[]; + /** A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. */ + options?: Schemas.io$k8s$api$core$v1$PodDNSConfigOption[]; + /** A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. */ + searches?: string[]; + } + /** PodDNSConfigOption defines DNS resolver options of a pod. */ + export interface io$k8s$api$core$v1$PodDNSConfigOption { + /** Required. */ + name?: string; + value?: string; + } + /** PodIP represents a single IP address allocated to the pod. */ + export interface io$k8s$api$core$v1$PodIP { + /** IP is the IP address assigned to the pod */ + ip?: string; + } + /** PodList is a list of Pods. */ + export interface io$k8s$api$core$v1$PodList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md */ + items: Schemas.io$k8s$api$core$v1$Pod[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PodOS defines the OS parameters of a pod. */ + export interface io$k8s$api$core$v1$PodOS { + /** Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null */ + name: string; + } + /** PodReadinessGate contains the reference to a pod condition */ + export interface io$k8s$api$core$v1$PodReadinessGate { + /** ConditionType refers to a condition in the pod's condition list with matching type. */ + conditionType: string; + } + /** PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name. */ + export interface io$k8s$api$core$v1$PodResourceClaim { + /** Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL. */ + name: string; + source?: Schemas.io$k8s$api$core$v1$ClaimSource; + } + /** PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim. */ + export interface io$k8s$api$core$v1$PodResourceClaimStatus { + /** Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL. */ + name: string; + /** ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. It this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case. */ + resourceClaimName?: string; + } + /** PodSchedulingGate is associated to a Pod to guard its scheduling. */ + export interface io$k8s$api$core$v1$PodSchedulingGate { + /** Name of the scheduling gate. Each scheduling gate must have a unique name field. */ + name: string; + } + /** PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext. */ + export interface io$k8s$api$core$v1$PodSecurityContext { + /** + * A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: + * + * 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- + * + * If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows. + */ + fsGroup?: number; + /** fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. Note that this field cannot be set when spec.os.name is windows. */ + fsGroupChangePolicy?: string; + /** The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. */ + runAsGroup?: number; + /** Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. */ + runAsNonRoot?: boolean; + /** The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows. */ + runAsUser?: number; + seLinuxOptions?: Schemas.io$k8s$api$core$v1$SELinuxOptions; + seccompProfile?: Schemas.io$k8s$api$core$v1$SeccompProfile; + /** A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows. */ + supplementalGroups?: number[]; + /** Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows. */ + sysctls?: Schemas.io$k8s$api$core$v1$Sysctl[]; + windowsOptions?: Schemas.io$k8s$api$core$v1$WindowsSecurityContextOptions; + } + /** PodSpec is a description of a pod. */ + export interface io$k8s$api$core$v1$PodSpec { + /** Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer. */ + activeDeadlineSeconds?: number; + affinity?: Schemas.io$k8s$api$core$v1$Affinity; + /** AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. */ + automountServiceAccountToken?: boolean; + /** List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. */ + containers: Schemas.io$k8s$api$core$v1$Container[]; + dnsConfig?: Schemas.io$k8s$api$core$v1$PodDNSConfig; + /** Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. */ + dnsPolicy?: string; + /** EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true. */ + enableServiceLinks?: boolean; + /** List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. */ + ephemeralContainers?: Schemas.io$k8s$api$core$v1$EphemeralContainer[]; + /** HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods. */ + hostAliases?: Schemas.io$k8s$api$core$v1$HostAlias[]; + /** Use the host's ipc namespace. Optional: Default to false. */ + hostIPC?: boolean; + /** Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false. */ + hostNetwork?: boolean; + /** Use the host's pid namespace. Optional: Default to false. */ + hostPID?: boolean; + /** Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature. */ + hostUsers?: boolean; + /** Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value. */ + hostname?: string; + /** ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod */ + imagePullSecrets?: Schemas.io$k8s$api$core$v1$LocalObjectReference[]; + /** List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ */ + initContainers?: Schemas.io$k8s$api$core$v1$Container[]; + /** NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements. */ + nodeName?: string; + /** NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ */ + nodeSelector?: { + [key: string]: string; + }; + os?: Schemas.io$k8s$api$core$v1$PodOS; + /** Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md */ + overhead?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. */ + preemptionPolicy?: string; + /** The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority. */ + priority?: number; + /** If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default. */ + priorityClassName?: string; + /** If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to "True" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates */ + readinessGates?: Schemas.io$k8s$api$core$v1$PodReadinessGate[]; + /** + * ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name. + * + * This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. + * + * This field is immutable. + */ + resourceClaims?: Schemas.io$k8s$api$core$v1$PodResourceClaim[]; + /** Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy */ + restartPolicy?: string; + /** RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class */ + runtimeClassName?: string; + /** If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler. */ + schedulerName?: string; + /** + * SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod. + * + * SchedulingGates can only be set at pod creation time, and be removed only afterwards. + * + * This is a beta feature enabled by the PodSchedulingReadiness feature gate. + */ + schedulingGates?: Schemas.io$k8s$api$core$v1$PodSchedulingGate[]; + securityContext?: Schemas.io$k8s$api$core$v1$PodSecurityContext; + /** DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead. */ + serviceAccount?: string; + /** ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ */ + serviceAccountName?: string; + /** If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false. */ + setHostnameAsFQDN?: boolean; + /** Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false. */ + shareProcessNamespace?: boolean; + /** If specified, the fully qualified Pod hostname will be "...svc.". If not specified, the pod will not have a domainname at all. */ + subdomain?: string; + /** Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. */ + terminationGracePeriodSeconds?: number; + /** If specified, the pod's tolerations. */ + tolerations?: Schemas.io$k8s$api$core$v1$Toleration[]; + /** TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed. */ + topologySpreadConstraints?: Schemas.io$k8s$api$core$v1$TopologySpreadConstraint[]; + /** List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes */ + volumes?: Schemas.io$k8s$api$core$v1$Volume[]; + } + /** PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane. */ + export interface io$k8s$api$core$v1$PodStatus { + /** Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions */ + conditions?: Schemas.io$k8s$api$core$v1$PodCondition[]; + /** The list has one entry per container in the manifest. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status */ + containerStatuses?: Schemas.io$k8s$api$core$v1$ContainerStatus[]; + /** Status for any ephemeral containers that have run in this pod. */ + ephemeralContainerStatuses?: Schemas.io$k8s$api$core$v1$ContainerStatus[]; + /** hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod */ + hostIP?: string; + /** hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod. */ + hostIPs?: Schemas.io$k8s$api$core$v1$HostIP[]; + /** The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status */ + initContainerStatuses?: Schemas.io$k8s$api$core$v1$ContainerStatus[]; + /** A human readable message indicating details about why the pod is in this condition. */ + message?: string; + /** nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled. */ + nominatedNodeName?: string; + /** + * The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values: + * + * Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod. + * + * More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase + */ + phase?: string; + /** podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. */ + podIP?: string; + /** podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet. */ + podIPs?: Schemas.io$k8s$api$core$v1$PodIP[]; + /** The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes */ + qosClass?: string; + /** A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted' */ + reason?: string; + /** Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to "Proposed" */ + resize?: string; + /** Status of resource claims. */ + resourceClaimStatuses?: Schemas.io$k8s$api$core$v1$PodResourceClaimStatus[]; + startTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + } + /** PodTemplate describes a template for creating copies of a predefined pod. */ + export interface io$k8s$api$core$v1$PodTemplate { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + template?: Schemas.io$k8s$api$core$v1$PodTemplateSpec; + } + /** PodTemplateList is a list of PodTemplates. */ + export interface io$k8s$api$core$v1$PodTemplateList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of pod templates */ + items: Schemas.io$k8s$api$core$v1$PodTemplate[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PodTemplateSpec describes the data a pod should have when created from a template */ + export interface io$k8s$api$core$v1$PodTemplateSpec { + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$PodSpec; + } + export interface io$k8s$api$core$v1$PortStatus { + /** + * Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use + * CamelCase names + * - cloud provider specific error values must have names that comply with the + * format foo.example.com/CamelCase. + */ + error?: string; + /** Port is the port number of the service port of which status is recorded here */ + port: number; + /** Protocol is the protocol of the service port of which status is recorded here The supported values are: "TCP", "UDP", "SCTP" */ + protocol: string; + } + /** PortworxVolumeSource represents a Portworx volume resource. */ + export interface io$k8s$api$core$v1$PortworxVolumeSource { + /** fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. */ + fsType?: string; + /** readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + /** volumeID uniquely identifies a Portworx volume */ + volumeID: string; + } + /** An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). */ + export interface io$k8s$api$core$v1$PreferredSchedulingTerm { + preference: Schemas.io$k8s$api$core$v1$NodeSelectorTerm; + /** Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. */ + weight: number; + } + /** Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic. */ + export interface io$k8s$api$core$v1$Probe { + exec?: Schemas.io$k8s$api$core$v1$ExecAction; + /** Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. */ + failureThreshold?: number; + grpc?: Schemas.io$k8s$api$core$v1$GRPCAction; + httpGet?: Schemas.io$k8s$api$core$v1$HTTPGetAction; + /** Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes */ + initialDelaySeconds?: number; + /** How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. */ + periodSeconds?: number; + /** Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. */ + successThreshold?: number; + tcpSocket?: Schemas.io$k8s$api$core$v1$TCPSocketAction; + /** Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. */ + terminationGracePeriodSeconds?: number; + /** Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes */ + timeoutSeconds?: number; + } + /** Represents a projected volume source */ + export interface io$k8s$api$core$v1$ProjectedVolumeSource { + /** defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. */ + defaultMode?: number; + /** sources is the list of volume projections */ + sources?: Schemas.io$k8s$api$core$v1$VolumeProjection[]; + } + /** Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. */ + export interface io$k8s$api$core$v1$QuobyteVolumeSource { + /** group to map volume access to Default is no group */ + group?: string; + /** readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. */ + readOnly?: boolean; + /** registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes */ + registry: string; + /** tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin */ + tenant?: string; + /** user to map volume access to Defaults to serivceaccount user */ + user?: string; + /** volume is a string that references an already created Quobyte volume by name. */ + volume: string; + } + /** Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$RBDPersistentVolumeSource { + /** fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd */ + fsType?: string; + /** image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + image: string; + /** keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + keyring?: string; + /** monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + monitors: string[]; + /** pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + pool?: string; + /** readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$SecretReference; + /** user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + user?: string; + } + /** Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. */ + export interface io$k8s$api$core$v1$RBDVolumeSource { + /** fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd */ + fsType?: string; + /** image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + image: string; + /** keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + keyring?: string; + /** monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + monitors: string[]; + /** pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + pool?: string; + /** readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$LocalObjectReference; + /** user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it */ + user?: string; + } + /** ReplicationController represents the configuration of a replication controller. */ + export interface io$k8s$api$core$v1$ReplicationController { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$ReplicationControllerSpec; + status?: Schemas.io$k8s$api$core$v1$ReplicationControllerStatus; + } + /** ReplicationControllerCondition describes the state of a replication controller at a certain point. */ + export interface io$k8s$api$core$v1$ReplicationControllerCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** A human readable message indicating details about the transition. */ + message?: string; + /** The reason for the condition's last transition. */ + reason?: string; + /** Status of the condition, one of True, False, Unknown. */ + status: string; + /** Type of replication controller condition. */ + type: string; + } + /** ReplicationControllerList is a collection of replication controllers. */ + export interface io$k8s$api$core$v1$ReplicationControllerList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller */ + items: Schemas.io$k8s$api$core$v1$ReplicationController[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ReplicationControllerSpec is the specification of a replication controller. */ + export interface io$k8s$api$core$v1$ReplicationControllerSpec { + /** Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) */ + minReadySeconds?: number; + /** Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller */ + replicas?: number; + /** Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors */ + selector?: { + [key: string]: string; + }; + template?: Schemas.io$k8s$api$core$v1$PodTemplateSpec; + } + /** ReplicationControllerStatus represents the current status of a replication controller. */ + export interface io$k8s$api$core$v1$ReplicationControllerStatus { + /** The number of available replicas (ready for at least minReadySeconds) for this replication controller. */ + availableReplicas?: number; + /** Represents the latest available observations of a replication controller's current state. */ + conditions?: Schemas.io$k8s$api$core$v1$ReplicationControllerCondition[]; + /** The number of pods that have labels matching the labels of the pod template of the replication controller. */ + fullyLabeledReplicas?: number; + /** ObservedGeneration reflects the generation of the most recently observed replication controller. */ + observedGeneration?: number; + /** The number of ready replicas for this replication controller. */ + readyReplicas?: number; + /** Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller */ + replicas: number; + } + /** ResourceClaim references one entry in PodSpec.ResourceClaims. */ + export interface io$k8s$api$core$v1$ResourceClaim { + /** Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. */ + name: string; + } + /** ResourceFieldSelector represents container resources (cpu, memory) and their output format */ + export interface io$k8s$api$core$v1$ResourceFieldSelector { + /** Container name: required for volumes, optional for env vars */ + containerName?: string; + divisor?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + /** Required: resource to select */ + resource: string; + } + /** ResourceQuota sets aggregate quota restrictions enforced per namespace */ + export interface io$k8s$api$core$v1$ResourceQuota { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$ResourceQuotaSpec; + status?: Schemas.io$k8s$api$core$v1$ResourceQuotaStatus; + } + /** ResourceQuotaList is a list of ResourceQuota items. */ + export interface io$k8s$api$core$v1$ResourceQuotaList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ */ + items: Schemas.io$k8s$api$core$v1$ResourceQuota[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ResourceQuotaSpec defines the desired hard limits to enforce for Quota. */ + export interface io$k8s$api$core$v1$ResourceQuotaSpec { + /** hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ */ + hard?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + scopeSelector?: Schemas.io$k8s$api$core$v1$ScopeSelector; + /** A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects. */ + scopes?: string[]; + } + /** ResourceQuotaStatus defines the enforced hard limits and observed use. */ + export interface io$k8s$api$core$v1$ResourceQuotaStatus { + /** Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ */ + hard?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** Used is the current observed total usage of the resource in the namespace. */ + used?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + } + /** ResourceRequirements describes the compute resource requirements. */ + export interface io$k8s$api$core$v1$ResourceRequirements { + /** + * Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. + * + * This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. + * + * This field is immutable. It can only be set for containers. + */ + claims?: Schemas.io$k8s$api$core$v1$ResourceClaim[]; + /** Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ */ + limits?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + /** Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ */ + requests?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + } + /** SELinuxOptions are the labels to be applied to the container */ + export interface io$k8s$api$core$v1$SELinuxOptions { + /** Level is SELinux level label that applies to the container. */ + level?: string; + /** Role is a SELinux role label that applies to the container. */ + role?: string; + /** Type is a SELinux type label that applies to the container. */ + type?: string; + /** User is a SELinux user label that applies to the container. */ + user?: string; + } + /** ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume */ + export interface io$k8s$api$core$v1$ScaleIOPersistentVolumeSource { + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs" */ + fsType?: string; + /** gateway is the host address of the ScaleIO API Gateway. */ + gateway: string; + /** protectionDomain is the name of the ScaleIO Protection Domain for the configured storage. */ + protectionDomain?: string; + /** readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + secretRef: Schemas.io$k8s$api$core$v1$SecretReference; + /** sslEnabled is the flag to enable/disable SSL communication with Gateway, default false */ + sslEnabled?: boolean; + /** storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. */ + storageMode?: string; + /** storagePool is the ScaleIO Storage Pool associated with the protection domain. */ + storagePool?: string; + /** system is the name of the storage system as configured in ScaleIO. */ + system: string; + /** volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source. */ + volumeName?: string; + } + /** ScaleIOVolumeSource represents a persistent ScaleIO volume */ + export interface io$k8s$api$core$v1$ScaleIOVolumeSource { + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". */ + fsType?: string; + /** gateway is the host address of the ScaleIO API Gateway. */ + gateway: string; + /** protectionDomain is the name of the ScaleIO Protection Domain for the configured storage. */ + protectionDomain?: string; + /** readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + secretRef: Schemas.io$k8s$api$core$v1$LocalObjectReference; + /** sslEnabled Flag enable/disable SSL communication with Gateway, default false */ + sslEnabled?: boolean; + /** storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. */ + storageMode?: string; + /** storagePool is the ScaleIO Storage Pool associated with the protection domain. */ + storagePool?: string; + /** system is the name of the storage system as configured in ScaleIO. */ + system: string; + /** volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source. */ + volumeName?: string; + } + /** A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements. */ + export interface io$k8s$api$core$v1$ScopeSelector { + /** A list of scope selector requirements by scope of the resources. */ + matchExpressions?: Schemas.io$k8s$api$core$v1$ScopedResourceSelectorRequirement[]; + } + /** A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values. */ + export interface io$k8s$api$core$v1$ScopedResourceSelectorRequirement { + /** Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. */ + operator: string; + /** The name of the scope that the selector applies to. */ + scopeName: string; + /** An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. */ + values?: string[]; + } + /** SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set. */ + export interface io$k8s$api$core$v1$SeccompProfile { + /** localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is "Localhost". Must NOT be set for any other type. */ + localhostProfile?: string; + /** + * type indicates which kind of seccomp profile will be applied. Valid options are: + * + * Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied. + */ + type: string; + } + /** Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes. */ + export interface io$k8s$api$core$v1$Secret { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4 */ + data?: { + [key: string]: string; + }; + /** Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. */ + immutable?: boolean; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API. */ + stringData?: { + [key: string]: string; + }; + /** Used to facilitate programmatic handling of secret data. More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types */ + type?: string; + } + /** + * SecretEnvSource selects a Secret to populate the environment variables with. + * + * The contents of the target Secret's Data field will represent the key-value pairs as environment variables. + */ + export interface io$k8s$api$core$v1$SecretEnvSource { + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** Specify whether the Secret must be defined */ + optional?: boolean; + } + /** SecretKeySelector selects a key of a Secret. */ + export interface io$k8s$api$core$v1$SecretKeySelector { + /** The key of the secret to select from. Must be a valid secret key. */ + key: string; + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** Specify whether the Secret or its key must be defined */ + optional?: boolean; + } + /** SecretList is a list of Secret. */ + export interface io$k8s$api$core$v1$SecretList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret */ + items: Schemas.io$k8s$api$core$v1$Secret[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** + * Adapts a secret into a projected volume. + * + * The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode. + */ + export interface io$k8s$api$core$v1$SecretProjection { + /** items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. */ + items?: Schemas.io$k8s$api$core$v1$KeyToPath[]; + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name?: string; + /** optional field specify whether the Secret or its key must be defined */ + optional?: boolean; + } + /** SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace */ + export interface io$k8s$api$core$v1$SecretReference { + /** name is unique within a namespace to reference a secret resource. */ + name?: string; + /** namespace defines the space within which the secret name must be unique. */ + namespace?: string; + } + /** + * Adapts a Secret into a volume. + * + * The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling. + */ + export interface io$k8s$api$core$v1$SecretVolumeSource { + /** defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. */ + defaultMode?: number; + /** items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. */ + items?: Schemas.io$k8s$api$core$v1$KeyToPath[]; + /** optional field specify whether the Secret or its keys must be defined */ + optional?: boolean; + /** secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret */ + secretName?: string; + } + /** SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence. */ + export interface io$k8s$api$core$v1$SecurityContext { + /** AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows. */ + allowPrivilegeEscalation?: boolean; + capabilities?: Schemas.io$k8s$api$core$v1$Capabilities; + /** Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows. */ + privileged?: boolean; + /** procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows. */ + procMount?: string; + /** Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows. */ + readOnlyRootFilesystem?: boolean; + /** The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. */ + runAsGroup?: number; + /** Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. */ + runAsNonRoot?: boolean; + /** The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows. */ + runAsUser?: number; + seLinuxOptions?: Schemas.io$k8s$api$core$v1$SELinuxOptions; + seccompProfile?: Schemas.io$k8s$api$core$v1$SeccompProfile; + windowsOptions?: Schemas.io$k8s$api$core$v1$WindowsSecurityContextOptions; + } + /** Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy. */ + export interface io$k8s$api$core$v1$Service { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$core$v1$ServiceSpec; + status?: Schemas.io$k8s$api$core$v1$ServiceStatus; + } + /** ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets */ + export interface io$k8s$api$core$v1$ServiceAccount { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level. */ + automountServiceAccountToken?: boolean; + /** ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod */ + imagePullSecrets?: Schemas.io$k8s$api$core$v1$LocalObjectReference[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use. Pods are only limited to this list if this service account has a "kubernetes.io/enforce-mountable-secrets" annotation set to "true". This field should not be used to find auto-generated service account token secrets for use outside of pods. Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created. More info: https://kubernetes.io/docs/concepts/configuration/secret */ + secrets?: Schemas.io$k8s$api$core$v1$ObjectReference[]; + } + /** ServiceAccountList is a list of ServiceAccount objects */ + export interface io$k8s$api$core$v1$ServiceAccountList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ */ + items: Schemas.io$k8s$api$core$v1$ServiceAccount[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise). */ + export interface io$k8s$api$core$v1$ServiceAccountTokenProjection { + /** audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. */ + audience?: string; + /** expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. */ + expirationSeconds?: number; + /** path is the path relative to the mount point of the file to project the token into. */ + path: string; + } + /** ServiceList holds a list of services. */ + export interface io$k8s$api$core$v1$ServiceList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** List of services */ + items: Schemas.io$k8s$api$core$v1$Service[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ServicePort contains information on service's port. */ + export interface io$k8s$api$core$v1$ServicePort { + /** + * The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either: + * + * * Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names). + * + * * Kubernetes-defined prefixed names: + * * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540 + * * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + * * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + * + * * Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol. + */ + appProtocol?: string; + /** The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service. */ + name?: string; + /** The port on each node on which this service is exposed when type is NodePort or LoadBalancer. Usually assigned by the system. If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail. If not specified, a port will be allocated if this Service requires one. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type from NodePort to ClusterIP). More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport */ + nodePort?: number; + /** The port that will be exposed by this service. */ + port: number; + /** The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP. */ + protocol?: string; + targetPort?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + } + /** ServiceSpec describes the attributes that a user creates on a service. */ + export interface io$k8s$api$core$v1$ServiceSpec { + /** allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is "true". It may be set to "false" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type. */ + allocateLoadBalancerNodePorts?: boolean; + /** clusterIP is the IP address of the service and is usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are "None", empty string (""), or a valid IP address. Setting this to "None" makes a "headless service" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies */ + clusterIP?: string; + /** + * ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are "None", empty string (""), or a valid IP address. Setting this to "None" makes a "headless service" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value. + * + * This field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + */ + clusterIPs?: string[]; + /** externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. */ + externalIPs?: string[]; + /** externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be "ExternalName". */ + externalName?: string; + /** externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service's "externally-facing" addresses (NodePorts, ExternalIPs, and LoadBalancer IPs). If set to "Local", the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP. (Traffic mistakenly sent to a node with no endpoints will be dropped.) The default value, "Cluster", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get "Cluster" semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node. */ + externalTrafficPolicy?: string; + /** healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type). This field cannot be updated once set. */ + healthCheckNodePort?: number; + /** InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP. If set to "Local", the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints. The default value, "Cluster", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). */ + internalTrafficPolicy?: string; + /** + * IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are "IPv4" and "IPv6". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to "headless" services. This field will be wiped when updating a Service to type ExternalName. + * + * This field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. + */ + ipFamilies?: string[]; + /** IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be "SingleStack" (a single IP family), "PreferDualStack" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or "RequireDualStack" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName. */ + ipFamilyPolicy?: string; + /** loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type. */ + loadBalancerClass?: string; + /** Only applies to Service Type: LoadBalancer. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. Deprecated: This field was under-specified and its meaning varies across implementations. Using it is non-portable and it may not support dual-stack. Users are encouraged to use implementation-specific annotations when available. */ + loadBalancerIP?: string; + /** If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/ */ + loadBalancerSourceRanges?: string[]; + /** The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies */ + ports?: Schemas.io$k8s$api$core$v1$ServicePort[]; + /** publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready. The primary use case for setting this field is for a StatefulSet's Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery. The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered "ready" even if the Pods themselves are not. Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior. */ + publishNotReadyAddresses?: boolean; + /** Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/ */ + selector?: { + [key: string]: string; + }; + /** Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies */ + sessionAffinity?: string; + sessionAffinityConfig?: Schemas.io$k8s$api$core$v1$SessionAffinityConfig; + /** type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. "ExternalName" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types */ + type?: string; + } + /** ServiceStatus represents the current status of a service. */ + export interface io$k8s$api$core$v1$ServiceStatus { + /** Current service state */ + conditions?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Condition[]; + loadBalancer?: Schemas.io$k8s$api$core$v1$LoadBalancerStatus; + } + /** SessionAffinityConfig represents the configurations of session affinity. */ + export interface io$k8s$api$core$v1$SessionAffinityConfig { + clientIP?: Schemas.io$k8s$api$core$v1$ClientIPConfig; + } + /** Represents a StorageOS persistent volume resource. */ + export interface io$k8s$api$core$v1$StorageOSPersistentVolumeSource { + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. */ + fsType?: string; + /** readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$ObjectReference; + /** volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. */ + volumeName?: string; + /** volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. */ + volumeNamespace?: string; + } + /** Represents a StorageOS persistent volume resource. */ + export interface io$k8s$api$core$v1$StorageOSVolumeSource { + /** fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. */ + fsType?: string; + /** readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. */ + readOnly?: boolean; + secretRef?: Schemas.io$k8s$api$core$v1$LocalObjectReference; + /** volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. */ + volumeName?: string; + /** volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. */ + volumeNamespace?: string; + } + /** Sysctl defines a kernel parameter to be set */ + export interface io$k8s$api$core$v1$Sysctl { + /** Name of a property to set */ + name: string; + /** Value of a property to set */ + value: string; + } + /** TCPSocketAction describes an action based on opening a socket */ + export interface io$k8s$api$core$v1$TCPSocketAction { + /** Optional: Host name to connect to, defaults to the pod IP. */ + host?: string; + port: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + } + /** The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint. */ + export interface io$k8s$api$core$v1$Taint { + /** Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute. */ + effect: string; + /** Required. The taint key to be applied to a node. */ + key: string; + timeAdded?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** The taint value corresponding to the taint key. */ + value?: string; + } + /** The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . */ + export interface io$k8s$api$core$v1$Toleration { + /** Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. */ + effect?: string; + /** Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. */ + key?: string; + /** Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. */ + operator?: string; + /** TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. */ + tolerationSeconds?: number; + /** Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. */ + value?: string; + } + /** A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future. */ + export interface io$k8s$api$core$v1$TopologySelectorLabelRequirement { + /** The label key that the selector applies to. */ + key: string; + /** An array of string values. One value must match the label to be selected. Each entry in Values is ORed. */ + values: string[]; + } + /** A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future. */ + export interface io$k8s$api$core$v1$TopologySelectorTerm { + /** A list of topology selector requirements by labels. */ + matchLabelExpressions?: Schemas.io$k8s$api$core$v1$TopologySelectorLabelRequirement[]; + } + /** TopologySpreadConstraint specifies how to spread matching pods among the given topology. */ + export interface io$k8s$api$core$v1$TopologySpreadConstraint { + labelSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** + * MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector. + * + * This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). + */ + matchLabelKeys?: string[]; + /** MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed. */ + maxSkew: number; + /** + * MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + * + * For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew. + * + * This is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default). + */ + minDomains?: number; + /** + * NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + * + * If this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. + */ + nodeAffinityPolicy?: string; + /** + * NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included. + * + * If this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. + */ + nodeTaintsPolicy?: string; + /** TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a "bucket", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. It's a required field. */ + topologyKey: string; + /** + * WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, + * but giving higher precedence to topologies that would help reduce the + * skew. + * A constraint is considered "Unsatisfiable" for an incoming pod if and only if every possible node assignment for that pod would violate "MaxSkew" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field. + */ + whenUnsatisfiable: string; + } + /** TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace. */ + export interface io$k8s$api$core$v1$TypedLocalObjectReference { + /** APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. */ + apiGroup?: string; + /** Kind is the type of resource being referenced */ + kind: string; + /** Name is the name of resource being referenced */ + name: string; + } + export interface io$k8s$api$core$v1$TypedObjectReference { + /** APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. */ + apiGroup?: string; + /** Kind is the type of resource being referenced */ + kind: string; + /** Name is the name of resource being referenced */ + name: string; + /** Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. */ + namespace?: string; + } + /** Volume represents a named volume in a pod that may be accessed by any container in the pod. */ + export interface io$k8s$api$core$v1$Volume { + awsElasticBlockStore?: Schemas.io$k8s$api$core$v1$AWSElasticBlockStoreVolumeSource; + azureDisk?: Schemas.io$k8s$api$core$v1$AzureDiskVolumeSource; + azureFile?: Schemas.io$k8s$api$core$v1$AzureFileVolumeSource; + cephfs?: Schemas.io$k8s$api$core$v1$CephFSVolumeSource; + cinder?: Schemas.io$k8s$api$core$v1$CinderVolumeSource; + configMap?: Schemas.io$k8s$api$core$v1$ConfigMapVolumeSource; + csi?: Schemas.io$k8s$api$core$v1$CSIVolumeSource; + downwardAPI?: Schemas.io$k8s$api$core$v1$DownwardAPIVolumeSource; + emptyDir?: Schemas.io$k8s$api$core$v1$EmptyDirVolumeSource; + ephemeral?: Schemas.io$k8s$api$core$v1$EphemeralVolumeSource; + fc?: Schemas.io$k8s$api$core$v1$FCVolumeSource; + flexVolume?: Schemas.io$k8s$api$core$v1$FlexVolumeSource; + flocker?: Schemas.io$k8s$api$core$v1$FlockerVolumeSource; + gcePersistentDisk?: Schemas.io$k8s$api$core$v1$GCEPersistentDiskVolumeSource; + gitRepo?: Schemas.io$k8s$api$core$v1$GitRepoVolumeSource; + glusterfs?: Schemas.io$k8s$api$core$v1$GlusterfsVolumeSource; + hostPath?: Schemas.io$k8s$api$core$v1$HostPathVolumeSource; + iscsi?: Schemas.io$k8s$api$core$v1$ISCSIVolumeSource; + /** name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */ + name: string; + nfs?: Schemas.io$k8s$api$core$v1$NFSVolumeSource; + persistentVolumeClaim?: Schemas.io$k8s$api$core$v1$PersistentVolumeClaimVolumeSource; + photonPersistentDisk?: Schemas.io$k8s$api$core$v1$PhotonPersistentDiskVolumeSource; + portworxVolume?: Schemas.io$k8s$api$core$v1$PortworxVolumeSource; + projected?: Schemas.io$k8s$api$core$v1$ProjectedVolumeSource; + quobyte?: Schemas.io$k8s$api$core$v1$QuobyteVolumeSource; + rbd?: Schemas.io$k8s$api$core$v1$RBDVolumeSource; + scaleIO?: Schemas.io$k8s$api$core$v1$ScaleIOVolumeSource; + secret?: Schemas.io$k8s$api$core$v1$SecretVolumeSource; + storageos?: Schemas.io$k8s$api$core$v1$StorageOSVolumeSource; + vsphereVolume?: Schemas.io$k8s$api$core$v1$VsphereVirtualDiskVolumeSource; + } + /** volumeDevice describes a mapping of a raw block device within a container. */ + export interface io$k8s$api$core$v1$VolumeDevice { + /** devicePath is the path inside of the container that the device will be mapped to. */ + devicePath: string; + /** name must match the name of a persistentVolumeClaim in the pod */ + name: string; + } + /** VolumeMount describes a mounting of a Volume within a container. */ + export interface io$k8s$api$core$v1$VolumeMount { + /** Path within the container at which the volume should be mounted. Must not contain ':'. */ + mountPath: string; + /** mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. */ + mountPropagation?: string; + /** This must match the Name of a Volume. */ + name: string; + /** Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. */ + readOnly?: boolean; + /** Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). */ + subPath?: string; + /** Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. */ + subPathExpr?: string; + } + /** VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from. */ + export interface io$k8s$api$core$v1$VolumeNodeAffinity { + required?: Schemas.io$k8s$api$core$v1$NodeSelector; + } + /** Projection that may be projected along with other supported volume types */ + export interface io$k8s$api$core$v1$VolumeProjection { + configMap?: Schemas.io$k8s$api$core$v1$ConfigMapProjection; + downwardAPI?: Schemas.io$k8s$api$core$v1$DownwardAPIProjection; + secret?: Schemas.io$k8s$api$core$v1$SecretProjection; + serviceAccountToken?: Schemas.io$k8s$api$core$v1$ServiceAccountTokenProjection; + } + /** Represents a vSphere volume resource. */ + export interface io$k8s$api$core$v1$VsphereVirtualDiskVolumeSource { + /** fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. */ + fsType?: string; + /** storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. */ + storagePolicyID?: string; + /** storagePolicyName is the storage Policy Based Management (SPBM) profile name. */ + storagePolicyName?: string; + /** volumePath is the path that identifies vSphere volume vmdk */ + volumePath: string; + } + /** The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) */ + export interface io$k8s$api$core$v1$WeightedPodAffinityTerm { + podAffinityTerm: Schemas.io$k8s$api$core$v1$PodAffinityTerm; + /** weight associated with matching the corresponding podAffinityTerm, in the range 1-100. */ + weight: number; + } + /** WindowsSecurityContextOptions contain Windows-specific options and credentials. */ + export interface io$k8s$api$core$v1$WindowsSecurityContextOptions { + /** GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. */ + gmsaCredentialSpec?: string; + /** GMSACredentialSpecName is the name of the GMSA credential spec to use. */ + gmsaCredentialSpecName?: string; + /** HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true. */ + hostProcess?: boolean; + /** The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. */ + runAsUserName?: string; + } + /** Endpoint represents a single logical "backend" implementing a service. */ + export interface io$k8s$api$discovery$v1$Endpoint { + /** addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100. These are all assumed to be fungible and clients may choose to only use the first element. Refer to: https://issue.k8s.io/106267 */ + addresses: string[]; + conditions?: Schemas.io$k8s$api$discovery$v1$EndpointConditions; + /** deprecatedTopology contains topology information part of the v1beta1 API. This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v1.24). While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored. Topology information can be found in the zone and nodeName fields instead. */ + deprecatedTopology?: { + [key: string]: string; + }; + hints?: Schemas.io$k8s$api$discovery$v1$EndpointHints; + /** hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation. */ + hostname?: string; + /** nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. */ + nodeName?: string; + targetRef?: Schemas.io$k8s$api$core$v1$ObjectReference; + /** zone is the name of the Zone this endpoint exists in. */ + zone?: string; + } + /** EndpointConditions represents the current condition of an endpoint. */ + export interface io$k8s$api$discovery$v1$EndpointConditions { + /** ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be "true" for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag. */ + ready?: boolean; + /** serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. */ + serving?: boolean; + /** terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. */ + terminating?: boolean; + } + /** EndpointHints provides hints describing how an endpoint should be consumed. */ + export interface io$k8s$api$discovery$v1$EndpointHints { + /** forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing. */ + forZones?: Schemas.io$k8s$api$discovery$v1$ForZone[]; + } + /** EndpointPort represents a Port used by an EndpointSlice */ + export interface io$k8s$api$discovery$v1$EndpointPort { + /** + * The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either: + * + * * Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names). + * + * * Kubernetes-defined prefixed names: + * * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540 + * * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + * * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + * + * * Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol. + */ + appProtocol?: string; + /** name represents the name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string. */ + name?: string; + /** port represents the port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer. */ + port?: number; + /** protocol represents the IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP. */ + protocol?: string; + } + /** EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints. */ + export interface io$k8s$api$discovery$v1$EndpointSlice { + /** addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name. */ + addressType: string; + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints. */ + endpoints: Schemas.io$k8s$api$discovery$v1$Endpoint[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates "all ports". Each slice may include a maximum of 100 ports. */ + ports?: Schemas.io$k8s$api$discovery$v1$EndpointPort[]; + } + /** EndpointSliceList represents a list of endpoint slices */ + export interface io$k8s$api$discovery$v1$EndpointSliceList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of endpoint slices */ + items: Schemas.io$k8s$api$discovery$v1$EndpointSlice[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ForZone provides information about which zones should consume this endpoint. */ + export interface io$k8s$api$discovery$v1$ForZone { + /** name represents the name of the zone. */ + name: string; + } + /** Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data. */ + export interface io$k8s$api$events$v1$Event { + /** action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field cannot be empty for new Events and it can have at most 128 characters. */ + action?: string; + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type. */ + deprecatedCount?: number; + deprecatedFirstTimestamp?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + deprecatedLastTimestamp?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + deprecatedSource?: Schemas.io$k8s$api$core$v1$EventSource; + eventTime: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$MicroTime; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB. */ + note?: string; + /** reason is why the action was taken. It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters. */ + reason?: string; + regarding?: Schemas.io$k8s$api$core$v1$ObjectReference; + related?: Schemas.io$k8s$api$core$v1$ObjectReference; + /** reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events. */ + reportingController?: string; + /** reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters. */ + reportingInstance?: string; + series?: Schemas.io$k8s$api$events$v1$EventSeries; + /** type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable. This field cannot be empty for new Events. */ + type?: string; + } + /** EventList is a list of Event objects. */ + export interface io$k8s$api$events$v1$EventList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a list of schema objects. */ + items: Schemas.io$k8s$api$events$v1$Event[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. How often to update the EventSeries is up to the event reporters. The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows how this struct is updated on heartbeats and can guide customized reporter implementations. */ + export interface io$k8s$api$events$v1$EventSeries { + /** count is the number of occurrences in this series up to the last heartbeat time. */ + count: number; + lastObservedTime: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$MicroTime; + } + /** ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`. */ + export interface io$k8s$api$flowcontrol$v1beta2$ExemptPriorityLevelConfiguration { + /** + * `lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows. + * + * LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 ) + */ + lendablePercent?: number; + /** + * `nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values: + * + * NominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k) + * + * Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero. + */ + nominalConcurrencyShares?: number; + } + /** FlowDistinguisherMethod specifies the method of a flow distinguisher. */ + export interface io$k8s$api$flowcontrol$v1beta2$FlowDistinguisherMethod { + /** `type` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required. */ + type: string; + } + /** FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher". */ + export interface io$k8s$api$flowcontrol$v1beta2$FlowSchema { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaSpec; + status?: Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaStatus; + } + /** FlowSchemaCondition describes conditions for a FlowSchema. */ + export interface io$k8s$api$flowcontrol$v1beta2$FlowSchemaCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** `message` is a human-readable message indicating details about last transition. */ + message?: string; + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ + reason?: string; + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ + status?: string; + /** `type` is the type of the condition. Required. */ + type?: string; + } + /** FlowSchemaList is a list of FlowSchema objects. */ + export interface io$k8s$api$flowcontrol$v1beta2$FlowSchemaList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** `items` is a list of FlowSchemas. */ + items: Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** FlowSchemaSpec describes how the FlowSchema's specification looks like. */ + export interface io$k8s$api$flowcontrol$v1beta2$FlowSchemaSpec { + distinguisherMethod?: Schemas.io$k8s$api$flowcontrol$v1beta2$FlowDistinguisherMethod; + /** `matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default. */ + matchingPrecedence?: number; + priorityLevelConfiguration: Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationReference; + /** `rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema. */ + rules?: Schemas.io$k8s$api$flowcontrol$v1beta2$PolicyRulesWithSubjects[]; + } + /** FlowSchemaStatus represents the current state of a FlowSchema. */ + export interface io$k8s$api$flowcontrol$v1beta2$FlowSchemaStatus { + /** `conditions` is a list of the current states of FlowSchema. */ + conditions?: Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaCondition[]; + } + /** GroupSubject holds detailed information for group-kind subject. */ + export interface io$k8s$api$flowcontrol$v1beta2$GroupSubject { + /** name is the user group that matches, or "*" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required. */ + name: string; + } + /** LimitResponse defines how to handle requests that can not be executed right now. */ + export interface io$k8s$api$flowcontrol$v1beta2$LimitResponse { + queuing?: Schemas.io$k8s$api$flowcontrol$v1beta2$QueuingConfiguration; + /** `type` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required. */ + type: string; + } + /** + * LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues: + * - How are requests for this priority level limited? + * - What should be done with requests that exceed the limit? + */ + export interface io$k8s$api$flowcontrol$v1beta2$LimitedPriorityLevelConfiguration { + /** + * `assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level: + * + * ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) ) + * + * bigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30. + */ + assuredConcurrencyShares?: number; + /** + * `borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows. + * + * BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 ) + * + * The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite. + */ + borrowingLimitPercent?: number; + /** + * `lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows. + * + * LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 ) + */ + lendablePercent?: number; + limitResponse?: Schemas.io$k8s$api$flowcontrol$v1beta2$LimitResponse; + } + /** NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request. */ + export interface io$k8s$api$flowcontrol$v1beta2$NonResourcePolicyRule { + /** + * `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example: + * - "/healthz" is legal + * - "/hea*" is illegal + * - "/hea" is legal but matches nothing + * - "/hea/\\*" also matches nothing + * - "/healthz/*" matches all per-component health checks. + * "*" matches all non-resource urls. if it is present, it must be the only entry. Required. + */ + nonResourceURLs: string[]; + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. */ + verbs: string[]; + } + /** PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request. */ + export interface io$k8s$api$flowcontrol$v1beta2$PolicyRulesWithSubjects { + /** `nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL. */ + nonResourceRules?: Schemas.io$k8s$api$flowcontrol$v1beta2$NonResourcePolicyRule[]; + /** `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty. */ + resourceRules?: Schemas.io$k8s$api$flowcontrol$v1beta2$ResourcePolicyRule[]; + /** subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required. */ + subjects: Schemas.io$k8s$api$flowcontrol$v1beta2$Subject[]; + } + /** PriorityLevelConfiguration represents the configuration of a priority level. */ + export interface io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationSpec; + status?: Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationStatus; + } + /** PriorityLevelConfigurationCondition defines the condition of priority level. */ + export interface io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** `message` is a human-readable message indicating details about last transition. */ + message?: string; + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ + reason?: string; + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ + status?: string; + /** `type` is the type of the condition. Required. */ + type?: string; + } + /** PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects. */ + export interface io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** `items` is a list of request-priorities. */ + items: Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PriorityLevelConfigurationReference contains information that points to the "request-priority" being used. */ + export interface io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationReference { + /** `name` is the name of the priority level configuration being referenced Required. */ + name: string; + } + /** PriorityLevelConfigurationSpec specifies the configuration of a priority level. */ + export interface io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationSpec { + exempt?: Schemas.io$k8s$api$flowcontrol$v1beta2$ExemptPriorityLevelConfiguration; + limited?: Schemas.io$k8s$api$flowcontrol$v1beta2$LimitedPriorityLevelConfiguration; + /** `type` indicates whether this priority level is subject to limitation on request execution. A value of `"Exempt"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `"Limited"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required. */ + type: string; + } + /** PriorityLevelConfigurationStatus represents the current state of a "request-priority". */ + export interface io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationStatus { + /** `conditions` is the current state of "request-priority". */ + conditions?: Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationCondition[]; + } + /** QueuingConfiguration holds the configuration parameters for queuing */ + export interface io$k8s$api$flowcontrol$v1beta2$QueuingConfiguration { + /** `handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8. */ + handSize?: number; + /** `queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50. */ + queueLengthLimit?: number; + /** `queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64. */ + queues?: number; + } + /** ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==""`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace. */ + export interface io$k8s$api$flowcontrol$v1beta2$ResourcePolicyRule { + /** `apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required. */ + apiGroups: string[]; + /** `clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list. */ + clusterScope?: boolean; + /** `namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true. */ + namespaces?: string[]; + /** `resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required. */ + resources: string[]; + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required. */ + verbs: string[]; + } + /** ServiceAccountSubject holds detailed information for service-account-kind subject. */ + export interface io$k8s$api$flowcontrol$v1beta2$ServiceAccountSubject { + /** `name` is the name of matching ServiceAccount objects, or "*" to match regardless of name. Required. */ + name: string; + /** `namespace` is the namespace of matching ServiceAccount objects. Required. */ + namespace: string; + } + /** Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account. */ + export interface io$k8s$api$flowcontrol$v1beta2$Subject { + group?: Schemas.io$k8s$api$flowcontrol$v1beta2$GroupSubject; + /** `kind` indicates which one of the other fields is non-empty. Required */ + kind: string; + serviceAccount?: Schemas.io$k8s$api$flowcontrol$v1beta2$ServiceAccountSubject; + user?: Schemas.io$k8s$api$flowcontrol$v1beta2$UserSubject; + } + /** UserSubject holds detailed information for user-kind subject. */ + export interface io$k8s$api$flowcontrol$v1beta2$UserSubject { + /** `name` is the username that matches, or "*" to match all usernames. Required. */ + name: string; + } + /** ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`. */ + export interface io$k8s$api$flowcontrol$v1beta3$ExemptPriorityLevelConfiguration { + /** + * `lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows. + * + * LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 ) + */ + lendablePercent?: number; + /** + * `nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values: + * + * NominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k) + * + * Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero. + */ + nominalConcurrencyShares?: number; + } + /** FlowDistinguisherMethod specifies the method of a flow distinguisher. */ + export interface io$k8s$api$flowcontrol$v1beta3$FlowDistinguisherMethod { + /** `type` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required. */ + type: string; + } + /** FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher". */ + export interface io$k8s$api$flowcontrol$v1beta3$FlowSchema { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaSpec; + status?: Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaStatus; + } + /** FlowSchemaCondition describes conditions for a FlowSchema. */ + export interface io$k8s$api$flowcontrol$v1beta3$FlowSchemaCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** `message` is a human-readable message indicating details about last transition. */ + message?: string; + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ + reason?: string; + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ + status?: string; + /** `type` is the type of the condition. Required. */ + type?: string; + } + /** FlowSchemaList is a list of FlowSchema objects. */ + export interface io$k8s$api$flowcontrol$v1beta3$FlowSchemaList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** `items` is a list of FlowSchemas. */ + items: Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** FlowSchemaSpec describes how the FlowSchema's specification looks like. */ + export interface io$k8s$api$flowcontrol$v1beta3$FlowSchemaSpec { + distinguisherMethod?: Schemas.io$k8s$api$flowcontrol$v1beta3$FlowDistinguisherMethod; + /** `matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default. */ + matchingPrecedence?: number; + priorityLevelConfiguration: Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationReference; + /** `rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema. */ + rules?: Schemas.io$k8s$api$flowcontrol$v1beta3$PolicyRulesWithSubjects[]; + } + /** FlowSchemaStatus represents the current state of a FlowSchema. */ + export interface io$k8s$api$flowcontrol$v1beta3$FlowSchemaStatus { + /** `conditions` is a list of the current states of FlowSchema. */ + conditions?: Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaCondition[]; + } + /** GroupSubject holds detailed information for group-kind subject. */ + export interface io$k8s$api$flowcontrol$v1beta3$GroupSubject { + /** name is the user group that matches, or "*" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required. */ + name: string; + } + /** LimitResponse defines how to handle requests that can not be executed right now. */ + export interface io$k8s$api$flowcontrol$v1beta3$LimitResponse { + queuing?: Schemas.io$k8s$api$flowcontrol$v1beta3$QueuingConfiguration; + /** `type` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required. */ + type: string; + } + /** + * LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues: + * - How are requests for this priority level limited? + * - What should be done with requests that exceed the limit? + */ + export interface io$k8s$api$flowcontrol$v1beta3$LimitedPriorityLevelConfiguration { + /** + * `borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows. + * + * BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 ) + * + * The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite. + */ + borrowingLimitPercent?: number; + /** + * `lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows. + * + * LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 ) + */ + lendablePercent?: number; + limitResponse?: Schemas.io$k8s$api$flowcontrol$v1beta3$LimitResponse; + /** + * `nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats available at this priority level. This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level. The server's concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values: + * + * NominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k) + * + * Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of 30. + */ + nominalConcurrencyShares?: number; + } + /** NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request. */ + export interface io$k8s$api$flowcontrol$v1beta3$NonResourcePolicyRule { + /** + * `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example: + * - "/healthz" is legal + * - "/hea*" is illegal + * - "/hea" is legal but matches nothing + * - "/hea/\\*" also matches nothing + * - "/healthz/*" matches all per-component health checks. + * "*" matches all non-resource urls. if it is present, it must be the only entry. Required. + */ + nonResourceURLs: string[]; + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required. */ + verbs: string[]; + } + /** PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request. */ + export interface io$k8s$api$flowcontrol$v1beta3$PolicyRulesWithSubjects { + /** `nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL. */ + nonResourceRules?: Schemas.io$k8s$api$flowcontrol$v1beta3$NonResourcePolicyRule[]; + /** `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty. */ + resourceRules?: Schemas.io$k8s$api$flowcontrol$v1beta3$ResourcePolicyRule[]; + /** subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required. */ + subjects: Schemas.io$k8s$api$flowcontrol$v1beta3$Subject[]; + } + /** PriorityLevelConfiguration represents the configuration of a priority level. */ + export interface io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationSpec; + status?: Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationStatus; + } + /** PriorityLevelConfigurationCondition defines the condition of priority level. */ + export interface io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** `message` is a human-readable message indicating details about last transition. */ + message?: string; + /** `reason` is a unique, one-word, CamelCase reason for the condition's last transition. */ + reason?: string; + /** `status` is the status of the condition. Can be True, False, Unknown. Required. */ + status?: string; + /** `type` is the type of the condition. Required. */ + type?: string; + } + /** PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects. */ + export interface io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** `items` is a list of request-priorities. */ + items: Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PriorityLevelConfigurationReference contains information that points to the "request-priority" being used. */ + export interface io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationReference { + /** `name` is the name of the priority level configuration being referenced Required. */ + name: string; + } + /** PriorityLevelConfigurationSpec specifies the configuration of a priority level. */ + export interface io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationSpec { + exempt?: Schemas.io$k8s$api$flowcontrol$v1beta3$ExemptPriorityLevelConfiguration; + limited?: Schemas.io$k8s$api$flowcontrol$v1beta3$LimitedPriorityLevelConfiguration; + /** `type` indicates whether this priority level is subject to limitation on request execution. A value of `"Exempt"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `"Limited"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required. */ + type: string; + } + /** PriorityLevelConfigurationStatus represents the current state of a "request-priority". */ + export interface io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationStatus { + /** `conditions` is the current state of "request-priority". */ + conditions?: Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationCondition[]; + } + /** QueuingConfiguration holds the configuration parameters for queuing */ + export interface io$k8s$api$flowcontrol$v1beta3$QueuingConfiguration { + /** `handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8. */ + handSize?: number; + /** `queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50. */ + queueLengthLimit?: number; + /** `queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64. */ + queues?: number; + } + /** ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==""`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace. */ + export interface io$k8s$api$flowcontrol$v1beta3$ResourcePolicyRule { + /** `apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required. */ + apiGroups: string[]; + /** `clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list. */ + clusterScope?: boolean; + /** `namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true. */ + namespaces?: string[]; + /** `resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required. */ + resources: string[]; + /** `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required. */ + verbs: string[]; + } + /** ServiceAccountSubject holds detailed information for service-account-kind subject. */ + export interface io$k8s$api$flowcontrol$v1beta3$ServiceAccountSubject { + /** `name` is the name of matching ServiceAccount objects, or "*" to match regardless of name. Required. */ + name: string; + /** `namespace` is the namespace of matching ServiceAccount objects. Required. */ + namespace: string; + } + /** Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account. */ + export interface io$k8s$api$flowcontrol$v1beta3$Subject { + group?: Schemas.io$k8s$api$flowcontrol$v1beta3$GroupSubject; + /** `kind` indicates which one of the other fields is non-empty. Required */ + kind: string; + serviceAccount?: Schemas.io$k8s$api$flowcontrol$v1beta3$ServiceAccountSubject; + user?: Schemas.io$k8s$api$flowcontrol$v1beta3$UserSubject; + } + /** UserSubject holds detailed information for user-kind subject. */ + export interface io$k8s$api$flowcontrol$v1beta3$UserSubject { + /** `name` is the username that matches, or "*" to match all usernames. Required. */ + name: string; + } + /** HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend. */ + export interface io$k8s$api$networking$v1$HTTPIngressPath { + backend: Schemas.io$k8s$api$networking$v1$IngressBackend; + /** path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value "Exact" or "Prefix". */ + path?: string; + /** + * pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is + * done on a path element by element basis. A path element refers is the + * list of labels in the path split by the '/' separator. A request is a + * match for path p if every p is an element-wise prefix of p of the + * request path. Note that if the last element of the path is a substring + * of the last element in request path, it is not a match (e.g. /foo/bar + * matches /foo/bar/baz, but does not match /foo/barbaz). + * * ImplementationSpecific: Interpretation of the Path matching is up to + * the IngressClass. Implementations can treat this as a separate PathType + * or treat it identically to Prefix or Exact path types. + * Implementations are required to support all path types. + */ + pathType: string; + } + /** HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'. */ + export interface io$k8s$api$networking$v1$HTTPIngressRuleValue { + /** paths is a collection of paths that map requests to backends. */ + paths: Schemas.io$k8s$api$networking$v1$HTTPIngressPath[]; + } + /** IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule. */ + export interface io$k8s$api$networking$v1$IPBlock { + /** cidr is a string representing the IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64" */ + cidr: string; + /** except is a slice of CIDRs that should not be included within an IPBlock Valid examples are "192.168.1.0/24" or "2001:db8::/64" Except values will be rejected if they are outside the cidr range */ + except?: string[]; + } + /** Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. */ + export interface io$k8s$api$networking$v1$Ingress { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$networking$v1$IngressSpec; + status?: Schemas.io$k8s$api$networking$v1$IngressStatus; + } + /** IngressBackend describes all endpoints for a given service and port. */ + export interface io$k8s$api$networking$v1$IngressBackend { + resource?: Schemas.io$k8s$api$core$v1$TypedLocalObjectReference; + service?: Schemas.io$k8s$api$networking$v1$IngressServiceBackend; + } + /** IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class. */ + export interface io$k8s$api$networking$v1$IngressClass { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$networking$v1$IngressClassSpec; + } + /** IngressClassList is a collection of IngressClasses. */ + export interface io$k8s$api$networking$v1$IngressClassList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of IngressClasses. */ + items: Schemas.io$k8s$api$networking$v1$IngressClass[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** IngressClassParametersReference identifies an API object. This can be used to specify a cluster or namespace-scoped resource. */ + export interface io$k8s$api$networking$v1$IngressClassParametersReference { + /** apiGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. */ + apiGroup?: string; + /** kind is the type of resource being referenced. */ + kind: string; + /** name is the name of resource being referenced. */ + name: string; + /** namespace is the namespace of the resource being referenced. This field is required when scope is set to "Namespace" and must be unset when scope is set to "Cluster". */ + namespace?: string; + /** scope represents if this refers to a cluster or namespace scoped resource. This may be set to "Cluster" (default) or "Namespace". */ + scope?: string; + } + /** IngressClassSpec provides information about the class of an Ingress. */ + export interface io$k8s$api$networking$v1$IngressClassSpec { + /** controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable. */ + controller?: string; + parameters?: Schemas.io$k8s$api$networking$v1$IngressClassParametersReference; + } + /** IngressList is a collection of Ingress. */ + export interface io$k8s$api$networking$v1$IngressList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of Ingress. */ + items: Schemas.io$k8s$api$networking$v1$Ingress[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** IngressLoadBalancerIngress represents the status of a load-balancer ingress point. */ + export interface io$k8s$api$networking$v1$IngressLoadBalancerIngress { + /** hostname is set for load-balancer ingress points that are DNS based. */ + hostname?: string; + /** ip is set for load-balancer ingress points that are IP based. */ + ip?: string; + /** ports provides information about the ports exposed by this LoadBalancer. */ + ports?: Schemas.io$k8s$api$networking$v1$IngressPortStatus[]; + } + /** IngressLoadBalancerStatus represents the status of a load-balancer. */ + export interface io$k8s$api$networking$v1$IngressLoadBalancerStatus { + /** ingress is a list containing ingress points for the load-balancer. */ + ingress?: Schemas.io$k8s$api$networking$v1$IngressLoadBalancerIngress[]; + } + /** IngressPortStatus represents the error condition of a service port */ + export interface io$k8s$api$networking$v1$IngressPortStatus { + /** + * error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use + * CamelCase names + * - cloud provider specific error values must have names that comply with the + * format foo.example.com/CamelCase. + */ + error?: string; + /** port is the port number of the ingress port. */ + port: number; + /** protocol is the protocol of the ingress port. The supported values are: "TCP", "UDP", "SCTP" */ + protocol: string; + } + /** IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue. */ + export interface io$k8s$api$networking$v1$IngressRule { + /** + * host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to + * the IP in the Spec of the parent Ingress. + * 2. The `:` delimiter is not respected because ports are not allowed. + * Currently the port of an Ingress is implicitly :80 for http and + * :443 for https. + * Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. + * + * host can be "precise" which is a domain name without the terminating dot of a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name prefixed with a single wildcard label (e.g. "*.foo.com"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == "*"). Requests will be matched against the Host field in the following way: 1. If host is precise, the request matches this rule if the http host header is equal to Host. 2. If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule. + */ + host?: string; + http?: Schemas.io$k8s$api$networking$v1$HTTPIngressRuleValue; + } + /** IngressServiceBackend references a Kubernetes Service as a Backend. */ + export interface io$k8s$api$networking$v1$IngressServiceBackend { + /** name is the referenced service. The service must exist in the same namespace as the Ingress object. */ + name: string; + port?: Schemas.io$k8s$api$networking$v1$ServiceBackendPort; + } + /** IngressSpec describes the Ingress the user wishes to exist. */ + export interface io$k8s$api$networking$v1$IngressSpec { + defaultBackend?: Schemas.io$k8s$api$networking$v1$IngressBackend; + /** ingressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present. */ + ingressClassName?: string; + /** rules is a list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. */ + rules?: Schemas.io$k8s$api$networking$v1$IngressRule[]; + /** tls represents the TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI. */ + tls?: Schemas.io$k8s$api$networking$v1$IngressTLS[]; + } + /** IngressStatus describe the current state of the Ingress. */ + export interface io$k8s$api$networking$v1$IngressStatus { + loadBalancer?: Schemas.io$k8s$api$networking$v1$IngressLoadBalancerStatus; + } + /** IngressTLS describes the transport layer security associated with an ingress. */ + export interface io$k8s$api$networking$v1$IngressTLS { + /** hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified. */ + hosts?: string[]; + /** secretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the "Host" header is used for routing. */ + secretName?: string; + } + /** NetworkPolicy describes what network traffic is allowed for a set of Pods */ + export interface io$k8s$api$networking$v1$NetworkPolicy { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$networking$v1$NetworkPolicySpec; + } + /** NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8 */ + export interface io$k8s$api$networking$v1$NetworkPolicyEgressRule { + /** ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. */ + ports?: Schemas.io$k8s$api$networking$v1$NetworkPolicyPort[]; + /** to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list. */ + to?: Schemas.io$k8s$api$networking$v1$NetworkPolicyPeer[]; + } + /** NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from. */ + export interface io$k8s$api$networking$v1$NetworkPolicyIngressRule { + /** from is a list of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list. */ + from?: Schemas.io$k8s$api$networking$v1$NetworkPolicyPeer[]; + /** ports is a list of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. */ + ports?: Schemas.io$k8s$api$networking$v1$NetworkPolicyPort[]; + } + /** NetworkPolicyList is a list of NetworkPolicy objects. */ + export interface io$k8s$api$networking$v1$NetworkPolicyList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a list of schema objects. */ + items: Schemas.io$k8s$api$networking$v1$NetworkPolicy[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed */ + export interface io$k8s$api$networking$v1$NetworkPolicyPeer { + ipBlock?: Schemas.io$k8s$api$networking$v1$IPBlock; + namespaceSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + podSelector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + } + /** NetworkPolicyPort describes a port to allow traffic on */ + export interface io$k8s$api$networking$v1$NetworkPolicyPort { + /** endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port. */ + endPort?: number; + port?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + /** protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP. */ + protocol?: string; + } + /** NetworkPolicySpec provides the specification of a NetworkPolicy */ + export interface io$k8s$api$networking$v1$NetworkPolicySpec { + /** egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8 */ + egress?: Schemas.io$k8s$api$networking$v1$NetworkPolicyEgressRule[]; + /** ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default) */ + ingress?: Schemas.io$k8s$api$networking$v1$NetworkPolicyIngressRule[]; + podSelector: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are ["Ingress"], ["Egress"], or ["Ingress", "Egress"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8 */ + policyTypes?: string[]; + } + /** ServiceBackendPort is the service port being referenced. */ + export interface io$k8s$api$networking$v1$ServiceBackendPort { + /** name is the name of the port on the Service. This is a mutually exclusive setting with "Number". */ + name?: string; + /** number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name". */ + number?: number; + } + /** ClusterCIDR represents a single configuration for per-Node Pod CIDR allocations when the MultiCIDRRangeAllocator is enabled (see the config for kube-controller-manager). A cluster may have any number of ClusterCIDR resources, all of which will be considered when allocating a CIDR for a Node. A ClusterCIDR is eligible to be used for a given Node when the node selector matches the node in question and has free CIDRs to allocate. In case of multiple matching ClusterCIDR resources, the allocator will attempt to break ties using internal heuristics, but any ClusterCIDR whose node selector matches the Node may be used. */ + export interface io$k8s$api$networking$v1alpha1$ClusterCIDR { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDRSpec; + } + /** ClusterCIDRList contains a list of ClusterCIDR. */ + export interface io$k8s$api$networking$v1alpha1$ClusterCIDRList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of ClusterCIDRs. */ + items: Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ClusterCIDRSpec defines the desired state of ClusterCIDR. */ + export interface io$k8s$api$networking$v1alpha1$ClusterCIDRSpec { + /** ipv4 defines an IPv4 IP block in CIDR notation(e.g. "10.0.0.0/8"). At least one of ipv4 and ipv6 must be specified. This field is immutable. */ + ipv4?: string; + /** ipv6 defines an IPv6 IP block in CIDR notation(e.g. "2001:db8::/64"). At least one of ipv4 and ipv6 must be specified. This field is immutable. */ + ipv6?: string; + nodeSelector?: Schemas.io$k8s$api$core$v1$NodeSelector; + /** perNodeHostBits defines the number of host bits to be configured per node. A subnet mask determines how much of the address is used for network bits and host bits. For example an IPv4 address of 192.168.0.0/24, splits the address into 24 bits for the network portion and 8 bits for the host portion. To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6). Minimum value is 4 (16 IPs). This field is immutable. */ + perNodeHostBits: number; + } + /** IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 Invalid: 10.01.2.3 or 2001:db8:0:0:0::1 */ + export interface io$k8s$api$networking$v1alpha1$IPAddress { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$networking$v1alpha1$IPAddressSpec; + } + /** IPAddressList contains a list of IPAddress. */ + export interface io$k8s$api$networking$v1alpha1$IPAddressList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of IPAddresses. */ + items: Schemas.io$k8s$api$networking$v1alpha1$IPAddress[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** IPAddressSpec describe the attributes in an IP Address. */ + export interface io$k8s$api$networking$v1alpha1$IPAddressSpec { + parentRef?: Schemas.io$k8s$api$networking$v1alpha1$ParentReference; + } + /** ParentReference describes a reference to a parent object. */ + export interface io$k8s$api$networking$v1alpha1$ParentReference { + /** Group is the group of the object being referenced. */ + group?: string; + /** Name is the name of the object being referenced. */ + name?: string; + /** Namespace is the namespace of the object being referenced. */ + namespace?: string; + /** Resource is the resource of the object being referenced. */ + resource?: string; + /** UID is the uid of the object being referenced. */ + uid?: string; + } + /** Overhead structure represents the resource overhead associated with running a pod. */ + export interface io$k8s$api$node$v1$Overhead { + /** podFixed represents the fixed resource overhead associated with running a pod. */ + podFixed?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + }; + } + /** RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/ */ + export interface io$k8s$api$node$v1$RuntimeClass { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called "runc" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable. */ + handler: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + overhead?: Schemas.io$k8s$api$node$v1$Overhead; + scheduling?: Schemas.io$k8s$api$node$v1$Scheduling; + } + /** RuntimeClassList is a list of RuntimeClass objects. */ + export interface io$k8s$api$node$v1$RuntimeClassList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is a list of schema objects. */ + items: Schemas.io$k8s$api$node$v1$RuntimeClass[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass. */ + export interface io$k8s$api$node$v1$Scheduling { + /** nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission. */ + nodeSelector?: { + [key: string]: string; + }; + /** tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass. */ + tolerations?: Schemas.io$k8s$api$core$v1$Toleration[]; + } + /** Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions. */ + export interface io$k8s$api$policy$v1$Eviction { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + deleteOptions?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + } + /** PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods */ + export interface io$k8s$api$policy$v1$PodDisruptionBudget { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetSpec; + status?: Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetStatus; + } + /** PodDisruptionBudgetList is a collection of PodDisruptionBudgets. */ + export interface io$k8s$api$policy$v1$PodDisruptionBudgetList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of PodDisruptionBudgets */ + items: Schemas.io$k8s$api$policy$v1$PodDisruptionBudget[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PodDisruptionBudgetSpec is a description of a PodDisruptionBudget. */ + export interface io$k8s$api$policy$v1$PodDisruptionBudgetSpec { + maxUnavailable?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + minAvailable?: Schemas.io$k8s$apimachinery$pkg$util$intstr$IntOrString; + selector?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** + * UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type="Ready",status="True". + * + * Valid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policy. + * + * IfHealthyBudget policy means that running pods (status.phase="Running"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction. + * + * AlwaysAllow policy means that all running pods (status.phase="Running"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction. + * + * Additional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field. + * + * This field is beta-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default). + */ + unhealthyPodEvictionPolicy?: string; + } + /** PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system. */ + export interface io$k8s$api$policy$v1$PodDisruptionBudgetStatus { + /** + * Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute + * the number of allowed disruptions. Therefore no disruptions are + * allowed and the status of the condition will be False. + * - InsufficientPods: The number of pods are either at or below the number + * required by the PodDisruptionBudget. No disruptions are + * allowed and the status of the condition will be False. + * - SufficientPods: There are more pods than required by the PodDisruptionBudget. + * The condition will be True, and the number of allowed + * disruptions are provided by the disruptionsAllowed property. + */ + conditions?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Condition[]; + /** current number of healthy pods */ + currentHealthy: number; + /** minimum desired number of healthy pods */ + desiredHealthy: number; + /** DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions. */ + disruptedPods?: { + [key: string]: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + }; + /** Number of pod disruptions that are currently allowed. */ + disruptionsAllowed: number; + /** total number of pods counted by this disruption budget */ + expectedPods: number; + /** Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation. */ + observedGeneration?: number; + } + /** AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole */ + export interface io$k8s$api$rbac$v1$AggregationRule { + /** ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added */ + clusterRoleSelectors?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector[]; + } + /** ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. */ + export interface io$k8s$api$rbac$v1$ClusterRole { + aggregationRule?: Schemas.io$k8s$api$rbac$v1$AggregationRule; + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** Rules holds all the PolicyRules for this ClusterRole */ + rules?: Schemas.io$k8s$api$rbac$v1$PolicyRule[]; + } + /** ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. */ + export interface io$k8s$api$rbac$v1$ClusterRoleBinding { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + roleRef: Schemas.io$k8s$api$rbac$v1$RoleRef; + /** Subjects holds references to the objects the role applies to. */ + subjects?: Schemas.io$k8s$api$rbac$v1$Subject[]; + } + /** ClusterRoleBindingList is a collection of ClusterRoleBindings */ + export interface io$k8s$api$rbac$v1$ClusterRoleBindingList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of ClusterRoleBindings */ + items: Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ClusterRoleList is a collection of ClusterRoles */ + export interface io$k8s$api$rbac$v1$ClusterRoleList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of ClusterRoles */ + items: Schemas.io$k8s$api$rbac$v1$ClusterRole[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to. */ + export interface io$k8s$api$rbac$v1$PolicyRule { + /** APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups. */ + apiGroups?: string[]; + /** NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. */ + nonResourceURLs?: string[]; + /** ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. */ + resourceNames?: string[]; + /** Resources is a list of resources this rule applies to. '*' represents all resources. */ + resources?: string[]; + /** Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs. */ + verbs: string[]; + } + /** Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. */ + export interface io$k8s$api$rbac$v1$Role { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** Rules holds all the PolicyRules for this Role */ + rules?: Schemas.io$k8s$api$rbac$v1$PolicyRule[]; + } + /** RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. */ + export interface io$k8s$api$rbac$v1$RoleBinding { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + roleRef: Schemas.io$k8s$api$rbac$v1$RoleRef; + /** Subjects holds references to the objects the role applies to. */ + subjects?: Schemas.io$k8s$api$rbac$v1$Subject[]; + } + /** RoleBindingList is a collection of RoleBindings */ + export interface io$k8s$api$rbac$v1$RoleBindingList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of RoleBindings */ + items: Schemas.io$k8s$api$rbac$v1$RoleBinding[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** RoleList is a collection of Roles */ + export interface io$k8s$api$rbac$v1$RoleList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is a list of Roles */ + items: Schemas.io$k8s$api$rbac$v1$Role[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** RoleRef contains information that points to the role being used */ + export interface io$k8s$api$rbac$v1$RoleRef { + /** APIGroup is the group for the resource being referenced */ + apiGroup: string; + /** Kind is the type of resource being referenced */ + kind: string; + /** Name is the name of resource being referenced */ + name: string; + } + /** Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names. */ + export interface io$k8s$api$rbac$v1$Subject { + /** APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects. */ + apiGroup?: string; + /** Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error. */ + kind: string; + /** Name of the object being referenced. */ + name: string; + /** Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error. */ + namespace?: string; + } + /** AllocationResult contains attributes of an allocated resource. */ + export interface io$k8s$api$resource$v1alpha2$AllocationResult { + availableOnNodes?: Schemas.io$k8s$api$core$v1$NodeSelector; + /** + * ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim. Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node. This data is returned by the driver after a successful allocation and is opaque to Kubernetes. Driver documentation may explain to users how to interpret this data if needed. + * + * Setting this field is optional. It has a maximum size of 32 entries. If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached. The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in. + */ + resourceHandles?: Schemas.io$k8s$api$resource$v1alpha2$ResourceHandle[]; + /** Shareable determines whether the resource supports more than one consumer at a time. */ + shareable?: boolean; + } + /** + * PodSchedulingContext objects hold information that is needed to schedule a Pod with ResourceClaims that use "WaitForFirstConsumer" allocation mode. + * + * This is an alpha type and requires enabling the DynamicResourceAllocation feature gate. + */ + export interface io$k8s$api$resource$v1alpha2$PodSchedulingContext { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextSpec; + status?: Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextStatus; + } + /** PodSchedulingContextList is a collection of Pod scheduling objects. */ + export interface io$k8s$api$resource$v1alpha2$PodSchedulingContextList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of PodSchedulingContext objects. */ + items: Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** PodSchedulingContextSpec describes where resources for the Pod are needed. */ + export interface io$k8s$api$resource$v1alpha2$PodSchedulingContextSpec { + /** + * PotentialNodes lists nodes where the Pod might be able to run. + * + * The size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced. + */ + potentialNodes?: string[]; + /** SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use "WaitForFirstConsumer" allocation is to be attempted. */ + selectedNode?: string; + } + /** PodSchedulingContextStatus describes where resources for the Pod can be allocated. */ + export interface io$k8s$api$resource$v1alpha2$PodSchedulingContextStatus { + /** ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses "WaitForFirstConsumer" allocation mode. */ + resourceClaims?: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimSchedulingStatus[]; + } + /** + * ResourceClaim describes which resources are needed by a resource consumer. Its status tracks whether the resource has been allocated and what the resulting attributes are. + * + * This is an alpha type and requires enabling the DynamicResourceAllocation feature gate. + */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaim { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimSpec; + status?: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimStatus; + } + /** ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimConsumerReference { + /** APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources. */ + apiGroup?: string; + /** Name is the name of resource being referenced. */ + name: string; + /** Resource is the type of resource being referenced, for example "pods". */ + resource: string; + /** UID identifies exactly one incarnation of the resource. */ + uid: string; + } + /** ResourceClaimList is a collection of claims. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of resource claims. */ + items: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ResourceClaimParametersReference contains enough information to let you locate the parameters for a ResourceClaim. The object must be in the same namespace as the ResourceClaim. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimParametersReference { + /** APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources. */ + apiGroup?: string; + /** Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata, for example "ConfigMap". */ + kind: string; + /** Name is the name of resource being referenced. */ + name: string; + } + /** ResourceClaimSchedulingStatus contains information about one particular ResourceClaim with "WaitForFirstConsumer" allocation mode. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimSchedulingStatus { + /** Name matches the pod.spec.resourceClaims[*].Name field. */ + name?: string; + /** + * UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated for. + * + * The size of this field is limited to 128, the same as for PodSchedulingSpec.PotentialNodes. This may get increased in the future, but not reduced. + */ + unsuitableNodes?: string[]; + } + /** ResourceClaimSpec defines how a resource is to be allocated. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimSpec { + /** Allocation can start immediately or when a Pod wants to use the resource. "WaitForFirstConsumer" is the default. */ + allocationMode?: string; + parametersRef?: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimParametersReference; + /** ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment. */ + resourceClassName: string; + } + /** ResourceClaimStatus tracks whether the resource has been allocated and what the resulting attributes are. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimStatus { + allocation?: Schemas.io$k8s$api$resource$v1alpha2$AllocationResult; + /** + * DeallocationRequested indicates that a ResourceClaim is to be deallocated. + * + * The driver then must deallocate this claim and reset the field together with clearing the Allocation field. + * + * While DeallocationRequested is set, no new consumers may be added to ReservedFor. + */ + deallocationRequested?: boolean; + /** DriverName is a copy of the driver name from the ResourceClass at the time when allocation started. */ + driverName?: string; + /** + * ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started. + * + * There can be at most 32 such reservations. This may get increased in the future, but not reduced. + */ + reservedFor?: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimConsumerReference[]; + } + /** ResourceClaimTemplate is used to produce ResourceClaim objects. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimTemplate { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateSpec; + } + /** ResourceClaimTemplateList is a collection of claim templates. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of resource claim templates. */ + items: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ResourceClaimTemplateSpec contains the metadata and fields for a ResourceClaim. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClaimTemplateSpec { + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimSpec; + } + /** + * ResourceClass is used by administrators to influence how resources are allocated. + * + * This is an alpha type and requires enabling the DynamicResourceAllocation feature gate. + */ + export interface io$k8s$api$resource$v1alpha2$ResourceClass { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** + * DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class. + * + * Resource drivers have a unique name in forward domain order (acme.example.com). + */ + driverName: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + parametersRef?: Schemas.io$k8s$api$resource$v1alpha2$ResourceClassParametersReference; + suitableNodes?: Schemas.io$k8s$api$core$v1$NodeSelector; + } + /** ResourceClassList is a collection of classes. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClassList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of resource classes. */ + items: Schemas.io$k8s$api$resource$v1alpha2$ResourceClass[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** ResourceClassParametersReference contains enough information to let you locate the parameters for a ResourceClass. */ + export interface io$k8s$api$resource$v1alpha2$ResourceClassParametersReference { + /** APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources. */ + apiGroup?: string; + /** Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata. */ + kind: string; + /** Name is the name of resource being referenced. */ + name: string; + /** Namespace that contains the referenced resource. Must be empty for cluster-scoped resources and non-empty for namespaced resources. */ + namespace?: string; + } + /** ResourceHandle holds opaque resource data for processing by a specific kubelet plugin. */ + export interface io$k8s$api$resource$v1alpha2$ResourceHandle { + /** + * Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandle. + * + * The maximum size of this field is 16KiB. This may get increased in the future, but not reduced. + */ + data?: string; + /** DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle's data once it lands on a node. This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in. */ + driverName?: string; + } + /** PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer. */ + export interface io$k8s$api$scheduling$v1$PriorityClass { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** description is an arbitrary string that usually provides guidelines on when this priority class should be used. */ + description?: string; + /** globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. */ + globalDefault?: boolean; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. */ + preemptionPolicy?: string; + /** value represents the integer value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec. */ + value: number; + } + /** PriorityClassList is a collection of priority classes. */ + export interface io$k8s$api$scheduling$v1$PriorityClassList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of PriorityClasses */ + items: Schemas.io$k8s$api$scheduling$v1$PriorityClass[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced. */ + export interface io$k8s$api$storage$v1$CSIDriver { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$storage$v1$CSIDriverSpec; + } + /** CSIDriverList is a collection of CSIDriver objects. */ + export interface io$k8s$api$storage$v1$CSIDriverList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of CSIDriver */ + items: Schemas.io$k8s$api$storage$v1$CSIDriver[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** CSIDriverSpec is the specification of a CSIDriver. */ + export interface io$k8s$api$storage$v1$CSIDriverSpec { + /** + * attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called. + * + * This field is immutable. + */ + attachRequired?: boolean; + /** + * fsGroupPolicy defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details. + * + * This field is immutable. + * + * Defaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume. With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume's access mode contains ReadWriteOnce. + */ + fsGroupPolicy?: string; + /** + * podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations, if set to true. If set to false, pod information will not be passed on mount. Default is false. + * + * The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. + * + * The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. "csi.storage.k8s.io/pod.name": pod.Name "csi.storage.k8s.io/pod.namespace": pod.Namespace "csi.storage.k8s.io/pod.uid": string(pod.UID) "csi.storage.k8s.io/ephemeral": "true" if the volume is an ephemeral inline volume + * defined by a CSIVolumeSource, otherwise "false" + * + * "csi.storage.k8s.io/ephemeral" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the "Persistent" and "Ephemeral" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver. + * + * This field is immutable. + */ + podInfoOnMount?: boolean; + /** + * requiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false. + * + * Note: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container. + */ + requiresRepublish?: boolean; + /** + * seLinuxMount specifies if the CSI driver supports "-o context" mount option. + * + * When "true", the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different `-o context` options. This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes. Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context. In the future, it may be expanded to other volume AccessModes. In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux context. + * + * When "false", Kubernetes won't pass any special SELinux mount options to the driver. This is typical for volumes that represent subdirectories of a bigger shared filesystem. + * + * Default is "false". + */ + seLinuxMount?: boolean; + /** + * storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true. + * + * The check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object. + * + * Alternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published. + * + * This field was immutable in Kubernetes <= 1.22 and now is mutable. + */ + storageCapacity?: boolean; + /** + * tokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: "csi.storage.k8s.io/serviceAccount.tokens": { + * "": { + * "token": , + * "expirationTimestamp": , + * }, + * ... + * } + * + * Note: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically. + */ + tokenRequests?: Schemas.io$k8s$api$storage$v1$TokenRequest[]; + /** + * volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is "Persistent", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. + * + * The other mode is "Ephemeral". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. + * + * For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future. + * + * This field is beta. This field is immutable. + */ + volumeLifecycleModes?: string[]; + } + /** CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object. */ + export interface io$k8s$api$storage$v1$CSINode { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$storage$v1$CSINodeSpec; + } + /** CSINodeDriver holds information about the specification of one CSI driver installed on a node */ + export interface io$k8s$api$storage$v1$CSINodeDriver { + allocatable?: Schemas.io$k8s$api$storage$v1$VolumeNodeResources; + /** name represents the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver. */ + name: string; + /** nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as "node1", but the storage system may refer to the same node as "nodeA". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. "nodeA" instead of "node1". This field is required. */ + nodeID: string; + /** topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. "company.com/zone", "company.com/region"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology. */ + topologyKeys?: string[]; + } + /** CSINodeList is a collection of CSINode objects. */ + export interface io$k8s$api$storage$v1$CSINodeList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of CSINode */ + items: Schemas.io$k8s$api$storage$v1$CSINode[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** CSINodeSpec holds information about the specification of all CSI drivers installed on a node */ + export interface io$k8s$api$storage$v1$CSINodeSpec { + /** drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty. */ + drivers: Schemas.io$k8s$api$storage$v1$CSINodeDriver[]; + } + /** + * CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment. This can be used when considering where to instantiate new PersistentVolumes. + * + * For example this can express things like: - StorageClass "standard" has "1234 GiB" available in "topology.kubernetes.io/zone=us-east1" - StorageClass "localssd" has "10 GiB" available in "kubernetes.io/hostname=knode-abc123" + * + * The following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero + * + * The producer of these objects can decide which approach is more suitable. + * + * They are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler compares the MaximumVolumeSize against the requested size of pending volumes to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back to a comparison against the less precise Capacity. If that is also unset, the scheduler assumes that capacity is insufficient and tries some other node. + */ + export interface io$k8s$api$storage$v1$CSIStorageCapacity { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + capacity?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + maximumVolumeSize?: Schemas.io$k8s$apimachinery$pkg$api$resource$Quantity; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + nodeTopology?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector; + /** storageClassName represents the name of the StorageClass that the reported capacity applies to. It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain). If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator. This field is immutable. */ + storageClassName: string; + } + /** CSIStorageCapacityList is a collection of CSIStorageCapacity objects. */ + export interface io$k8s$api$storage$v1$CSIStorageCapacityList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of CSIStorageCapacity objects. */ + items: Schemas.io$k8s$api$storage$v1$CSIStorageCapacity[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** + * StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. + * + * StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name. + */ + export interface io$k8s$api$storage$v1$StorageClass { + /** allowVolumeExpansion shows whether the storage class allow volume expand. */ + allowVolumeExpansion?: boolean; + /** allowedTopologies restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature. */ + allowedTopologies?: Schemas.io$k8s$api$core$v1$TopologySelectorTerm[]; + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + /** mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class. e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. */ + mountOptions?: string[]; + /** parameters holds the parameters for the provisioner that should create volumes of this storage class. */ + parameters?: { + [key: string]: string; + }; + /** provisioner indicates the type of the provisioner. */ + provisioner: string; + /** reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class. Defaults to Delete. */ + reclaimPolicy?: string; + /** volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature. */ + volumeBindingMode?: string; + } + /** StorageClassList is a collection of storage classes. */ + export interface io$k8s$api$storage$v1$StorageClassList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of StorageClasses */ + items: Schemas.io$k8s$api$storage$v1$StorageClass[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** TokenRequest contains parameters of a service account token. */ + export interface io$k8s$api$storage$v1$TokenRequest { + /** audience is the intended audience of the token in "TokenRequestSpec". It will default to the audiences of kube apiserver. */ + audience: string; + /** expirationSeconds is the duration of validity of the token in "TokenRequestSpec". It has the same default value of "ExpirationSeconds" in "TokenRequestSpec". */ + expirationSeconds?: number; + } + /** + * VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. + * + * VolumeAttachment objects are non-namespaced. + */ + export interface io$k8s$api$storage$v1$VolumeAttachment { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$api$storage$v1$VolumeAttachmentSpec; + status?: Schemas.io$k8s$api$storage$v1$VolumeAttachmentStatus; + } + /** VolumeAttachmentList is a collection of VolumeAttachment objects. */ + export interface io$k8s$api$storage$v1$VolumeAttachmentList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items is the list of VolumeAttachments */ + items: Schemas.io$k8s$api$storage$v1$VolumeAttachment[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set. */ + export interface io$k8s$api$storage$v1$VolumeAttachmentSource { + inlineVolumeSpec?: Schemas.io$k8s$api$core$v1$PersistentVolumeSpec; + /** persistentVolumeName represents the name of the persistent volume to attach. */ + persistentVolumeName?: string; + } + /** VolumeAttachmentSpec is the specification of a VolumeAttachment request. */ + export interface io$k8s$api$storage$v1$VolumeAttachmentSpec { + /** attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName(). */ + attacher: string; + /** nodeName represents the node that the volume should be attached to. */ + nodeName: string; + source: Schemas.io$k8s$api$storage$v1$VolumeAttachmentSource; + } + /** VolumeAttachmentStatus is the status of a VolumeAttachment request. */ + export interface io$k8s$api$storage$v1$VolumeAttachmentStatus { + attachError?: Schemas.io$k8s$api$storage$v1$VolumeError; + /** attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. */ + attached: boolean; + /** attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher. */ + attachmentMetadata?: { + [key: string]: string; + }; + detachError?: Schemas.io$k8s$api$storage$v1$VolumeError; + } + /** VolumeError captures an error encountered during a volume operation. */ + export interface io$k8s$api$storage$v1$VolumeError { + /** message represents the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information. */ + message?: string; + time?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + } + /** VolumeNodeResources is a set of resource limits for scheduling of volumes. */ + export interface io$k8s$api$storage$v1$VolumeNodeResources { + /** count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded. */ + count?: number; + } + /** CustomResourceColumnDefinition specifies a column for server side printing. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceColumnDefinition { + /** description is a human readable description of this column. */ + description?: string; + /** format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details. */ + format?: string; + /** jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column. */ + jsonPath: string; + /** name is a human readable name for the column. */ + name: string; + /** priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0. */ + priority?: number; + /** type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details. */ + type: string; + } + /** CustomResourceConversion describes how to convert different versions of a CR. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceConversion { + /** + * strategy specifies how custom resources are converted between versions. Allowed values are: - `"None"`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `"Webhook"`: API Server will call to an external webhook to do the conversion. Additional information + * is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set. + */ + strategy: string; + webhook?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookConversion; + } + /** CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionSpec; + status?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionStatus; + } + /** CustomResourceDefinitionCondition contains details for the current condition of this pod. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** message is a human-readable message indicating details about last transition. */ + message?: string; + /** reason is a unique, one-word, CamelCase reason for the condition's last transition. */ + reason?: string; + /** status is the status of the condition. Can be True, False, Unknown. */ + status: string; + /** type is the type of the condition. Types include Established, NamesAccepted and Terminating. */ + type: string; + } + /** CustomResourceDefinitionList is a list of CustomResourceDefinition objects. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** items list individual CustomResourceDefinition objects */ + items: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames { + /** categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`. */ + categories?: string[]; + /** kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls. */ + kind: string; + /** listKind is the serialized kind of the list for this resource. Defaults to "`kind`List". */ + listKind?: string; + /** plural is the plural name of the resource to serve. The custom resources are served under `/apis///.../`. Must match the name of the CustomResourceDefinition (in the form `.`). Must be all lowercase. */ + plural: string; + /** shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get `. It must be all lowercase. */ + shortNames?: string[]; + /** singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`. */ + singular?: string; + } + /** CustomResourceDefinitionSpec describes how a user wants their resource to appear */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionSpec { + conversion?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceConversion; + /** group is the API group of the defined custom resource. The custom resources are served under `/apis//...`. Must match the name of the CustomResourceDefinition (in the form `.`). */ + group: string; + names: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames; + /** preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details. */ + preserveUnknownFields?: boolean; + /** scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. */ + scope: string; + /** versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ + versions: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionVersion[]; + } + /** CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionStatus { + acceptedNames?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionNames; + /** conditions indicate state for particular aspects of a CustomResourceDefinition */ + conditions?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionCondition[]; + /** storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list. */ + storedVersions?: string[]; + } + /** CustomResourceDefinitionVersion describes a version for CRD. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionVersion { + /** additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used. */ + additionalPrinterColumns?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceColumnDefinition[]; + /** deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false. */ + deprecated?: boolean; + /** deprecationWarning overrides the default warning returned to API clients. May only be set when `deprecated` is true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists. */ + deprecationWarning?: string; + /** name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis///...` if `served` is true. */ + name: string; + schema?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceValidation; + /** served is a flag enabling/disabling this version from being served via REST APIs */ + served: boolean; + /** storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true. */ + storage: boolean; + subresources?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresources; + } + /** CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceScale { + /** labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string. */ + labelSelectorPath?: string; + /** specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET. */ + specReplicasPath: string; + /** statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0. */ + statusReplicasPath: string; + } + /** CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceStatus { + } + /** CustomResourceSubresources defines the status and scale subresources for CustomResources. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresources { + scale?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceScale; + status?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceSubresourceStatus; + } + /** CustomResourceValidation is a list of validation methods for CustomResources. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceValidation { + openAPIV3Schema?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps; + } + /** ExternalDocumentation allows referencing an external resource for extended documentation. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ExternalDocumentation { + description?: string; + url?: string; + } + /** JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil. */ + export type io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSON = any; + /** JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/). */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps { + "$ref"?: string; + "$schema"?: string; + additionalItems?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaPropsOrBool; + additionalProperties?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaPropsOrBool; + allOf?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps[]; + anyOf?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps[]; + default?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSON; + definitions?: { + [key: string]: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps; + }; + dependencies?: { + [key: string]: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaPropsOrStringArray; + }; + description?: string; + enum?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSON[]; + example?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSON; + exclusiveMaximum?: boolean; + exclusiveMinimum?: boolean; + externalDocs?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ExternalDocumentation; + /** + * format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated: + * + * - bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339. + */ + format?: string; + id?: string; + items?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaPropsOrArray; + maxItems?: number; + maxLength?: number; + maxProperties?: number; + maximum?: number; + minItems?: number; + minLength?: number; + minProperties?: number; + minimum?: number; + multipleOf?: number; + not?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps; + nullable?: boolean; + oneOf?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps[]; + pattern?: string; + patternProperties?: { + [key: string]: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps; + }; + properties?: { + [key: string]: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaProps; + }; + required?: string[]; + title?: string; + type?: string; + uniqueItems?: boolean; + /** x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata). */ + "x-kubernetes-embedded-resource"?: boolean; + /** + * x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns: + * + * 1) anyOf: + * - type: integer + * - type: string + * 2) allOf: + * - anyOf: + * - type: integer + * - type: string + * - ... zero or more + */ + "x-kubernetes-int-or-string"?: boolean; + /** + * x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map. + * + * This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). + * + * The properties specified must either be required or have a default value, to ensure those properties are present for all list items. + */ + "x-kubernetes-list-map-keys"?: string[]; + /** + * x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values: + * + * 1) `atomic`: the list is treated as a single entity, like a scalar. + * Atomic lists will be entirely replaced when updated. This extension + * may be used on any type of list (struct, scalar, ...). + * 2) `set`: + * Sets are lists that must not have multiple items with the same value. Each + * value must be a scalar, an object with x-kubernetes-map-type `atomic` or an + * array with x-kubernetes-list-type `atomic`. + * 3) `map`: + * These lists are like maps in that their elements have a non-index key + * used to identify them. Order is preserved upon merge. The map tag + * must only be used on a list with elements of type object. + * Defaults to atomic for arrays. + */ + "x-kubernetes-list-type"?: string; + /** + * x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values: + * + * 1) `granular`: + * These maps are actual maps (key-value pairs) and each fields are independent + * from each other (they can each be manipulated by separate actors). This is + * the default behaviour for all maps. + * 2) `atomic`: the list is treated as a single entity, like a scalar. + * Atomic maps will be entirely replaced when updated. + */ + "x-kubernetes-map-type"?: string; + /** x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden. */ + "x-kubernetes-preserve-unknown-fields"?: boolean; + /** x-kubernetes-validations describes a list of validation rules written in the CEL expression language. This field is an alpha-level. Using this field requires the feature gate `CustomResourceValidationExpressions` to be enabled. */ + "x-kubernetes-validations"?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ValidationRule[]; + } + /** JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes. */ + export type io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaPropsOrArray = any; + /** JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property. */ + export type io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaPropsOrBool = any; + /** JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array. */ + export type io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$JSONSchemaPropsOrStringArray = any; + /** ServiceReference holds a reference to Service.legacy.k8s.io */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ServiceReference { + /** name is the name of the service. Required */ + name: string; + /** namespace is the namespace of the service. Required */ + namespace: string; + /** path is an optional URL path at which the webhook will be contacted. */ + path?: string; + /** port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility. */ + port?: number; + } + /** ValidationRule describes a validation rule written in the CEL expression language. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ValidationRule { + /** fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo` If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList` It does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to [JSONPath support in Kubernetes](https://kubernetes.io/docs/reference/kubectl/jsonpath/) for more info. Numeric index of array is not supported. For field name which contains special characters, use `['specialName']` to refer the field name. e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']` */ + fieldPath?: string; + /** Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host" */ + message?: string; + /** MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")" */ + messageExpression?: string; + /** reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate". If not set, default to use "FieldValueInvalid". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid. */ + reason?: string; + /** + * Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The `self` variable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"} + * + * If the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map are accessible via CEL macros and functions such as `self.all(...)`. If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and functions. If the Rule is scoped to a scalar, `self` is bound to the scalar value. Examples: - Rule scoped to a map of objects: {"rule": "self.components['Widget'].priority < 10"} - Rule scoped to a list of integers: {"rule": "self.values.all(value, value >= 0 && value < 100)"} - Rule scoped to a string value: {"rule": "self.startsWith('kube')"} + * + * The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible. + * + * Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as: + * - A schema with no type and x-kubernetes-preserve-unknown-fields set to true + * - An array where the items schema is of an "unknown type" + * - An object where the additionalProperties schema is of an "unknown type" + * + * Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are: + * "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", + * "import", "let", "loop", "package", "namespace", "return". + * Examples: + * - Rule accessing a property named "namespace": {"rule": "self.__namespace__ > 0"} + * - Rule accessing a property named "x-prop": {"rule": "self.x__dash__prop > 0"} + * - Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"} + * + * Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: + * - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and + * non-intersecting elements in `Y` are appended, retaining their partial order. + * - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values + * are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with + * non-intersecting keys are appended, retaining their partial order. + */ + rule: string; + } + /** WebhookClientConfig contains the information to make a TLS connection with the webhook. */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookClientConfig { + /** caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used. */ + caBundle?: string; + service?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$ServiceReference; + /** + * url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. + * + * The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. + * + * Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. + * + * The scheme must be "https"; the URL must begin with "https://". + * + * A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. + * + * Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. + */ + url?: string; + } + /** WebhookConversion describes how to call a conversion webhook */ + export interface io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookConversion { + clientConfig?: Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$WebhookClientConfig; + /** conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. */ + conversionReviewVersions: string[]; + } + /** + * Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors. + * + * The serialization format is: + * + * ``` ::= + * + * (Note that may be empty, from the "" case in .) + * + * ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= "+" | "-" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei + * + * (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) + * + * ::= m | "" | k | M | G | T | P | E + * + * (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.) + * + * ::= "e" | "E" ``` + * + * No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities. + * + * When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized. + * + * Before serializing, Quantity will be put in "canonical form". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that: + * + * - No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible. + * + * The sign will be omitted unless the number is negative. + * + * Examples: + * + * - 1.5 will be serialized as "1500m" - 1.5Gi will be serialized as "1536Mi" + * + * Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise. + * + * Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.) + * + * This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation. + */ + export type io$k8s$apimachinery$pkg$api$resource$Quantity = string; + /** APIGroup contains the name, the supported versions, and the preferred version of a group. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + /** name is the name of the group. */ + name: string; + preferredVersion?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$GroupVersionForDiscovery; + /** a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP. */ + serverAddressByClientCIDRs?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ServerAddressByClientCIDR[]; + /** versions are the versions supported in this group. */ + versions: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$GroupVersionForDiscovery[]; + } + /** APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$APIGroupList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** groups is a list of APIGroup. */ + groups: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + } + /** APIResource specifies the name of a resource and whether it is namespaced. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$APIResource { + /** categories is a list of the grouped resources this resource belongs to (e.g. 'all') */ + categories?: string[]; + /** group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale". */ + group?: string; + /** kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo') */ + kind: string; + /** name is the plural name of the resource. */ + name: string; + /** namespaced indicates if a resource is namespaced or not. */ + namespaced: boolean; + /** shortNames is a list of suggested short names of the resource. */ + shortNames?: string[]; + /** singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface. */ + singularName: string; + /** The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates. */ + storageVersionHash?: string; + /** verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy) */ + verbs: string[]; + /** version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)". */ + version?: string; + } + /** APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** groupVersion is the group and version this APIResourceList is for. */ + groupVersion: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + /** resources contains the name of the resources and if they are namespaced. */ + resources: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResource[]; + } + /** APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$APIVersions { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + /** a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP. */ + serverAddressByClientCIDRs: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ServerAddressByClientCIDR[]; + /** versions are the api versions that are available. */ + versions: string[]; + } + /** Condition contains details for one aspect of the current state of this API Resource. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$Condition { + lastTransitionTime: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** message is a human readable message indicating details about the transition. This may be an empty string. */ + message: string; + /** observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance. */ + observedGeneration?: number; + /** reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty. */ + reason: string; + /** status of the condition, one of True, False, Unknown. */ + status: string; + /** type of condition in CamelCase or in foo.example.com/CamelCase. */ + type: string; + } + /** DeleteOptions may be provided when deleting an API object. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string[]; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: number; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: boolean; + preconditions?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Preconditions; + /** Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. */ + propagationPolicy?: string; + } + /** + * FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format. + * + * Each key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:', where is the name of a field in a struct, or key in a map 'v:', where is the exact json formatted value of a list item 'i:', where is position of a item in a list 'k:', where is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set. + * + * The exact format is defined in sigs.k8s.io/structured-merge-diff + */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$FieldsV1 { + } + /** GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$GroupVersionForDiscovery { + /** groupVersion specifies the API group and version in the form "group/version" */ + groupVersion: string; + /** version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion. */ + version: string; + } + /** A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelector { + /** matchExpressions is a list of label selector requirements. The requirements are ANDed. */ + matchExpressions?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelectorRequirement[]; + /** matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. */ + matchLabels?: { + [key: string]: string; + }; + } + /** A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$LabelSelectorRequirement { + /** key is the label key that the selector applies to. */ + key: string; + /** operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. */ + operator: string; + /** values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. */ + values?: string[]; + } + /** ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta { + /** continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message. */ + continue?: string; + /** remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact. */ + remainingItemCount?: number; + /** String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency */ + resourceVersion?: string; + /** Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. */ + selfLink?: string; + } + /** ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$ManagedFieldsEntry { + /** APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted. */ + apiVersion?: string; + /** FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1" */ + fieldsType?: string; + fieldsV1?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$FieldsV1; + /** Manager is an identifier of the workflow managing these fields. */ + manager?: string; + /** Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. */ + operation?: string; + /** Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource. */ + subresource?: string; + time?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + } + /** MicroTime is version of Time with microsecond level precision. */ + export type io$k8s$apimachinery$pkg$apis$meta$v1$MicroTime = string; + /** ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta { + /** Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations */ + annotations?: { + [key: string]: string; + }; + creationTimestamp?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. */ + deletionGracePeriodSeconds?: number; + deletionTimestamp?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list. */ + finalizers?: string[]; + /** + * GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. + * + * If this field is specified and the generated name exists, the server will return a 409. + * + * Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency + */ + generateName?: string; + /** A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. */ + generation?: number; + /** Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels */ + labels?: { + [key: string]: string; + }; + /** ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. */ + managedFields?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ManagedFieldsEntry[]; + /** Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names */ + name?: string; + /** + * Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. + * + * Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces + */ + namespace?: string; + /** List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. */ + ownerReferences?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$OwnerReference[]; + /** + * An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. + * + * Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency + */ + resourceVersion?: string; + /** Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. */ + selfLink?: string; + /** + * UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. + * + * Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids + */ + uid?: string; + } + /** OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$OwnerReference { + /** API version of the referent. */ + apiVersion: string; + /** If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. */ + blockOwnerDeletion?: boolean; + /** If true, this reference points to the managing controller. */ + controller?: boolean; + /** Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind: string; + /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names */ + name: string; + /** UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids */ + uid: string; + } + /** Patch is provided to give a concrete name and type to the Kubernetes PATCH request body. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$Patch { + } + /** Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$Preconditions { + /** Specifies the target ResourceVersion */ + resourceVersion?: string; + /** Specifies the target UID. */ + uid?: string; + } + /** ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$ServerAddressByClientCIDR { + /** The CIDR with which clients can match their IP to figure out the server address that they should use. */ + clientCIDR: string; + /** Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port. */ + serverAddress: string; + } + /** Status is a return value for calls that don't return other objects. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$Status { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Suggested HTTP return code for this status, 0 if not set. */ + code?: number; + details?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$StatusDetails; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + /** A human-readable description of the status of this operation. */ + message?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + /** A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. */ + reason?: string; + /** Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status */ + status?: string; + } + /** StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$StatusCause { + /** + * The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. + * + * Examples: + * "name" - the field "name" on the current resource + * "items[0].name" - the field "name" on the first array entry in "items" + */ + field?: string; + /** A human-readable description of the cause of the error. This field may be presented as-is to a reader. */ + message?: string; + /** A machine-readable description of the cause of the error. If this value is empty there is no information available. */ + reason?: string; + } + /** StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$StatusDetails { + /** The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. */ + causes?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$StatusCause[]; + /** The group attribute of the resource associated with the status StatusReason. */ + group?: string; + /** The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + /** The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described). */ + name?: string; + /** If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action. */ + retryAfterSeconds?: number; + /** UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids */ + uid?: string; + } + /** Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. */ + export type io$k8s$apimachinery$pkg$apis$meta$v1$Time = string; + /** Event represents a single event to a watched resource. */ + export interface io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent { + object: Schemas.io$k8s$apimachinery$pkg$runtime$RawExtension; + type: string; + } + /** + * RawExtension is used to hold extensions in external versions. + * + * To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. + * + * // Internal package: + * + * type MyAPIObject struct { + * runtime.TypeMeta `json:",inline"` + * MyPlugin runtime.Object `json:"myPlugin"` + * } + * + * type PluginA struct { + * AOption string `json:"aOption"` + * } + * + * // External package: + * + * type MyAPIObject struct { + * runtime.TypeMeta `json:",inline"` + * MyPlugin runtime.RawExtension `json:"myPlugin"` + * } + * + * type PluginA struct { + * AOption string `json:"aOption"` + * } + * + * // On the wire, the JSON will look something like this: + * + * { + * "kind":"MyAPIObject", + * "apiVersion":"v1", + * "myPlugin": { + * "kind":"PluginA", + * "aOption":"foo", + * }, + * } + * + * So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.) + */ + export interface io$k8s$apimachinery$pkg$runtime$RawExtension { + } + /** IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number. */ + export type io$k8s$apimachinery$pkg$util$intstr$IntOrString = string; + /** Info contains versioning information. how we'll want to distribute that information. */ + export interface io$k8s$apimachinery$pkg$version$Info { + buildDate: string; + compiler: string; + gitCommit: string; + gitTreeState: string; + gitVersion: string; + goVersion: string; + major: string; + minor: string; + platform: string; + } + /** APIService represents a server for a particular GroupVersion. Name must be "version.group". */ + export interface io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ObjectMeta; + spec?: Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceSpec; + status?: Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceStatus; + } + /** APIServiceCondition describes the state of an APIService at a particular point */ + export interface io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceCondition { + lastTransitionTime?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Time; + /** Human-readable message indicating details about last transition. */ + message?: string; + /** Unique, one-word, CamelCase reason for the condition's last transition. */ + reason?: string; + /** Status is the status of the condition. Can be True, False, Unknown. */ + status: string; + /** Type is the type of the condition. */ + type: string; + } + /** APIServiceList is a list of APIService objects. */ + export interface io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceList { + /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */ + apiVersion?: string; + /** Items is the list of APIService */ + items: Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService[]; + /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */ + kind?: string; + metadata?: Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$ListMeta; + } + /** APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification. */ + export interface io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceSpec { + /** CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used. */ + caBundle?: string; + /** Group is the API group name this server hosts */ + group?: string; + /** GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s */ + groupPriorityMinimum: number; + /** InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. */ + insecureSkipTLSVerify?: boolean; + service?: Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$ServiceReference; + /** Version is the API version this server hosts. For example, "v1" */ + version?: string; + /** VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. */ + versionPriority: number; + } + /** APIServiceStatus contains derived information about an API server */ + export interface io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceStatus { + /** Current service state of apiService. */ + conditions?: Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceCondition[]; + } + /** ServiceReference holds a reference to Service.legacy.k8s.io */ + export interface io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$ServiceReference { + /** Name is the name of the service */ + name?: string; + /** Namespace is the namespace of the service */ + namespace?: string; + /** If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive). */ + port?: number; + } +} +export namespace Parameters { + /** 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. */ + export type allowWatchBookmarks$HC2hJt$J = boolean; + /** Command is the remote command to execute. argv array. Not executed within a shell. */ + export type command$Py3eQybp = string; + /** The container for which to stream logs. Defaults to only container if there is one container in the pod. */ + export type container$1GeXxFDC = string; + /** The container in which to execute the command. Defaults to only container if there is only one container in the pod. */ + export type container$_Q$EJ3nR = string; + /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ + export type container$i5dOmRiM = string; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + export type continue$QfD61s0i = string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + export type fieldManager$7c6nTn1T = string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + export type fieldManager$Qy4HdaTW = string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + export type fieldSelector$xIcQKXFG = string; + /** Follow the log stream of the pod. Defaults to false. */ + export type follow$9OIXh_2R = boolean; + /** 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. */ + export type force$tOGGb0Yi = boolean; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + export type gracePeriodSeconds$$K5HaBOS = number; + /** insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet). */ + export type insecureSkipTLSVerifyBackend$gM00jVbe = boolean; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + export type labelSelector$5Zw57w4C = string; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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. + */ + export type limit$1NfNmdNH = number; + /** 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. */ + export type limitBytes$zwd1RXuc = number; + /** path to the log */ + export type logpath$Noq7euwC = string; + /** object name and auth scope, such as for teams and projects */ + export type namespace$vgWSWtn3 = string; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + export type orphanDependents$uRB25kX5 = boolean; + /** 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. */ + export type path$QCf0eosM = string; + /** Path is the URL path to use for the current proxy request to pod. */ + export type path$oPbzgLUj = string; + /** Path is the URL path to use for the current proxy request to node. */ + export type path$rFDtV0x9 = string; + /** path to the resource */ + export type path$z6Ciiujn = string; + /** List of ports to forward Required when using WebSockets */ + export type ports$91KROJmm = number; + /** If 'true', then the output is pretty printed. */ + export type pretty$nN7o5FEq = string; + /** Return previous terminated container logs. Defaults to false. */ + export type previous$1jxDPu3y = 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. */ + export type propagationPolicy$6jk3prlO = string; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + export type resourceVersion$5WAnf1kx = string; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + export type resourceVersionMatch$t8XhRHeC = string; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + export type sendInitialEvents$rLXlEK_k = boolean; + /** A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. */ + export type sinceSeconds$vE2NLdnP = number; + /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ + export type stderr$26jJhFUR = boolean; + /** Redirect the standard error stream of the pod for this call. */ + export type stderr$W_1TNlWc = boolean; + /** Redirect the standard input stream of the pod for this call. Defaults to false. */ + export type stdin$PSzNhyUC = boolean; + /** Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. */ + export type stdin$sEFnN3IS = boolean; + /** Redirect the standard output stream of the pod for this call. */ + export type stdout$$EZLRwV1 = boolean; + /** Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. */ + export type stdout$005YMKE6 = boolean; + /** If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime */ + export type tailLines$2fRTNzbP = number; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + export type timeoutSeconds$yvYezaOC = number; + /** If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. */ + export type timestamps$c17fW1w_ = 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. */ + export type tty$g7MlET_l = boolean; + /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ + export type tty$s0flW37O = boolean; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + export type watch$XNNPZGbK = boolean; +} +export namespace RequestBodies { + export namespace io$k8s$api$core$v1$Secret { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Secret; + } + } + export namespace io$k8s$api$core$v1$LimitRange { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$LimitRange; + } + } + export namespace io$k8s$api$storage$v1$VolumeAttachment { + export interface Content { + "*/*": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + } + } + export namespace io$k8s$api$flowcontrol$v1beta3$FlowSchema { + export interface Content { + "*/*": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + } + } + export namespace io$k8s$api$node$v1$RuntimeClass { + export interface Content { + "*/*": Schemas.io$k8s$api$node$v1$RuntimeClass; + } + } + export namespace io$k8s$api$apps$v1$Deployment { + export interface Content { + "*/*": Schemas.io$k8s$api$apps$v1$Deployment; + } + } + export namespace io$k8s$api$core$v1$ServiceAccount { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$ServiceAccount; + } + } + export namespace io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration { + export interface Content { + "*/*": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + } + } + export namespace io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding { + export interface Content { + "*/*": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + } + } + export namespace io$k8s$api$apps$v1$DaemonSet { + export interface Content { + "*/*": Schemas.io$k8s$api$apps$v1$DaemonSet; + } + } + export namespace io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService { + export interface Content { + "*/*": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + } + } + export namespace io$k8s$api$core$v1$Service { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Service; + } + } + export namespace io$k8s$api$rbac$v1$RoleBinding { + export interface Content { + "*/*": Schemas.io$k8s$api$rbac$v1$RoleBinding; + } + } + export namespace io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration { + export interface Content { + "*/*": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + } + } + export namespace io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration { + export interface Content { + "*/*": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + } + } + export namespace io$k8s$api$apps$v1$ReplicaSet { + export interface Content { + "*/*": Schemas.io$k8s$api$apps$v1$ReplicaSet; + } + } + export namespace io$k8s$api$resource$v1alpha2$ResourceClaimTemplate { + export interface Content { + "*/*": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + } + } + export namespace io$k8s$api$core$v1$Namespace { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Namespace; + } + } + export namespace io$k8s$api$storage$v1$CSIStorageCapacity { + export interface Content { + "*/*": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + } + } + export namespace io$k8s$api$batch$v1$Job { + export interface Content { + "*/*": Schemas.io$k8s$api$batch$v1$Job; + } + } + export namespace io$k8s$api$core$v1$Node { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Node; + } + } + export namespace io$k8s$api$certificates$v1alpha1$ClusterTrustBundle { + export interface Content { + "*/*": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + } + } + export namespace io$k8s$api$core$v1$ReplicationController { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$ReplicationController; + } + } + export namespace io$k8s$api$events$v1$Event { + export interface Content { + "*/*": Schemas.io$k8s$api$events$v1$Event; + } + } + export namespace io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions { + export interface Content { + "*/*": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions; + } + } + export namespace io$k8s$api$storage$v1$CSIDriver { + export interface Content { + "*/*": Schemas.io$k8s$api$storage$v1$CSIDriver; + } + } + export namespace io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler { + export interface Content { + "*/*": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + } + } + export namespace io$k8s$api$autoscaling$v1$Scale { + export interface Content { + "*/*": Schemas.io$k8s$api$autoscaling$v1$Scale; + } + } + export namespace io$k8s$api$rbac$v1$ClusterRole { + export interface Content { + "*/*": Schemas.io$k8s$api$rbac$v1$ClusterRole; + } + } + export namespace io$k8s$api$discovery$v1$EndpointSlice { + export interface Content { + "*/*": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + } + } + export namespace io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy { + export interface Content { + "*/*": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + } + } + export namespace io$k8s$api$coordination$v1$Lease { + export interface Content { + "*/*": Schemas.io$k8s$api$coordination$v1$Lease; + } + } + export namespace io$k8s$api$core$v1$ConfigMap { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$ConfigMap; + } + } + export namespace io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy { + export interface Content { + "*/*": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + } + } + export namespace io$k8s$api$core$v1$Binding { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Binding; + } + } + export namespace io$k8s$apimachinery$pkg$apis$meta$v1$Patch { + export interface Content { + "application/json-patch+json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Patch; + "application/merge-patch+json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Patch; + "application/strategic-merge-patch+json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Patch; + "application/apply-patch+yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Patch; + } + } + export namespace io$k8s$api$core$v1$Endpoints { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Endpoints; + } + } + export namespace io$k8s$api$core$v1$Event { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Event; + } + } + export namespace io$k8s$api$core$v1$PersistentVolumeClaim { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + } + } + export namespace io$k8s$api$core$v1$Pod { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$Pod; + } + } + export namespace io$k8s$api$core$v1$PodTemplate { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$PodTemplate; + } + } + export namespace io$k8s$api$core$v1$ResourceQuota { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$ResourceQuota; + } + } + export namespace io$k8s$api$core$v1$PersistentVolume { + export interface Content { + "*/*": Schemas.io$k8s$api$core$v1$PersistentVolume; + } + } + export namespace io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration { + export interface Content { + "*/*": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + } + } + export namespace io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding { + export interface Content { + "*/*": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + } + } + export namespace io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition { + export interface Content { + "*/*": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + } + } + export namespace io$k8s$api$apps$v1$ControllerRevision { + export interface Content { + "*/*": Schemas.io$k8s$api$apps$v1$ControllerRevision; + } + } + export namespace io$k8s$api$apps$v1$StatefulSet { + export interface Content { + "*/*": Schemas.io$k8s$api$apps$v1$StatefulSet; + } + } + export namespace io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler { + export interface Content { + "*/*": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + } + } + export namespace io$k8s$api$batch$v1$CronJob { + export interface Content { + "*/*": Schemas.io$k8s$api$batch$v1$CronJob; + } + } + export namespace io$k8s$api$certificates$v1$CertificateSigningRequest { + export interface Content { + "*/*": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + } + } + export namespace io$k8s$api$flowcontrol$v1beta2$FlowSchema { + export interface Content { + "*/*": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + } + } + export namespace io$k8s$api$apiserverinternal$v1alpha1$StorageVersion { + export interface Content { + "*/*": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + } + } + export namespace io$k8s$api$networking$v1$IngressClass { + export interface Content { + "*/*": Schemas.io$k8s$api$networking$v1$IngressClass; + } + } + export namespace io$k8s$api$networking$v1$Ingress { + export interface Content { + "*/*": Schemas.io$k8s$api$networking$v1$Ingress; + } + } + export namespace io$k8s$api$networking$v1$NetworkPolicy { + export interface Content { + "*/*": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + } + } + export namespace io$k8s$api$networking$v1alpha1$ClusterCIDR { + export interface Content { + "*/*": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + } + } + export namespace io$k8s$api$networking$v1alpha1$IPAddress { + export interface Content { + "*/*": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + } + } + export namespace io$k8s$api$policy$v1$PodDisruptionBudget { + export interface Content { + "*/*": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + } + } + export namespace io$k8s$api$rbac$v1$ClusterRoleBinding { + export interface Content { + "*/*": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + } + } + export namespace io$k8s$api$rbac$v1$Role { + export interface Content { + "*/*": Schemas.io$k8s$api$rbac$v1$Role; + } + } + export namespace io$k8s$api$resource$v1alpha2$PodSchedulingContext { + export interface Content { + "*/*": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + } + } + export namespace io$k8s$api$resource$v1alpha2$ResourceClaim { + export interface Content { + "*/*": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + } + } + export namespace io$k8s$api$resource$v1alpha2$ResourceClass { + export interface Content { + "*/*": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + } + } + export namespace io$k8s$api$scheduling$v1$PriorityClass { + export interface Content { + "*/*": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + } + } + export namespace io$k8s$api$storage$v1$CSINode { + export interface Content { + "*/*": Schemas.io$k8s$api$storage$v1$CSINode; + } + } + export namespace io$k8s$api$storage$v1$StorageClass { + export interface Content { + "*/*": Schemas.io$k8s$api$storage$v1$StorageClass; + } + } +} +export interface Response$getServiceAccountIssuerOpenIDConfiguration$Status$200 { + "application/json": string; +} +export interface Response$getCoreAPIVersions$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIVersions; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIVersions; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIVersions; +} +export interface Response$getCoreV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listCoreV1ComponentStatus { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1ComponentStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ComponentStatusList; + "application/yaml": Schemas.io$k8s$api$core$v1$ComponentStatusList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ComponentStatusList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ComponentStatusList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ComponentStatusList; +} +export interface Parameter$readCoreV1ComponentStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ComponentStatus */ + name: string; +} +export interface Response$readCoreV1ComponentStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ComponentStatus; + "application/yaml": Schemas.io$k8s$api$core$v1$ComponentStatus; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ComponentStatus; +} +export interface Parameter$listCoreV1ConfigMapForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1ConfigMapForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMapList; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMapList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMapList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ConfigMapList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ConfigMapList; +} +export interface Parameter$listCoreV1EndpointsForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1EndpointsForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$EndpointsList; + "application/yaml": Schemas.io$k8s$api$core$v1$EndpointsList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$EndpointsList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$EndpointsList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$EndpointsList; +} +export interface Parameter$listCoreV1EventForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1EventForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$EventList; + "application/yaml": Schemas.io$k8s$api$core$v1$EventList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$EventList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$EventList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$EventList; +} +export interface Parameter$listCoreV1LimitRangeForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1LimitRangeForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRangeList; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRangeList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRangeList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$LimitRangeList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$LimitRangeList; +} +export interface Parameter$listCoreV1Namespace { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1Namespace$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$NamespaceList; + "application/yaml": Schemas.io$k8s$api$core$v1$NamespaceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$NamespaceList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$NamespaceList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$NamespaceList; +} +export interface Parameter$createCoreV1Namespace { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1Namespace = RequestBodies.io$k8s$api$core$v1$Namespace.Content; +export interface Response$createCoreV1Namespace$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Response$createCoreV1Namespace$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Response$createCoreV1Namespace$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$createCoreV1NamespacedBinding { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export type RequestBody$createCoreV1NamespacedBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; +export interface Response$createCoreV1NamespacedBinding$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Binding; + "application/yaml": Schemas.io$k8s$api$core$v1$Binding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; +} +export interface Response$createCoreV1NamespacedBinding$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Binding; + "application/yaml": Schemas.io$k8s$api$core$v1$Binding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; +} +export interface Response$createCoreV1NamespacedBinding$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Binding; + "application/yaml": Schemas.io$k8s$api$core$v1$Binding; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMapList; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMapList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMapList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ConfigMapList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedConfigMap = RequestBodies.io$k8s$api$core$v1$ConfigMap.Content; +export interface Response$createCoreV1NamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; +} +export interface Response$createCoreV1NamespacedConfigMap$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; +} +export interface Response$createCoreV1NamespacedConfigMap$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedConfigMap { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ConfigMap */ + name: string; +} +export interface Response$readCoreV1NamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; +} +export interface Parameter$replaceCoreV1NamespacedConfigMap { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ConfigMap */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedConfigMap = RequestBodies.io$k8s$api$core$v1$ConfigMap.Content; +export interface Response$replaceCoreV1NamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; +} +export interface Response$replaceCoreV1NamespacedConfigMap$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; +} +export interface Parameter$deleteCoreV1NamespacedConfigMap { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ConfigMap */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1NamespacedConfigMap$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1NamespacedConfigMap { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ConfigMap */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ConfigMap; +} +export interface Response$patchCoreV1NamespacedConfigMap$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; + "application/yaml": Schemas.io$k8s$api$core$v1$ConfigMap; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$EndpointsList; + "application/yaml": Schemas.io$k8s$api$core$v1$EndpointsList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$EndpointsList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$EndpointsList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedEndpoints = RequestBodies.io$k8s$api$core$v1$Endpoints.Content; +export interface Response$createCoreV1NamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; +} +export interface Response$createCoreV1NamespacedEndpoints$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; +} +export interface Response$createCoreV1NamespacedEndpoints$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedEndpoints { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Endpoints */ + name: string; +} +export interface Response$readCoreV1NamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; +} +export interface Parameter$replaceCoreV1NamespacedEndpoints { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Endpoints */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedEndpoints = RequestBodies.io$k8s$api$core$v1$Endpoints.Content; +export interface Response$replaceCoreV1NamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; +} +export interface Response$replaceCoreV1NamespacedEndpoints$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; +} +export interface Parameter$deleteCoreV1NamespacedEndpoints { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Endpoints */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1NamespacedEndpoints$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1NamespacedEndpoints { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Endpoints */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Endpoints; +} +export interface Response$patchCoreV1NamespacedEndpoints$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Endpoints; + "application/yaml": Schemas.io$k8s$api$core$v1$Endpoints; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$EventList; + "application/yaml": Schemas.io$k8s$api$core$v1$EventList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$EventList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$EventList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedEvent = RequestBodies.io$k8s$api$core$v1$Event.Content; +export interface Response$createCoreV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; +} +export interface Response$createCoreV1NamespacedEvent$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; +} +export interface Response$createCoreV1NamespacedEvent$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Event */ + name: string; +} +export interface Response$readCoreV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; +} +export interface Parameter$replaceCoreV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Event */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedEvent = RequestBodies.io$k8s$api$core$v1$Event.Content; +export interface Response$replaceCoreV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; +} +export interface Response$replaceCoreV1NamespacedEvent$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; +} +export interface Parameter$deleteCoreV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Event */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1NamespacedEvent$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Event */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Event; +} +export interface Response$patchCoreV1NamespacedEvent$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Event; + "application/yaml": Schemas.io$k8s$api$core$v1$Event; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRangeList; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRangeList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRangeList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$LimitRangeList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedLimitRange = RequestBodies.io$k8s$api$core$v1$LimitRange.Content; +export interface Response$createCoreV1NamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; +} +export interface Response$createCoreV1NamespacedLimitRange$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; +} +export interface Response$createCoreV1NamespacedLimitRange$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedLimitRange { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the LimitRange */ + name: string; +} +export interface Response$readCoreV1NamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; +} +export interface Parameter$replaceCoreV1NamespacedLimitRange { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the LimitRange */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedLimitRange = RequestBodies.io$k8s$api$core$v1$LimitRange.Content; +export interface Response$replaceCoreV1NamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; +} +export interface Response$replaceCoreV1NamespacedLimitRange$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; +} +export interface Parameter$deleteCoreV1NamespacedLimitRange { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the LimitRange */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1NamespacedLimitRange$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1NamespacedLimitRange { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the LimitRange */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$LimitRange; +} +export interface Response$patchCoreV1NamespacedLimitRange$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$LimitRange; + "application/yaml": Schemas.io$k8s$api$core$v1$LimitRange; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; +export interface Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Response$createCoreV1NamespacedPersistentVolumeClaim$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedPersistentVolumeClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PersistentVolumeClaim */ + name: string; +} +export interface Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PersistentVolumeClaim */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; +export interface Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Parameter$deleteCoreV1NamespacedPersistentVolumeClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the PersistentVolumeClaim */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PersistentVolumeClaim */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Parameter$readCoreV1NamespacedPersistentVolumeClaimStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PersistentVolumeClaim */ + name: string; +} +export interface Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaimStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PersistentVolumeClaim */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; +export interface Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaimStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PersistentVolumeClaim */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; +} +export interface Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodList; + "application/yaml": Schemas.io$k8s$api$core$v1$PodList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$PodList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedPod = RequestBodies.io$k8s$api$core$v1$Pod.Content; +export interface Response$createCoreV1NamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$createCoreV1NamespacedPod$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$createCoreV1NamespacedPod$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedPod { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Pod */ + name: string; +} +export interface Response$readCoreV1NamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$replaceCoreV1NamespacedPod { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Pod */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedPod = RequestBodies.io$k8s$api$core$v1$Pod.Content; +export interface Response$replaceCoreV1NamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$replaceCoreV1NamespacedPod$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$deleteCoreV1NamespacedPod { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Pod */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$deleteCoreV1NamespacedPod$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$patchCoreV1NamespacedPod { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Pod */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$patchCoreV1NamespacedPod$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +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?: Parameters.container$_Q$EJ3nR; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ + stderr?: Parameters.stderr$26jJhFUR; + /** Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. */ + stdin?: Parameters.stdin$sEFnN3IS; + /** Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. */ + stdout?: Parameters.stdout$005YMKE6; + /** 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?: Parameters.tty$g7MlET_l; + /** name of the PodAttachOptions */ + name: string; +} +export interface Response$connectCoreV1GetNamespacedPodAttach$Status$200 { + "*/*": string; +} +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?: Parameters.container$_Q$EJ3nR; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ + stderr?: Parameters.stderr$26jJhFUR; + /** Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. */ + stdin?: Parameters.stdin$sEFnN3IS; + /** Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. */ + stdout?: Parameters.stdout$005YMKE6; + /** 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?: Parameters.tty$g7MlET_l; + /** name of the PodAttachOptions */ + name: string; +} +export interface Response$connectCoreV1PostNamespacedPodAttach$Status$200 { + "*/*": string; +} +export interface Parameter$createCoreV1NamespacedPodBinding { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Binding */ + name: string; +} +export type RequestBody$createCoreV1NamespacedPodBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; +export interface Response$createCoreV1NamespacedPodBinding$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Binding; + "application/yaml": Schemas.io$k8s$api$core$v1$Binding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; +} +export interface Response$createCoreV1NamespacedPodBinding$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Binding; + "application/yaml": Schemas.io$k8s$api$core$v1$Binding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; +} +export interface Response$createCoreV1NamespacedPodBinding$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Binding; + "application/yaml": Schemas.io$k8s$api$core$v1$Binding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; +} +export interface Parameter$readCoreV1NamespacedPodEphemeralcontainers { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Pod */ + name: string; +} +export interface Response$readCoreV1NamespacedPodEphemeralcontainers$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$replaceCoreV1NamespacedPodEphemeralcontainers { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Pod */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedPodEphemeralcontainers = RequestBodies.io$k8s$api$core$v1$Pod.Content; +export interface Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$patchCoreV1NamespacedPodEphemeralcontainers { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Pod */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedPodEphemeralcontainers = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$createCoreV1NamespacedPodEviction { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Eviction */ + name: string; +} +export interface RequestBody$createCoreV1NamespacedPodEviction { + "*/*": Schemas.io$k8s$api$policy$v1$Eviction; +} +export interface Response$createCoreV1NamespacedPodEviction$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$Eviction; + "application/yaml": Schemas.io$k8s$api$policy$v1$Eviction; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$Eviction; +} +export interface Response$createCoreV1NamespacedPodEviction$Status$201 { + "application/json": Schemas.io$k8s$api$policy$v1$Eviction; + "application/yaml": Schemas.io$k8s$api$policy$v1$Eviction; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$Eviction; +} +export interface Response$createCoreV1NamespacedPodEviction$Status$202 { + "application/json": Schemas.io$k8s$api$policy$v1$Eviction; + "application/yaml": Schemas.io$k8s$api$policy$v1$Eviction; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$Eviction; +} +export interface Parameter$connectCoreV1GetNamespacedPodExec { + /** Command is the remote command to execute. argv array. Not executed within a shell. */ + command?: Parameters.command$Py3eQybp; + /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ + container?: Parameters.container$i5dOmRiM; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Redirect the standard error stream of the pod for this call. */ + stderr?: Parameters.stderr$W_1TNlWc; + /** Redirect the standard input stream of the pod for this call. Defaults to false. */ + stdin?: Parameters.stdin$PSzNhyUC; + /** Redirect the standard output stream of the pod for this call. */ + stdout?: Parameters.stdout$$EZLRwV1; + /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ + tty?: Parameters.tty$s0flW37O; + /** name of the PodExecOptions */ + name: string; +} +export interface Response$connectCoreV1GetNamespacedPodExec$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNamespacedPodExec { + /** Command is the remote command to execute. argv array. Not executed within a shell. */ + command?: Parameters.command$Py3eQybp; + /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ + container?: Parameters.container$i5dOmRiM; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Redirect the standard error stream of the pod for this call. */ + stderr?: Parameters.stderr$W_1TNlWc; + /** Redirect the standard input stream of the pod for this call. Defaults to false. */ + stdin?: Parameters.stdin$PSzNhyUC; + /** Redirect the standard output stream of the pod for this call. */ + stdout?: Parameters.stdout$$EZLRwV1; + /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ + tty?: Parameters.tty$s0flW37O; + /** name of the PodExecOptions */ + name: string; +} +export interface Response$connectCoreV1PostNamespacedPodExec$Status$200 { + "*/*": string; +} +export interface Parameter$readCoreV1NamespacedPodLog { + /** The container for which to stream logs. Defaults to only container if there is one container in the pod. */ + container?: Parameters.container$1GeXxFDC; + /** Follow the log stream of the pod. Defaults to false. */ + follow?: Parameters.follow$9OIXh_2R; + /** insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet). */ + insecureSkipTLSVerifyBackend?: Parameters.insecureSkipTLSVerifyBackend$gM00jVbe; + /** 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?: Parameters.limitBytes$zwd1RXuc; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** Return previous terminated container logs. Defaults to false. */ + previous?: Parameters.previous$1jxDPu3y; + /** A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. */ + sinceSeconds?: Parameters.sinceSeconds$vE2NLdnP; + /** If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime */ + tailLines?: Parameters.tailLines$2fRTNzbP; + /** If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. */ + timestamps?: Parameters.timestamps$c17fW1w_; + /** name of the Pod */ + name: string; +} +export interface Response$readCoreV1NamespacedPodLog$Status$200 { + "text/plain": string; + "application/json": string; + "application/yaml": string; + "application/vnd.kubernetes.protobuf": string; +} +export interface Parameter$connectCoreV1GetNamespacedPodPortforward { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** List of ports to forward Required when using WebSockets */ + ports?: Parameters.ports$91KROJmm; + /** name of the PodPortForwardOptions */ + name: string; +} +export interface Response$connectCoreV1GetNamespacedPodPortforward$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNamespacedPodPortforward { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** List of ports to forward Required when using WebSockets */ + ports?: Parameters.ports$91KROJmm; + /** name of the PodPortForwardOptions */ + name: string; +} +export interface Response$connectCoreV1PostNamespacedPodPortforward$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1GetNamespacedPodProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1GetNamespacedPodProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PutNamespacedPodProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PutNamespacedPodProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNamespacedPodProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PostNamespacedPodProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1DeleteNamespacedPodProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1DeleteNamespacedPodProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1OptionsNamespacedPodProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1OptionsNamespacedPodProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1HeadNamespacedPodProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1HeadNamespacedPodProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PatchNamespacedPodProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PatchNamespacedPodProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1GetNamespacedPodProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1GetNamespacedPodProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PutNamespacedPodProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PutNamespacedPodProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNamespacedPodProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PostNamespacedPodProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1DeleteNamespacedPodProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1DeleteNamespacedPodProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1OptionsNamespacedPodProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1OptionsNamespacedPodProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1HeadNamespacedPodProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1HeadNamespacedPodProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PatchNamespacedPodProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** Path is the URL path to use for the current proxy request to pod. */ + path?: Parameters.path$oPbzgLUj; + /** name of the PodProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PatchNamespacedPodProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$readCoreV1NamespacedPodStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Pod */ + name: string; +} +export interface Response$readCoreV1NamespacedPodStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$replaceCoreV1NamespacedPodStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Pod */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedPodStatus = RequestBodies.io$k8s$api$core$v1$Pod.Content; +export interface Response$replaceCoreV1NamespacedPodStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$replaceCoreV1NamespacedPodStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Parameter$patchCoreV1NamespacedPodStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Pod */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedPodStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedPodStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; +} +export interface Response$patchCoreV1NamespacedPodStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Pod; + "application/yaml": Schemas.io$k8s$api$core$v1$Pod; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplateList; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplateList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplateList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$PodTemplateList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$api$core$v1$PodTemplate.Content; +export interface Response$createCoreV1NamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Response$createCoreV1NamespacedPodTemplate$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Response$createCoreV1NamespacedPodTemplate$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedPodTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PodTemplate */ + name: string; +} +export interface Response$readCoreV1NamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Parameter$replaceCoreV1NamespacedPodTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PodTemplate */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$api$core$v1$PodTemplate.Content; +export interface Response$replaceCoreV1NamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Response$replaceCoreV1NamespacedPodTemplate$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Parameter$deleteCoreV1NamespacedPodTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the PodTemplate */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Response$deleteCoreV1NamespacedPodTemplate$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Parameter$patchCoreV1NamespacedPodTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PodTemplate */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplate; +} +export interface Response$patchCoreV1NamespacedPodTemplate$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplate; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedReplicationController = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; +export interface Response$createCoreV1NamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Response$createCoreV1NamespacedReplicationController$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Response$createCoreV1NamespacedReplicationController$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedReplicationController { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ReplicationController */ + name: string; +} +export interface Response$readCoreV1NamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Parameter$replaceCoreV1NamespacedReplicationController { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ReplicationController */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedReplicationController = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; +export interface Response$replaceCoreV1NamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Response$replaceCoreV1NamespacedReplicationController$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Parameter$deleteCoreV1NamespacedReplicationController { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ReplicationController */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1NamespacedReplicationController$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1NamespacedReplicationController { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ReplicationController */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Response$patchCoreV1NamespacedReplicationController$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Parameter$readCoreV1NamespacedReplicationControllerScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Scale */ + name: string; +} +export interface Response$readCoreV1NamespacedReplicationControllerScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$replaceCoreV1NamespacedReplicationControllerScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Scale */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; +export interface Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$replaceCoreV1NamespacedReplicationControllerScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$patchCoreV1NamespacedReplicationControllerScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Scale */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$readCoreV1NamespacedReplicationControllerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ReplicationController */ + name: string; +} +export interface Response$readCoreV1NamespacedReplicationControllerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Parameter$replaceCoreV1NamespacedReplicationControllerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ReplicationController */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; +export interface Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Parameter$patchCoreV1NamespacedReplicationControllerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ReplicationController */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedReplicationControllerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; +} +export interface Response$patchCoreV1NamespacedReplicationControllerStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationController; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; +export interface Response$createCoreV1NamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Response$createCoreV1NamespacedResourceQuota$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Response$createCoreV1NamespacedResourceQuota$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedResourceQuota { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ResourceQuota */ + name: string; +} +export interface Response$readCoreV1NamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Parameter$replaceCoreV1NamespacedResourceQuota { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ResourceQuota */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; +export interface Response$replaceCoreV1NamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Response$replaceCoreV1NamespacedResourceQuota$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Parameter$deleteCoreV1NamespacedResourceQuota { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ResourceQuota */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Response$deleteCoreV1NamespacedResourceQuota$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Parameter$patchCoreV1NamespacedResourceQuota { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ResourceQuota */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Response$patchCoreV1NamespacedResourceQuota$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Parameter$readCoreV1NamespacedResourceQuotaStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ResourceQuota */ + name: string; +} +export interface Response$readCoreV1NamespacedResourceQuotaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Parameter$replaceCoreV1NamespacedResourceQuotaStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ResourceQuota */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; +export interface Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Parameter$patchCoreV1NamespacedResourceQuotaStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ResourceQuota */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; +} +export interface Response$patchCoreV1NamespacedResourceQuotaStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuota; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$SecretList; + "application/yaml": Schemas.io$k8s$api$core$v1$SecretList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$SecretList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$SecretList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedSecret = RequestBodies.io$k8s$api$core$v1$Secret.Content; +export interface Response$createCoreV1NamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; +} +export interface Response$createCoreV1NamespacedSecret$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; +} +export interface Response$createCoreV1NamespacedSecret$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedSecret { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Secret */ + name: string; +} +export interface Response$readCoreV1NamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; +} +export interface Parameter$replaceCoreV1NamespacedSecret { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Secret */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedSecret = RequestBodies.io$k8s$api$core$v1$Secret.Content; +export interface Response$replaceCoreV1NamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; +} +export interface Response$replaceCoreV1NamespacedSecret$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; +} +export interface Parameter$deleteCoreV1NamespacedSecret { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Secret */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1NamespacedSecret$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1NamespacedSecret { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Secret */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Secret; +} +export interface Response$patchCoreV1NamespacedSecret$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Secret; + "application/yaml": Schemas.io$k8s$api$core$v1$Secret; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$api$core$v1$ServiceAccount.Content; +export interface Response$createCoreV1NamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Response$createCoreV1NamespacedServiceAccount$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Response$createCoreV1NamespacedServiceAccount$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedServiceAccount { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ServiceAccount */ + name: string; +} +export interface Response$readCoreV1NamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Parameter$replaceCoreV1NamespacedServiceAccount { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ServiceAccount */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$api$core$v1$ServiceAccount.Content; +export interface Response$replaceCoreV1NamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Response$replaceCoreV1NamespacedServiceAccount$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Parameter$deleteCoreV1NamespacedServiceAccount { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ServiceAccount */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Response$deleteCoreV1NamespacedServiceAccount$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Parameter$patchCoreV1NamespacedServiceAccount { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ServiceAccount */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Response$patchCoreV1NamespacedServiceAccount$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccount; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccount; +} +export interface Parameter$createCoreV1NamespacedServiceAccountToken { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the TokenRequest */ + name: string; +} +export interface RequestBody$createCoreV1NamespacedServiceAccountToken { + "*/*": Schemas.io$k8s$api$authentication$v1$TokenRequest; +} +export interface Response$createCoreV1NamespacedServiceAccountToken$Status$200 { + "application/json": Schemas.io$k8s$api$authentication$v1$TokenRequest; + "application/yaml": Schemas.io$k8s$api$authentication$v1$TokenRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$TokenRequest; +} +export interface Response$createCoreV1NamespacedServiceAccountToken$Status$201 { + "application/json": Schemas.io$k8s$api$authentication$v1$TokenRequest; + "application/yaml": Schemas.io$k8s$api$authentication$v1$TokenRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$TokenRequest; +} +export interface Response$createCoreV1NamespacedServiceAccountToken$Status$202 { + "application/json": Schemas.io$k8s$api$authentication$v1$TokenRequest; + "application/yaml": Schemas.io$k8s$api$authentication$v1$TokenRequest; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1NamespacedService$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceList; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ServiceList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1NamespacedService = RequestBodies.io$k8s$api$core$v1$Service.Content; +export interface Response$createCoreV1NamespacedService$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Response$createCoreV1NamespacedService$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Response$createCoreV1NamespacedService$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$deleteCoreV1CollectionNamespacedService { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNamespacedService$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1NamespacedService { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Service */ + name: string; +} +export interface Response$readCoreV1NamespacedService$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$replaceCoreV1NamespacedService { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Service */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedService = RequestBodies.io$k8s$api$core$v1$Service.Content; +export interface Response$replaceCoreV1NamespacedService$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Response$replaceCoreV1NamespacedService$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$deleteCoreV1NamespacedService { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Service */ + name: string; +} +export type RequestBody$deleteCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1NamespacedService$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Response$deleteCoreV1NamespacedService$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$patchCoreV1NamespacedService { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Service */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedService$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Response$patchCoreV1NamespacedService$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$connectCoreV1GetNamespacedServiceProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1GetNamespacedServiceProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PutNamespacedServiceProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PutNamespacedServiceProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNamespacedServiceProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PostNamespacedServiceProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1DeleteNamespacedServiceProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1DeleteNamespacedServiceProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1OptionsNamespacedServiceProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1OptionsNamespacedServiceProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1HeadNamespacedServiceProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1HeadNamespacedServiceProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PatchNamespacedServiceProxy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PatchNamespacedServiceProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1GetNamespacedServiceProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1GetNamespacedServiceProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PutNamespacedServiceProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PutNamespacedServiceProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNamespacedServiceProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PostNamespacedServiceProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1DeleteNamespacedServiceProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1DeleteNamespacedServiceProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1OptionsNamespacedServiceProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1OptionsNamespacedServiceProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1HeadNamespacedServiceProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1HeadNamespacedServiceProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PatchNamespacedServiceProxyWithPath { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** 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?: Parameters.path$QCf0eosM; + /** name of the ServiceProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PatchNamespacedServiceProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$readCoreV1NamespacedServiceStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Service */ + name: string; +} +export interface Response$readCoreV1NamespacedServiceStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$replaceCoreV1NamespacedServiceStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Service */ + name: string; +} +export type RequestBody$replaceCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$api$core$v1$Service.Content; +export interface Response$replaceCoreV1NamespacedServiceStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Response$replaceCoreV1NamespacedServiceStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$patchCoreV1NamespacedServiceStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Service */ + name: string; +} +export type RequestBody$patchCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoreV1NamespacedServiceStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Response$patchCoreV1NamespacedServiceStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Service; + "application/yaml": Schemas.io$k8s$api$core$v1$Service; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; +} +export interface Parameter$readCoreV1Namespace { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Namespace */ + name: string; +} +export interface Response$readCoreV1Namespace$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$replaceCoreV1Namespace { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Response$replaceCoreV1Namespace$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$deleteCoreV1Namespace { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1Namespace$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1Namespace { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Response$patchCoreV1Namespace$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$replaceCoreV1NamespaceFinalize { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Namespace */ + name: string; +} +export type RequestBody$replaceCoreV1NamespaceFinalize = RequestBodies.io$k8s$api$core$v1$Namespace.Content; +export interface Response$replaceCoreV1NamespaceFinalize$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Response$replaceCoreV1NamespaceFinalize$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$readCoreV1NamespaceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Namespace */ + name: string; +} +export interface Response$readCoreV1NamespaceStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$replaceCoreV1NamespaceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Response$replaceCoreV1NamespaceStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$patchCoreV1NamespaceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Response$patchCoreV1NamespaceStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Namespace; + "application/yaml": Schemas.io$k8s$api$core$v1$Namespace; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; +} +export interface Parameter$listCoreV1Node { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1Node$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$NodeList; + "application/yaml": Schemas.io$k8s$api$core$v1$NodeList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$NodeList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$NodeList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$NodeList; +} +export interface Parameter$createCoreV1Node { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1Node = RequestBodies.io$k8s$api$core$v1$Node.Content; +export interface Response$createCoreV1Node$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Response$createCoreV1Node$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Response$createCoreV1Node$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Parameter$deleteCoreV1CollectionNode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionNode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionNode$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1Node { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Node */ + name: string; +} +export interface Response$readCoreV1Node$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Parameter$replaceCoreV1Node { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Response$replaceCoreV1Node$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Parameter$deleteCoreV1Node { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoreV1Node$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoreV1Node { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Response$patchCoreV1Node$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Parameter$connectCoreV1GetNodeProxy { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1GetNodeProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PutNodeProxy { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PutNodeProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNodeProxy { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PostNodeProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1DeleteNodeProxy { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1DeleteNodeProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1OptionsNodeProxy { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1OptionsNodeProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1HeadNodeProxy { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1HeadNodeProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PatchNodeProxy { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PatchNodeProxy$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1GetNodeProxyWithPath { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1GetNodeProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PutNodeProxyWithPath { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PutNodeProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PostNodeProxyWithPath { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PostNodeProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1DeleteNodeProxyWithPath { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1DeleteNodeProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1OptionsNodeProxyWithPath { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1OptionsNodeProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1HeadNodeProxyWithPath { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1HeadNodeProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$connectCoreV1PatchNodeProxyWithPath { + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; + /** name of the NodeProxyOptions */ + name: string; +} +export interface Response$connectCoreV1PatchNodeProxyWithPath$Status$200 { + "*/*": string; +} +export interface Parameter$readCoreV1NodeStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Node */ + name: string; +} +export interface Response$readCoreV1NodeStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Parameter$replaceCoreV1NodeStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Response$replaceCoreV1NodeStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Parameter$patchCoreV1NodeStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Response$patchCoreV1NodeStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$Node; + "application/yaml": Schemas.io$k8s$api$core$v1$Node; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; +} +export interface Parameter$listCoreV1PersistentVolumeClaimForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1PersistentVolumeClaimForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PersistentVolumeClaimList; +} +export interface Parameter$listCoreV1PersistentVolume { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1PersistentVolume$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeList; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolumeList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$PersistentVolumeList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PersistentVolumeList; +} +export interface Parameter$createCoreV1PersistentVolume { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoreV1PersistentVolume = RequestBodies.io$k8s$api$core$v1$PersistentVolume.Content; +export interface Response$createCoreV1PersistentVolume$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Response$createCoreV1PersistentVolume$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Response$createCoreV1PersistentVolume$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$deleteCoreV1CollectionPersistentVolume { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoreV1CollectionPersistentVolume = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoreV1CollectionPersistentVolume$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoreV1PersistentVolume { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PersistentVolume */ + name: string; +} +export interface Response$readCoreV1PersistentVolume$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$replaceCoreV1PersistentVolume { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Response$replaceCoreV1PersistentVolume$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$deleteCoreV1PersistentVolume { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Response$deleteCoreV1PersistentVolume$Status$202 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$patchCoreV1PersistentVolume { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Response$patchCoreV1PersistentVolume$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$readCoreV1PersistentVolumeStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PersistentVolume */ + name: string; +} +export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$replaceCoreV1PersistentVolumeStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Response$replaceCoreV1PersistentVolumeStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$patchCoreV1PersistentVolumeStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Response$patchCoreV1PersistentVolumeStatus$Status$201 { + "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/yaml": Schemas.io$k8s$api$core$v1$PersistentVolume; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; +} +export interface Parameter$listCoreV1PodForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1PodForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodList; + "application/yaml": Schemas.io$k8s$api$core$v1$PodList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$PodList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PodList; +} +export interface Parameter$listCoreV1PodTemplateForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1PodTemplateForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$PodTemplateList; + "application/yaml": Schemas.io$k8s$api$core$v1$PodTemplateList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PodTemplateList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$PodTemplateList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$PodTemplateList; +} +export interface Parameter$listCoreV1ReplicationControllerForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1ReplicationControllerForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "application/yaml": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ReplicationControllerList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ReplicationControllerList; +} +export interface Parameter$listCoreV1ResourceQuotaForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1ResourceQuotaForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "application/yaml": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ResourceQuotaList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ResourceQuotaList; +} +export interface Parameter$listCoreV1SecretForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1SecretForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$SecretList; + "application/yaml": Schemas.io$k8s$api$core$v1$SecretList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$SecretList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$SecretList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$SecretList; +} +export interface Parameter$listCoreV1ServiceAccountForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1ServiceAccountForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ServiceAccountList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ServiceAccountList; +} +export interface Parameter$listCoreV1ServiceForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoreV1ServiceForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$core$v1$ServiceList; + "application/yaml": Schemas.io$k8s$api$core$v1$ServiceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ServiceList; + "application/json;stream=watch": Schemas.io$k8s$api$core$v1$ServiceList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ServiceList; +} +export interface Parameter$watchCoreV1ConfigMapListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1ConfigMapListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1EndpointsListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1EndpointsListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1EventListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1EventListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1LimitRangeListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1LimitRangeListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespaceList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespaceList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedConfigMapList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedConfigMapList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedConfigMap { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ConfigMap */ + name: string; +} +export interface Response$watchCoreV1NamespacedConfigMap$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedEndpointsList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedEndpointsList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedEndpoints { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Endpoints */ + name: string; +} +export interface Response$watchCoreV1NamespacedEndpoints$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedEventList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedEventList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedEvent { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Event */ + name: string; +} +export interface Response$watchCoreV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedLimitRangeList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedLimitRangeList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedLimitRange { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the LimitRange */ + name: string; +} +export interface Response$watchCoreV1NamespacedLimitRange$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaimList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedPersistentVolumeClaimList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PersistentVolumeClaim */ + name: string; +} +export interface Response$watchCoreV1NamespacedPersistentVolumeClaim$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedPodList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedPodList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedPod { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Pod */ + name: string; +} +export interface Response$watchCoreV1NamespacedPod$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedPodTemplateList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedPodTemplateList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedPodTemplate { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PodTemplate */ + name: string; +} +export interface Response$watchCoreV1NamespacedPodTemplate$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedReplicationControllerList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedReplicationControllerList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedReplicationController { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ReplicationController */ + name: string; +} +export interface Response$watchCoreV1NamespacedReplicationController$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedResourceQuotaList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedResourceQuotaList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedResourceQuota { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ResourceQuota */ + name: string; +} +export interface Response$watchCoreV1NamespacedResourceQuota$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedSecretList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedSecretList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedSecret { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Secret */ + name: string; +} +export interface Response$watchCoreV1NamespacedSecret$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedServiceAccountList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedServiceAccountList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedServiceAccount { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ServiceAccount */ + name: string; +} +export interface Response$watchCoreV1NamespacedServiceAccount$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedServiceList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NamespacedServiceList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NamespacedService { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Service */ + name: string; +} +export interface Response$watchCoreV1NamespacedService$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1Namespace { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Namespace */ + name: string; +} +export interface Response$watchCoreV1Namespace$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1NodeList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1NodeList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1Node { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Node */ + name: string; +} +export interface Response$watchCoreV1Node$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1PersistentVolumeClaimListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1PersistentVolumeClaimListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1PersistentVolumeList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1PersistentVolumeList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1PersistentVolume { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PersistentVolume */ + name: string; +} +export interface Response$watchCoreV1PersistentVolume$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1PodListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1PodListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1PodTemplateListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1PodTemplateListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1ReplicationControllerListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1ReplicationControllerListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1ResourceQuotaListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1ResourceQuotaListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1SecretListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1SecretListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1ServiceAccountListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1ServiceAccountListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoreV1ServiceListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoreV1ServiceListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getAPIVersions$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroupList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroupList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroupList; +} +export interface Response$getAdmissionregistrationAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getAdmissionregistrationV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listAdmissionregistrationV1MutatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfigurationList; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfigurationList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfigurationList; + "application/json;stream=watch": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfigurationList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfigurationList; +} +export interface Parameter$createAdmissionregistrationV1MutatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAdmissionregistrationV1MutatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration.Content; +export interface Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$202 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Parameter$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAdmissionregistrationV1MutatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the MutatingWebhookConfiguration */ + name: string; +} +export interface Response$readAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Parameter$replaceAdmissionregistrationV1MutatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Parameter$deleteAdmissionregistrationV1MutatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAdmissionregistrationV1MutatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; +} +export interface Parameter$listAdmissionregistrationV1ValidatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfigurationList; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfigurationList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfigurationList; + "application/json;stream=watch": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfigurationList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfigurationList; +} +export interface Parameter$createAdmissionregistrationV1ValidatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAdmissionregistrationV1ValidatingWebhookConfiguration = RequestBodies.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration.Content; +export interface Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Parameter$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAdmissionregistrationV1ValidatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ValidatingWebhookConfiguration */ + name: string; +} +export interface Response$readAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Parameter$replaceAdmissionregistrationV1ValidatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Parameter$deleteAdmissionregistrationV1ValidatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAdmissionregistrationV1ValidatingWebhookConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; +} +export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurationList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAdmissionregistrationV1MutatingWebhookConfigurationList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfiguration { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the MutatingWebhookConfiguration */ + name: string; +} +export interface Response$watchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigurationList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAdmissionregistrationV1ValidatingWebhookConfigurationList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfiguration { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ValidatingWebhookConfiguration */ + name: string; +} +export interface Response$watchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getAdmissionregistrationV1alpha1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyList; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyList; + "application/json;stream=watch": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyList; +} +export interface Parameter$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy.Content; +export interface Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Parameter$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy.Content; +export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy.Content; +export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; +} +export interface Parameter$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingList; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingList; + "application/json;stream=watch": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBindingList; +} +export interface Parameter$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding.Content; +export interface Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export type RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding.Content; +export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export type RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export type RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export interface Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export interface Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getAdmissionregistrationV1beta1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyList; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyList; + "application/json;stream=watch": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyList; +} +export interface Parameter$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy.Content; +export interface Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Parameter$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy.Content; +export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy.Content; +export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export type RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; +} +export interface Parameter$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingList; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingList; + "application/json;stream=watch": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBindingList; +} +export interface Parameter$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding.Content; +export interface Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding.Content; +export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export type RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export type RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 { + "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/yaml": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; +} +export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ValidatingAdmissionPolicy */ + name: string; +} +export interface Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; +} +export interface Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getApiextensionsAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getApiextensionsV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listApiextensionsV1CustomResourceDefinition { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listApiextensionsV1CustomResourceDefinition$Status$200 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionList; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionList; + "application/json;stream=watch": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinitionList; +} +export interface Parameter$createApiextensionsV1CustomResourceDefinition { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createApiextensionsV1CustomResourceDefinition = RequestBodies.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition.Content; +export interface Response$createApiextensionsV1CustomResourceDefinition$Status$200 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Response$createApiextensionsV1CustomResourceDefinition$Status$201 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Response$createApiextensionsV1CustomResourceDefinition$Status$202 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Parameter$deleteApiextensionsV1CollectionCustomResourceDefinition { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteApiextensionsV1CollectionCustomResourceDefinition = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteApiextensionsV1CollectionCustomResourceDefinition$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readApiextensionsV1CustomResourceDefinition { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CustomResourceDefinition */ + name: string; +} +export interface Response$readApiextensionsV1CustomResourceDefinition$Status$200 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Parameter$replaceApiextensionsV1CustomResourceDefinition { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Response$replaceApiextensionsV1CustomResourceDefinition$Status$201 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Parameter$deleteApiextensionsV1CustomResourceDefinition { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteApiextensionsV1CustomResourceDefinition$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchApiextensionsV1CustomResourceDefinition { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Response$patchApiextensionsV1CustomResourceDefinition$Status$201 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Parameter$readApiextensionsV1CustomResourceDefinitionStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CustomResourceDefinition */ + name: string; +} +export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Parameter$replaceApiextensionsV1CustomResourceDefinitionStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$201 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Parameter$patchApiextensionsV1CustomResourceDefinitionStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$201 { + "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/yaml": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; +} +export interface Parameter$watchApiextensionsV1CustomResourceDefinitionList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchApiextensionsV1CustomResourceDefinitionList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchApiextensionsV1CustomResourceDefinition { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the CustomResourceDefinition */ + name: string; +} +export interface Response$watchApiextensionsV1CustomResourceDefinition$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getApiregistrationAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getApiregistrationV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listApiregistrationV1APIService { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listApiregistrationV1APIService$Status$200 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceList; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceList; + "application/json;stream=watch": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIServiceList; +} +export interface Parameter$createApiregistrationV1APIService { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createApiregistrationV1APIService = RequestBodies.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService.Content; +export interface Response$createApiregistrationV1APIService$Status$200 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Response$createApiregistrationV1APIService$Status$201 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Response$createApiregistrationV1APIService$Status$202 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Parameter$deleteApiregistrationV1CollectionAPIService { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteApiregistrationV1CollectionAPIService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteApiregistrationV1CollectionAPIService$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readApiregistrationV1APIService { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the APIService */ + name: string; +} +export interface Response$readApiregistrationV1APIService$Status$200 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Parameter$replaceApiregistrationV1APIService { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Response$replaceApiregistrationV1APIService$Status$201 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Parameter$deleteApiregistrationV1APIService { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteApiregistrationV1APIService$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchApiregistrationV1APIService { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Response$patchApiregistrationV1APIService$Status$201 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Parameter$readApiregistrationV1APIServiceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the APIService */ + name: string; +} +export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Parameter$replaceApiregistrationV1APIServiceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Response$replaceApiregistrationV1APIServiceStatus$Status$201 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Parameter$patchApiregistrationV1APIServiceStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Response$patchApiregistrationV1APIServiceStatus$Status$201 { + "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/yaml": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; +} +export interface Parameter$watchApiregistrationV1APIServiceList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchApiregistrationV1APIServiceList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchApiregistrationV1APIService { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the APIService */ + name: string; +} +export interface Response$watchApiregistrationV1APIService$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getAppsAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getAppsV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listAppsV1ControllerRevisionForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1ControllerRevisionForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; +} +export interface Parameter$listAppsV1DaemonSetForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1DaemonSetForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$DaemonSetList; +} +export interface Parameter$listAppsV1DeploymentForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1DeploymentForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DeploymentList; + "application/yaml": Schemas.io$k8s$api$apps$v1$DeploymentList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DeploymentList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$DeploymentList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1NamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$ControllerRevisionList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$api$apps$v1$ControllerRevision.Content; +export interface Response$createAppsV1NamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; +} +export interface Response$createAppsV1NamespacedControllerRevision$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; +} +export interface Response$createAppsV1NamespacedControllerRevision$Status$202 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAppsV1CollectionNamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1CollectionNamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAppsV1NamespacedControllerRevision { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ControllerRevision */ + name: string; +} +export interface Response$readAppsV1NamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; +} +export interface Parameter$replaceAppsV1NamespacedControllerRevision { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ControllerRevision */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$api$apps$v1$ControllerRevision.Content; +export interface Response$replaceAppsV1NamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; +} +export interface Response$replaceAppsV1NamespacedControllerRevision$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; +} +export interface Parameter$deleteAppsV1NamespacedControllerRevision { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ControllerRevision */ + name: string; +} +export type RequestBody$deleteAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1NamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAppsV1NamespacedControllerRevision$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAppsV1NamespacedControllerRevision { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ControllerRevision */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ControllerRevision; +} +export interface Response$patchAppsV1NamespacedControllerRevision$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "application/yaml": Schemas.io$k8s$api$apps$v1$ControllerRevision; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1NamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$DaemonSetList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; +export interface Response$createAppsV1NamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Response$createAppsV1NamespacedDaemonSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Response$createAppsV1NamespacedDaemonSet$Status$202 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAppsV1CollectionNamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1CollectionNamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAppsV1NamespacedDaemonSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the DaemonSet */ + name: string; +} +export interface Response$readAppsV1NamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Parameter$replaceAppsV1NamespacedDaemonSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the DaemonSet */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; +export interface Response$replaceAppsV1NamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Response$replaceAppsV1NamespacedDaemonSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Parameter$deleteAppsV1NamespacedDaemonSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the DaemonSet */ + name: string; +} +export type RequestBody$deleteAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1NamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAppsV1NamespacedDaemonSet$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAppsV1NamespacedDaemonSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the DaemonSet */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Response$patchAppsV1NamespacedDaemonSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Parameter$readAppsV1NamespacedDaemonSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the DaemonSet */ + name: string; +} +export interface Response$readAppsV1NamespacedDaemonSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Parameter$replaceAppsV1NamespacedDaemonSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the DaemonSet */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; +export interface Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Parameter$patchAppsV1NamespacedDaemonSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the DaemonSet */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; +} +export interface Response$patchAppsV1NamespacedDaemonSetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$DaemonSet; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1NamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$DeploymentList; + "application/yaml": Schemas.io$k8s$api$apps$v1$DeploymentList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DeploymentList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$DeploymentList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAppsV1NamespacedDeployment = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; +export interface Response$createAppsV1NamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Response$createAppsV1NamespacedDeployment$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Response$createAppsV1NamespacedDeployment$Status$202 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAppsV1CollectionNamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1CollectionNamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAppsV1NamespacedDeployment { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Deployment */ + name: string; +} +export interface Response$readAppsV1NamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Parameter$replaceAppsV1NamespacedDeployment { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Deployment */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedDeployment = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; +export interface Response$replaceAppsV1NamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Response$replaceAppsV1NamespacedDeployment$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Parameter$deleteAppsV1NamespacedDeployment { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Deployment */ + name: string; +} +export type RequestBody$deleteAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1NamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAppsV1NamespacedDeployment$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAppsV1NamespacedDeployment { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Deployment */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Response$patchAppsV1NamespacedDeployment$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Parameter$readAppsV1NamespacedDeploymentScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Scale */ + name: string; +} +export interface Response$readAppsV1NamespacedDeploymentScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$replaceAppsV1NamespacedDeploymentScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Scale */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; +export interface Response$replaceAppsV1NamespacedDeploymentScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$replaceAppsV1NamespacedDeploymentScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$patchAppsV1NamespacedDeploymentScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Scale */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedDeploymentScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$patchAppsV1NamespacedDeploymentScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$readAppsV1NamespacedDeploymentStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Deployment */ + name: string; +} +export interface Response$readAppsV1NamespacedDeploymentStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Parameter$replaceAppsV1NamespacedDeploymentStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Deployment */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; +export interface Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Response$replaceAppsV1NamespacedDeploymentStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Parameter$patchAppsV1NamespacedDeploymentStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Deployment */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedDeploymentStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; +} +export interface Response$patchAppsV1NamespacedDeploymentStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$Deployment; + "application/yaml": Schemas.io$k8s$api$apps$v1$Deployment; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1NamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; +export interface Response$createAppsV1NamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Response$createAppsV1NamespacedReplicaSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Response$createAppsV1NamespacedReplicaSet$Status$202 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAppsV1CollectionNamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1CollectionNamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAppsV1NamespacedReplicaSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ReplicaSet */ + name: string; +} +export interface Response$readAppsV1NamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Parameter$replaceAppsV1NamespacedReplicaSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ReplicaSet */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; +export interface Response$replaceAppsV1NamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Response$replaceAppsV1NamespacedReplicaSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Parameter$deleteAppsV1NamespacedReplicaSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ReplicaSet */ + name: string; +} +export type RequestBody$deleteAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1NamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAppsV1NamespacedReplicaSet$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAppsV1NamespacedReplicaSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ReplicaSet */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Response$patchAppsV1NamespacedReplicaSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Parameter$readAppsV1NamespacedReplicaSetScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Scale */ + name: string; +} +export interface Response$readAppsV1NamespacedReplicaSetScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$replaceAppsV1NamespacedReplicaSetScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Scale */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; +export interface Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$replaceAppsV1NamespacedReplicaSetScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$patchAppsV1NamespacedReplicaSetScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Scale */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$readAppsV1NamespacedReplicaSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ReplicaSet */ + name: string; +} +export interface Response$readAppsV1NamespacedReplicaSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Parameter$replaceAppsV1NamespacedReplicaSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ReplicaSet */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; +export interface Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Parameter$patchAppsV1NamespacedReplicaSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ReplicaSet */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; +} +export interface Response$patchAppsV1NamespacedReplicaSetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSet; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1NamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; +export interface Response$createAppsV1NamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Response$createAppsV1NamespacedStatefulSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Response$createAppsV1NamespacedStatefulSet$Status$202 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAppsV1CollectionNamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1CollectionNamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAppsV1NamespacedStatefulSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the StatefulSet */ + name: string; +} +export interface Response$readAppsV1NamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Parameter$replaceAppsV1NamespacedStatefulSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the StatefulSet */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; +export interface Response$replaceAppsV1NamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Response$replaceAppsV1NamespacedStatefulSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Parameter$deleteAppsV1NamespacedStatefulSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the StatefulSet */ + name: string; +} +export type RequestBody$deleteAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAppsV1NamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAppsV1NamespacedStatefulSet$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAppsV1NamespacedStatefulSet { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the StatefulSet */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Response$patchAppsV1NamespacedStatefulSet$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Parameter$readAppsV1NamespacedStatefulSetScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Scale */ + name: string; +} +export interface Response$readAppsV1NamespacedStatefulSetScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$replaceAppsV1NamespacedStatefulSetScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Scale */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; +export interface Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$replaceAppsV1NamespacedStatefulSetScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$patchAppsV1NamespacedStatefulSetScale { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Scale */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$Scale; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; +} +export interface Parameter$readAppsV1NamespacedStatefulSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the StatefulSet */ + name: string; +} +export interface Response$readAppsV1NamespacedStatefulSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Parameter$replaceAppsV1NamespacedStatefulSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the StatefulSet */ + name: string; +} +export type RequestBody$replaceAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; +export interface Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Parameter$patchAppsV1NamespacedStatefulSetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the StatefulSet */ + name: string; +} +export type RequestBody$patchAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAppsV1NamespacedStatefulSetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Response$patchAppsV1NamespacedStatefulSetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSet; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; +} +export interface Parameter$listAppsV1ReplicaSetForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1ReplicaSetForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "application/yaml": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$ReplicaSetList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$ReplicaSetList; +} +export interface Parameter$listAppsV1StatefulSetForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAppsV1StatefulSetForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "application/yaml": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "application/json;stream=watch": Schemas.io$k8s$api$apps$v1$StatefulSetList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apps$v1$StatefulSetList; +} +export interface Parameter$watchAppsV1ControllerRevisionListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1ControllerRevisionListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1DaemonSetListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1DaemonSetListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1DeploymentListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1DeploymentListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedControllerRevisionList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1NamespacedControllerRevisionList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedControllerRevision { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ControllerRevision */ + name: string; +} +export interface Response$watchAppsV1NamespacedControllerRevision$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedDaemonSetList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1NamespacedDaemonSetList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedDaemonSet { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the DaemonSet */ + name: string; +} +export interface Response$watchAppsV1NamespacedDaemonSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedDeploymentList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1NamespacedDeploymentList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedDeployment { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Deployment */ + name: string; +} +export interface Response$watchAppsV1NamespacedDeployment$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedReplicaSetList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1NamespacedReplicaSetList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedReplicaSet { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ReplicaSet */ + name: string; +} +export interface Response$watchAppsV1NamespacedReplicaSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedStatefulSetList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1NamespacedStatefulSetList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1NamespacedStatefulSet { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the StatefulSet */ + name: string; +} +export interface Response$watchAppsV1NamespacedStatefulSet$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1ReplicaSetListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1ReplicaSetListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAppsV1StatefulSetListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAppsV1StatefulSetListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getAuthenticationAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getAuthenticationV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$createAuthenticationV1SelfSubjectReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthenticationV1SelfSubjectReview { + "*/*": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1SelfSubjectReview$Status$200 { + "application/json": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1SelfSubjectReview$Status$201 { + "application/json": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1SelfSubjectReview$Status$202 { + "application/json": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$SelfSubjectReview; +} +export interface Parameter$createAuthenticationV1TokenReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthenticationV1TokenReview { + "*/*": Schemas.io$k8s$api$authentication$v1$TokenReview; +} +export interface Response$createAuthenticationV1TokenReview$Status$200 { + "application/json": Schemas.io$k8s$api$authentication$v1$TokenReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1$TokenReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$TokenReview; +} +export interface Response$createAuthenticationV1TokenReview$Status$201 { + "application/json": Schemas.io$k8s$api$authentication$v1$TokenReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1$TokenReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$TokenReview; +} +export interface Response$createAuthenticationV1TokenReview$Status$202 { + "application/json": Schemas.io$k8s$api$authentication$v1$TokenReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1$TokenReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1$TokenReview; +} +export interface Response$getAuthenticationV1alpha1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$createAuthenticationV1alpha1SelfSubjectReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthenticationV1alpha1SelfSubjectReview { + "*/*": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1alpha1SelfSubjectReview$Status$200 { + "application/json": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1alpha1SelfSubjectReview$Status$201 { + "application/json": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1alpha1SelfSubjectReview$Status$202 { + "application/json": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1alpha1$SelfSubjectReview; +} +export interface Response$getAuthenticationV1beta1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$createAuthenticationV1beta1SelfSubjectReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthenticationV1beta1SelfSubjectReview { + "*/*": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1beta1SelfSubjectReview$Status$200 { + "application/json": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1beta1SelfSubjectReview$Status$201 { + "application/json": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; +} +export interface Response$createAuthenticationV1beta1SelfSubjectReview$Status$202 { + "application/json": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; + "application/yaml": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authentication$v1beta1$SelfSubjectReview; +} +export interface Response$getAuthorizationAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getAuthorizationV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$createAuthorizationV1NamespacedLocalSubjectAccessReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthorizationV1NamespacedLocalSubjectAccessReview { + "*/*": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; +} +export interface Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$200 { + "application/json": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; +} +export interface Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$201 { + "application/json": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; +} +export interface Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$202 { + "application/json": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; +} +export interface Parameter$createAuthorizationV1SelfSubjectAccessReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthorizationV1SelfSubjectAccessReview { + "*/*": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; +} +export interface Response$createAuthorizationV1SelfSubjectAccessReview$Status$200 { + "application/json": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; +} +export interface Response$createAuthorizationV1SelfSubjectAccessReview$Status$201 { + "application/json": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; +} +export interface Response$createAuthorizationV1SelfSubjectAccessReview$Status$202 { + "application/json": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SelfSubjectAccessReview; +} +export interface Parameter$createAuthorizationV1SelfSubjectRulesReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthorizationV1SelfSubjectRulesReview { + "*/*": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; +} +export interface Response$createAuthorizationV1SelfSubjectRulesReview$Status$200 { + "application/json": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; +} +export interface Response$createAuthorizationV1SelfSubjectRulesReview$Status$201 { + "application/json": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; +} +export interface Response$createAuthorizationV1SelfSubjectRulesReview$Status$202 { + "application/json": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SelfSubjectRulesReview; +} +export interface Parameter$createAuthorizationV1SubjectAccessReview { + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; +} +export interface RequestBody$createAuthorizationV1SubjectAccessReview { + "*/*": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; +} +export interface Response$createAuthorizationV1SubjectAccessReview$Status$200 { + "application/json": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; +} +export interface Response$createAuthorizationV1SubjectAccessReview$Status$201 { + "application/json": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; +} +export interface Response$createAuthorizationV1SubjectAccessReview$Status$202 { + "application/json": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; + "application/yaml": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$authorization$v1$SubjectAccessReview; +} +export interface Response$getAutoscalingAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getAutoscalingV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "application/json;stream=watch": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "application/json;stream=watch": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscalerList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; +export interface Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; +export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Parameter$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; +export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; +} +export interface Parameter$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export interface Response$watchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getAutoscalingV2APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/json;stream=watch": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; +} +export interface Parameter$listAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/json;stream=watch": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscalerList; +} +export interface Parameter$createAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createAutoscalingV2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler.Content; +export interface Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Parameter$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export interface Response$readAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler.Content; +export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Parameter$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Parameter$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export interface Response$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler.Content; +export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export type RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201 { + "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/yaml": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; +} +export interface Parameter$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the HorizontalPodAutoscaler */ + name: string; +} +export interface Response$watchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getBatchAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getBatchV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listBatchV1CronJobForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listBatchV1CronJobForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/json;stream=watch": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1$CronJobList; +} +export interface Parameter$listBatchV1JobForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listBatchV1JobForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$JobList; + "application/yaml": Schemas.io$k8s$api$batch$v1$JobList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$JobList; + "application/json;stream=watch": Schemas.io$k8s$api$batch$v1$JobList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1$JobList; +} +export interface Parameter$listBatchV1NamespacedCronJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listBatchV1NamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/json;stream=watch": Schemas.io$k8s$api$batch$v1$CronJobList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$batch$v1$CronJobList; +} +export interface Parameter$createBatchV1NamespacedCronJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createBatchV1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v1$CronJob.Content; +export interface Response$createBatchV1NamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Response$createBatchV1NamespacedCronJob$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Response$createBatchV1NamespacedCronJob$Status$202 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Parameter$deleteBatchV1CollectionNamespacedCronJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteBatchV1CollectionNamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteBatchV1CollectionNamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readBatchV1NamespacedCronJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CronJob */ + name: string; +} +export interface Response$readBatchV1NamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Parameter$replaceBatchV1NamespacedCronJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the CronJob */ + name: string; +} +export type RequestBody$replaceBatchV1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v1$CronJob.Content; +export interface Response$replaceBatchV1NamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Response$replaceBatchV1NamespacedCronJob$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Parameter$deleteBatchV1NamespacedCronJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the CronJob */ + name: string; +} +export type RequestBody$deleteBatchV1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteBatchV1NamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteBatchV1NamespacedCronJob$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchBatchV1NamespacedCronJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the CronJob */ + name: string; +} +export type RequestBody$patchBatchV1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchBatchV1NamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Response$patchBatchV1NamespacedCronJob$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Parameter$readBatchV1NamespacedCronJobStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CronJob */ + name: string; +} +export interface Response$readBatchV1NamespacedCronJobStatus$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Parameter$replaceBatchV1NamespacedCronJobStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the CronJob */ + name: string; +} +export type RequestBody$replaceBatchV1NamespacedCronJobStatus = RequestBodies.io$k8s$api$batch$v1$CronJob.Content; +export interface Response$replaceBatchV1NamespacedCronJobStatus$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Response$replaceBatchV1NamespacedCronJobStatus$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Parameter$patchBatchV1NamespacedCronJobStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the CronJob */ + name: string; +} +export type RequestBody$patchBatchV1NamespacedCronJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchBatchV1NamespacedCronJobStatus$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Response$patchBatchV1NamespacedCronJobStatus$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$CronJob; + "application/yaml": Schemas.io$k8s$api$batch$v1$CronJob; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; +} +export interface Parameter$listBatchV1NamespacedJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listBatchV1NamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$JobList; + "application/yaml": Schemas.io$k8s$api$batch$v1$JobList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$JobList; + "application/json;stream=watch": Schemas.io$k8s$api$batch$v1$JobList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createBatchV1NamespacedJob = RequestBodies.io$k8s$api$batch$v1$Job.Content; +export interface Response$createBatchV1NamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Response$createBatchV1NamespacedJob$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Response$createBatchV1NamespacedJob$Status$202 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteBatchV1CollectionNamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteBatchV1CollectionNamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readBatchV1NamespacedJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Job */ + name: string; +} +export interface Response$readBatchV1NamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Parameter$replaceBatchV1NamespacedJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Job */ + name: string; +} +export type RequestBody$replaceBatchV1NamespacedJob = RequestBodies.io$k8s$api$batch$v1$Job.Content; +export interface Response$replaceBatchV1NamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Response$replaceBatchV1NamespacedJob$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Parameter$deleteBatchV1NamespacedJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Job */ + name: string; +} +export type RequestBody$deleteBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteBatchV1NamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteBatchV1NamespacedJob$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchBatchV1NamespacedJob { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Job */ + name: string; +} +export type RequestBody$patchBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchBatchV1NamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Response$patchBatchV1NamespacedJob$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Parameter$readBatchV1NamespacedJobStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Job */ + name: string; +} +export interface Response$readBatchV1NamespacedJobStatus$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Parameter$replaceBatchV1NamespacedJobStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Job */ + name: string; +} +export type RequestBody$replaceBatchV1NamespacedJobStatus = RequestBodies.io$k8s$api$batch$v1$Job.Content; +export interface Response$replaceBatchV1NamespacedJobStatus$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Response$replaceBatchV1NamespacedJobStatus$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Parameter$patchBatchV1NamespacedJobStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Job */ + name: string; +} +export type RequestBody$patchBatchV1NamespacedJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchBatchV1NamespacedJobStatus$Status$200 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Response$patchBatchV1NamespacedJobStatus$Status$201 { + "application/json": Schemas.io$k8s$api$batch$v1$Job; + "application/yaml": Schemas.io$k8s$api$batch$v1$Job; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; +} +export interface Parameter$watchBatchV1CronJobListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchBatchV1CronJobListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchBatchV1JobListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchBatchV1JobListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchBatchV1NamespacedCronJobList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchBatchV1NamespacedCronJobList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchBatchV1NamespacedCronJob { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the CronJob */ + name: string; +} +export interface Response$watchBatchV1NamespacedCronJob$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchBatchV1NamespacedJobList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchBatchV1NamespacedJobList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchBatchV1NamespacedJob { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Job */ + name: string; +} +export interface Response$watchBatchV1NamespacedJob$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getCertificatesAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getCertificatesV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listCertificatesV1CertificateSigningRequest { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCertificatesV1CertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestList; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestList; + "application/json;stream=watch": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequestList; +} +export interface Parameter$createCertificatesV1CertificateSigningRequest { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCertificatesV1CertificateSigningRequest = RequestBodies.io$k8s$api$certificates$v1$CertificateSigningRequest.Content; +export interface Response$createCertificatesV1CertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$createCertificatesV1CertificateSigningRequest$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$createCertificatesV1CertificateSigningRequest$Status$202 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$deleteCertificatesV1CollectionCertificateSigningRequest { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCertificatesV1CollectionCertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCertificatesV1CollectionCertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCertificatesV1CertificateSigningRequest { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CertificateSigningRequest */ + name: string; +} +export interface Response$readCertificatesV1CertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$replaceCertificatesV1CertificateSigningRequest { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the CertificateSigningRequest */ + name: string; +} +export type RequestBody$replaceCertificatesV1CertificateSigningRequest = RequestBodies.io$k8s$api$certificates$v1$CertificateSigningRequest.Content; +export interface Response$replaceCertificatesV1CertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$replaceCertificatesV1CertificateSigningRequest$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$deleteCertificatesV1CertificateSigningRequest { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the CertificateSigningRequest */ + name: string; +} +export type RequestBody$deleteCertificatesV1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCertificatesV1CertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCertificatesV1CertificateSigningRequest$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCertificatesV1CertificateSigningRequest { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the CertificateSigningRequest */ + name: string; +} +export type RequestBody$patchCertificatesV1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCertificatesV1CertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$patchCertificatesV1CertificateSigningRequest$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$readCertificatesV1CertificateSigningRequestApproval { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CertificateSigningRequest */ + name: string; +} +export interface Response$readCertificatesV1CertificateSigningRequestApproval$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$replaceCertificatesV1CertificateSigningRequestApproval { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the CertificateSigningRequest */ + name: string; +} +export type RequestBody$replaceCertificatesV1CertificateSigningRequestApproval = RequestBodies.io$k8s$api$certificates$v1$CertificateSigningRequest.Content; +export interface Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$patchCertificatesV1CertificateSigningRequestApproval { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the CertificateSigningRequest */ + name: string; +} +export type RequestBody$patchCertificatesV1CertificateSigningRequestApproval = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCertificatesV1CertificateSigningRequestApproval$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$patchCertificatesV1CertificateSigningRequestApproval$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$readCertificatesV1CertificateSigningRequestStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CertificateSigningRequest */ + name: string; +} +export interface Response$readCertificatesV1CertificateSigningRequestStatus$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$replaceCertificatesV1CertificateSigningRequestStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the CertificateSigningRequest */ + name: string; +} +export type RequestBody$replaceCertificatesV1CertificateSigningRequestStatus = RequestBodies.io$k8s$api$certificates$v1$CertificateSigningRequest.Content; +export interface Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$patchCertificatesV1CertificateSigningRequestStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the CertificateSigningRequest */ + name: string; +} +export type RequestBody$patchCertificatesV1CertificateSigningRequestStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCertificatesV1CertificateSigningRequestStatus$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Response$patchCertificatesV1CertificateSigningRequestStatus$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/yaml": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; +} +export interface Parameter$watchCertificatesV1CertificateSigningRequestList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCertificatesV1CertificateSigningRequestList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCertificatesV1CertificateSigningRequest { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the CertificateSigningRequest */ + name: string; +} +export interface Response$watchCertificatesV1CertificateSigningRequest$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getCertificatesV1alpha1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listCertificatesV1alpha1ClusterTrustBundle { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCertificatesV1alpha1ClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundleList; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundleList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundleList; + "application/json;stream=watch": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundleList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundleList; +} +export interface Parameter$createCertificatesV1alpha1ClusterTrustBundle { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCertificatesV1alpha1ClusterTrustBundle = RequestBodies.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle.Content; +export interface Response$createCertificatesV1alpha1ClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Response$createCertificatesV1alpha1ClusterTrustBundle$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Response$createCertificatesV1alpha1ClusterTrustBundle$Status$202 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Parameter$deleteCertificatesV1alpha1CollectionClusterTrustBundle { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCertificatesV1alpha1CollectionClusterTrustBundle = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCertificatesV1alpha1CollectionClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCertificatesV1alpha1ClusterTrustBundle { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ClusterTrustBundle */ + name: string; +} +export interface Response$readCertificatesV1alpha1ClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Parameter$replaceCertificatesV1alpha1ClusterTrustBundle { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ClusterTrustBundle */ + name: string; +} +export type RequestBody$replaceCertificatesV1alpha1ClusterTrustBundle = RequestBodies.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle.Content; +export interface Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Parameter$deleteCertificatesV1alpha1ClusterTrustBundle { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ClusterTrustBundle */ + name: string; +} +export type RequestBody$deleteCertificatesV1alpha1ClusterTrustBundle = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCertificatesV1alpha1ClusterTrustBundle { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ClusterTrustBundle */ + name: string; +} +export type RequestBody$patchCertificatesV1alpha1ClusterTrustBundle = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$201 { + "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/yaml": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; +} +export interface Parameter$watchCertificatesV1alpha1ClusterTrustBundleList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCertificatesV1alpha1ClusterTrustBundleList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCertificatesV1alpha1ClusterTrustBundle { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ClusterTrustBundle */ + name: string; +} +export interface Response$watchCertificatesV1alpha1ClusterTrustBundle$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getCoordinationAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getCoordinationV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listCoordinationV1LeaseForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoordinationV1LeaseForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$coordination$v1$LeaseList; + "application/yaml": Schemas.io$k8s$api$coordination$v1$LeaseList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$LeaseList; + "application/json;stream=watch": Schemas.io$k8s$api$coordination$v1$LeaseList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listCoordinationV1NamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$api$coordination$v1$LeaseList; + "application/yaml": Schemas.io$k8s$api$coordination$v1$LeaseList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$LeaseList; + "application/json;stream=watch": Schemas.io$k8s$api$coordination$v1$LeaseList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createCoordinationV1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1$Lease.Content; +export interface Response$createCoordinationV1NamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; +} +export interface Response$createCoordinationV1NamespacedLease$Status$201 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; +} +export interface Response$createCoordinationV1NamespacedLease$Status$202 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteCoordinationV1CollectionNamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoordinationV1CollectionNamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readCoordinationV1NamespacedLease { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Lease */ + name: string; +} +export interface Response$readCoordinationV1NamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; +} +export interface Parameter$replaceCoordinationV1NamespacedLease { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Lease */ + name: string; +} +export type RequestBody$replaceCoordinationV1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1$Lease.Content; +export interface Response$replaceCoordinationV1NamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; +} +export interface Response$replaceCoordinationV1NamespacedLease$Status$201 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; +} +export interface Parameter$deleteCoordinationV1NamespacedLease { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Lease */ + name: string; +} +export type RequestBody$deleteCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteCoordinationV1NamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteCoordinationV1NamespacedLease$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchCoordinationV1NamespacedLease { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Lease */ + name: string; +} +export type RequestBody$patchCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchCoordinationV1NamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; +} +export interface Response$patchCoordinationV1NamespacedLease$Status$201 { + "application/json": Schemas.io$k8s$api$coordination$v1$Lease; + "application/yaml": Schemas.io$k8s$api$coordination$v1$Lease; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$coordination$v1$Lease; +} +export interface Parameter$watchCoordinationV1LeaseListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoordinationV1LeaseListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoordinationV1NamespacedLeaseList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchCoordinationV1NamespacedLeaseList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchCoordinationV1NamespacedLease { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Lease */ + name: string; +} +export interface Response$watchCoordinationV1NamespacedLease$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getDiscoveryAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getDiscoveryV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listDiscoveryV1EndpointSliceForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listDiscoveryV1EndpointSliceForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/json;stream=watch": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; +} +export interface Parameter$listDiscoveryV1NamespacedEndpointSlice { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listDiscoveryV1NamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/json;stream=watch": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$discovery$v1$EndpointSliceList; +} +export interface Parameter$createDiscoveryV1NamespacedEndpointSlice { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createDiscoveryV1NamespacedEndpointSlice = RequestBodies.io$k8s$api$discovery$v1$EndpointSlice.Content; +export interface Response$createDiscoveryV1NamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Response$createDiscoveryV1NamespacedEndpointSlice$Status$201 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Response$createDiscoveryV1NamespacedEndpointSlice$Status$202 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Parameter$deleteDiscoveryV1CollectionNamespacedEndpointSlice { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteDiscoveryV1CollectionNamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteDiscoveryV1CollectionNamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readDiscoveryV1NamespacedEndpointSlice { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the EndpointSlice */ + name: string; +} +export interface Response$readDiscoveryV1NamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Parameter$replaceDiscoveryV1NamespacedEndpointSlice { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the EndpointSlice */ + name: string; +} +export type RequestBody$replaceDiscoveryV1NamespacedEndpointSlice = RequestBodies.io$k8s$api$discovery$v1$EndpointSlice.Content; +export interface Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$201 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Parameter$deleteDiscoveryV1NamespacedEndpointSlice { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the EndpointSlice */ + name: string; +} +export type RequestBody$deleteDiscoveryV1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchDiscoveryV1NamespacedEndpointSlice { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the EndpointSlice */ + name: string; +} +export type RequestBody$patchDiscoveryV1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchDiscoveryV1NamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Response$patchDiscoveryV1NamespacedEndpointSlice$Status$201 { + "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/yaml": Schemas.io$k8s$api$discovery$v1$EndpointSlice; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; +} +export interface Parameter$watchDiscoveryV1EndpointSliceListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchDiscoveryV1EndpointSliceListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchDiscoveryV1NamespacedEndpointSliceList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchDiscoveryV1NamespacedEndpointSliceList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchDiscoveryV1NamespacedEndpointSlice { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the EndpointSlice */ + name: string; +} +export interface Response$watchDiscoveryV1NamespacedEndpointSlice$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getEventsAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getEventsV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listEventsV1EventForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listEventsV1EventForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$events$v1$EventList; + "application/yaml": Schemas.io$k8s$api$events$v1$EventList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$EventList; + "application/json;stream=watch": Schemas.io$k8s$api$events$v1$EventList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$events$v1$EventList; +} +export interface Parameter$listEventsV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listEventsV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$events$v1$EventList; + "application/yaml": Schemas.io$k8s$api$events$v1$EventList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$EventList; + "application/json;stream=watch": Schemas.io$k8s$api$events$v1$EventList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$events$v1$EventList; +} +export interface Parameter$createEventsV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createEventsV1NamespacedEvent = RequestBodies.io$k8s$api$events$v1$Event.Content; +export interface Response$createEventsV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Response$createEventsV1NamespacedEvent$Status$201 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Response$createEventsV1NamespacedEvent$Status$202 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Parameter$deleteEventsV1CollectionNamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteEventsV1CollectionNamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteEventsV1CollectionNamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readEventsV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Event */ + name: string; +} +export interface Response$readEventsV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Parameter$replaceEventsV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Event */ + name: string; +} +export type RequestBody$replaceEventsV1NamespacedEvent = RequestBodies.io$k8s$api$events$v1$Event.Content; +export interface Response$replaceEventsV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Response$replaceEventsV1NamespacedEvent$Status$201 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Parameter$deleteEventsV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Event */ + name: string; +} +export type RequestBody$deleteEventsV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteEventsV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteEventsV1NamespacedEvent$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchEventsV1NamespacedEvent { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Event */ + name: string; +} +export type RequestBody$patchEventsV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchEventsV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Response$patchEventsV1NamespacedEvent$Status$201 { + "application/json": Schemas.io$k8s$api$events$v1$Event; + "application/yaml": Schemas.io$k8s$api$events$v1$Event; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; +} +export interface Parameter$watchEventsV1EventListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchEventsV1EventListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchEventsV1NamespacedEventList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchEventsV1NamespacedEventList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchEventsV1NamespacedEvent { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Event */ + name: string; +} +export interface Response$watchEventsV1NamespacedEvent$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getFlowcontrolApiserverAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getFlowcontrolApiserverV1beta2APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listFlowcontrolApiserverV1beta2FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listFlowcontrolApiserverV1beta2FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaList; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaList; + "application/json;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchemaList; +} +export interface Parameter$createFlowcontrolApiserverV1beta2FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createFlowcontrolApiserverV1beta2FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1beta2$FlowSchema.Content; +export interface Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$202 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readFlowcontrolApiserverV1beta2FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the FlowSchema */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta2FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta2FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1beta2$FlowSchema.Content; +export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta2FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta2FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchFlowcontrolApiserverV1beta2FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta2FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Parameter$readFlowcontrolApiserverV1beta2FlowSchemaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the FlowSchema */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta2$FlowSchema.Content; +export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Parameter$patchFlowcontrolApiserverV1beta2FlowSchemaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta2FlowSchemaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; +} +export interface Parameter$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationList; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationList; + "application/json;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfigurationList; +} +export interface Parameter$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration.Content; +export interface Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration.Content; +export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Parameter$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration.Content; +export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; +} +export interface Parameter$watchFlowcontrolApiserverV1beta2FlowSchemaList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchFlowcontrolApiserverV1beta2FlowSchemaList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchFlowcontrolApiserverV1beta2FlowSchema { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the FlowSchema */ + name: string; +} +export interface Response$watchFlowcontrolApiserverV1beta2FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export interface Response$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getFlowcontrolApiserverV1beta3APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listFlowcontrolApiserverV1beta3FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listFlowcontrolApiserverV1beta3FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaList; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaList; + "application/json;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchemaList; +} +export interface Parameter$createFlowcontrolApiserverV1beta3FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createFlowcontrolApiserverV1beta3FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1beta3$FlowSchema.Content; +export interface Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$202 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readFlowcontrolApiserverV1beta3FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the FlowSchema */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta3FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta3FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1beta3$FlowSchema.Content; +export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta3FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta3FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchFlowcontrolApiserverV1beta3FlowSchema { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta3FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Parameter$readFlowcontrolApiserverV1beta3FlowSchemaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the FlowSchema */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta3$FlowSchema.Content; +export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Parameter$patchFlowcontrolApiserverV1beta3FlowSchemaStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the FlowSchema */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta3FlowSchemaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; +} +export interface Parameter$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationList; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationList; + "application/json;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfigurationList; +} +export interface Parameter$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration.Content; +export interface Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration.Content; +export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Parameter$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Parameter$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export interface Response$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration.Content; +export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export type RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201 { + "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/yaml": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; +} +export interface Parameter$watchFlowcontrolApiserverV1beta3FlowSchemaList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchFlowcontrolApiserverV1beta3FlowSchemaList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchFlowcontrolApiserverV1beta3FlowSchema { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the FlowSchema */ + name: string; +} +export interface Response$watchFlowcontrolApiserverV1beta3FlowSchema$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PriorityLevelConfiguration */ + name: string; +} +export interface Response$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getInternalApiserverAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getInternalApiserverV1alpha1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listInternalApiserverV1alpha1StorageVersion { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listInternalApiserverV1alpha1StorageVersion$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionList; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionList; + "application/json;stream=watch": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersionList; +} +export interface Parameter$createInternalApiserverV1alpha1StorageVersion { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createInternalApiserverV1alpha1StorageVersion = RequestBodies.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion.Content; +export interface Response$createInternalApiserverV1alpha1StorageVersion$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Response$createInternalApiserverV1alpha1StorageVersion$Status$201 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Response$createInternalApiserverV1alpha1StorageVersion$Status$202 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Parameter$deleteInternalApiserverV1alpha1CollectionStorageVersion { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteInternalApiserverV1alpha1CollectionStorageVersion = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteInternalApiserverV1alpha1CollectionStorageVersion$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readInternalApiserverV1alpha1StorageVersion { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the StorageVersion */ + name: string; +} +export interface Response$readInternalApiserverV1alpha1StorageVersion$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Parameter$replaceInternalApiserverV1alpha1StorageVersion { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the StorageVersion */ + name: string; +} +export type RequestBody$replaceInternalApiserverV1alpha1StorageVersion = RequestBodies.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion.Content; +export interface Response$replaceInternalApiserverV1alpha1StorageVersion$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Response$replaceInternalApiserverV1alpha1StorageVersion$Status$201 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Parameter$deleteInternalApiserverV1alpha1StorageVersion { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the StorageVersion */ + name: string; +} +export type RequestBody$deleteInternalApiserverV1alpha1StorageVersion = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteInternalApiserverV1alpha1StorageVersion$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteInternalApiserverV1alpha1StorageVersion$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchInternalApiserverV1alpha1StorageVersion { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the StorageVersion */ + name: string; +} +export type RequestBody$patchInternalApiserverV1alpha1StorageVersion = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchInternalApiserverV1alpha1StorageVersion$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Response$patchInternalApiserverV1alpha1StorageVersion$Status$201 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Parameter$readInternalApiserverV1alpha1StorageVersionStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the StorageVersion */ + name: string; +} +export interface Response$readInternalApiserverV1alpha1StorageVersionStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Parameter$replaceInternalApiserverV1alpha1StorageVersionStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the StorageVersion */ + name: string; +} +export type RequestBody$replaceInternalApiserverV1alpha1StorageVersionStatus = RequestBodies.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion.Content; +export interface Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Parameter$patchInternalApiserverV1alpha1StorageVersionStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the StorageVersion */ + name: string; +} +export type RequestBody$patchInternalApiserverV1alpha1StorageVersionStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$200 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$201 { + "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/yaml": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; +} +export interface Parameter$watchInternalApiserverV1alpha1StorageVersionList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchInternalApiserverV1alpha1StorageVersionList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchInternalApiserverV1alpha1StorageVersion { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the StorageVersion */ + name: string; +} +export interface Response$watchInternalApiserverV1alpha1StorageVersion$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getNetworkingAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getNetworkingV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listNetworkingV1IngressClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNetworkingV1IngressClass$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClassList; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClassList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClassList; + "application/json;stream=watch": Schemas.io$k8s$api$networking$v1$IngressClassList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1$IngressClassList; +} +export interface Parameter$createNetworkingV1IngressClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createNetworkingV1IngressClass = RequestBodies.io$k8s$api$networking$v1$IngressClass.Content; +export interface Response$createNetworkingV1IngressClass$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Response$createNetworkingV1IngressClass$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Response$createNetworkingV1IngressClass$Status$202 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Parameter$deleteNetworkingV1CollectionIngressClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteNetworkingV1CollectionIngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1CollectionIngressClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readNetworkingV1IngressClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the IngressClass */ + name: string; +} +export interface Response$readNetworkingV1IngressClass$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Parameter$replaceNetworkingV1IngressClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the IngressClass */ + name: string; +} +export type RequestBody$replaceNetworkingV1IngressClass = RequestBodies.io$k8s$api$networking$v1$IngressClass.Content; +export interface Response$replaceNetworkingV1IngressClass$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Response$replaceNetworkingV1IngressClass$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Parameter$deleteNetworkingV1IngressClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the IngressClass */ + name: string; +} +export type RequestBody$deleteNetworkingV1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1IngressClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteNetworkingV1IngressClass$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchNetworkingV1IngressClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the IngressClass */ + name: string; +} +export type RequestBody$patchNetworkingV1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchNetworkingV1IngressClass$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Response$patchNetworkingV1IngressClass$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; +} +export interface Parameter$listNetworkingV1IngressForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNetworkingV1IngressForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressList; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressList; + "application/json;stream=watch": Schemas.io$k8s$api$networking$v1$IngressList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1$IngressList; +} +export interface Parameter$listNetworkingV1NamespacedIngress { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNetworkingV1NamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$IngressList; + "application/yaml": Schemas.io$k8s$api$networking$v1$IngressList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressList; + "application/json;stream=watch": Schemas.io$k8s$api$networking$v1$IngressList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1$IngressList; +} +export interface Parameter$createNetworkingV1NamespacedIngress { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createNetworkingV1NamespacedIngress = RequestBodies.io$k8s$api$networking$v1$Ingress.Content; +export interface Response$createNetworkingV1NamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Response$createNetworkingV1NamespacedIngress$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Response$createNetworkingV1NamespacedIngress$Status$202 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Parameter$deleteNetworkingV1CollectionNamespacedIngress { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteNetworkingV1CollectionNamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1CollectionNamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readNetworkingV1NamespacedIngress { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Ingress */ + name: string; +} +export interface Response$readNetworkingV1NamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Parameter$replaceNetworkingV1NamespacedIngress { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Ingress */ + name: string; +} +export type RequestBody$replaceNetworkingV1NamespacedIngress = RequestBodies.io$k8s$api$networking$v1$Ingress.Content; +export interface Response$replaceNetworkingV1NamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Response$replaceNetworkingV1NamespacedIngress$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Parameter$deleteNetworkingV1NamespacedIngress { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Ingress */ + name: string; +} +export type RequestBody$deleteNetworkingV1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1NamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteNetworkingV1NamespacedIngress$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchNetworkingV1NamespacedIngress { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Ingress */ + name: string; +} +export type RequestBody$patchNetworkingV1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchNetworkingV1NamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Response$patchNetworkingV1NamespacedIngress$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Parameter$readNetworkingV1NamespacedIngressStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Ingress */ + name: string; +} +export interface Response$readNetworkingV1NamespacedIngressStatus$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Parameter$replaceNetworkingV1NamespacedIngressStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Ingress */ + name: string; +} +export type RequestBody$replaceNetworkingV1NamespacedIngressStatus = RequestBodies.io$k8s$api$networking$v1$Ingress.Content; +export interface Response$replaceNetworkingV1NamespacedIngressStatus$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Response$replaceNetworkingV1NamespacedIngressStatus$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Parameter$patchNetworkingV1NamespacedIngressStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Ingress */ + name: string; +} +export type RequestBody$patchNetworkingV1NamespacedIngressStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchNetworkingV1NamespacedIngressStatus$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Response$patchNetworkingV1NamespacedIngressStatus$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$Ingress; + "application/yaml": Schemas.io$k8s$api$networking$v1$Ingress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; +} +export interface Parameter$listNetworkingV1NamespacedNetworkPolicy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNetworkingV1NamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "application/json;stream=watch": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$api$networking$v1$NetworkPolicy.Content; +export interface Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; +} +export interface Response$createNetworkingV1NamespacedNetworkPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; +} +export interface Response$createNetworkingV1NamespacedNetworkPolicy$Status$202 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteNetworkingV1CollectionNamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1CollectionNamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readNetworkingV1NamespacedNetworkPolicy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the NetworkPolicy */ + name: string; +} +export interface Response$readNetworkingV1NamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; +} +export interface Parameter$replaceNetworkingV1NamespacedNetworkPolicy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the NetworkPolicy */ + name: string; +} +export type RequestBody$replaceNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$api$networking$v1$NetworkPolicy.Content; +export interface Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; +} +export interface Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; +} +export interface Parameter$deleteNetworkingV1NamespacedNetworkPolicy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the NetworkPolicy */ + name: string; +} +export type RequestBody$deleteNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchNetworkingV1NamespacedNetworkPolicy { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the NetworkPolicy */ + name: string; +} +export type RequestBody$patchNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchNetworkingV1NamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; +} +export interface Response$patchNetworkingV1NamespacedNetworkPolicy$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicy; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicy; +} +export interface Parameter$listNetworkingV1NetworkPolicyForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNetworkingV1NetworkPolicyForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "application/yaml": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "application/json;stream=watch": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1$NetworkPolicyList; +} +export interface Parameter$watchNetworkingV1IngressClassList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNetworkingV1IngressClassList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1IngressClass { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the IngressClass */ + name: string; +} +export interface Response$watchNetworkingV1IngressClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1IngressListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNetworkingV1IngressListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1NamespacedIngressList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNetworkingV1NamespacedIngressList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1NamespacedIngress { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Ingress */ + name: string; +} +export interface Response$watchNetworkingV1NamespacedIngress$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1NamespacedNetworkPolicyList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNetworkingV1NamespacedNetworkPolicyList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the NetworkPolicy */ + name: string; +} +export interface Response$watchNetworkingV1NamespacedNetworkPolicy$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1NetworkPolicyListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNetworkingV1NetworkPolicyListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getNetworkingV1alpha1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listNetworkingV1alpha1ClusterCIDR { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNetworkingV1alpha1ClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDRList; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDRList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDRList; + "application/json;stream=watch": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDRList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDRList; +} +export interface Parameter$createNetworkingV1alpha1ClusterCIDR { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createNetworkingV1alpha1ClusterCIDR = RequestBodies.io$k8s$api$networking$v1alpha1$ClusterCIDR.Content; +export interface Response$createNetworkingV1alpha1ClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Response$createNetworkingV1alpha1ClusterCIDR$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Response$createNetworkingV1alpha1ClusterCIDR$Status$202 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Parameter$deleteNetworkingV1alpha1CollectionClusterCIDR { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteNetworkingV1alpha1CollectionClusterCIDR = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1alpha1CollectionClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readNetworkingV1alpha1ClusterCIDR { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ClusterCIDR */ + name: string; +} +export interface Response$readNetworkingV1alpha1ClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Parameter$replaceNetworkingV1alpha1ClusterCIDR { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ClusterCIDR */ + name: string; +} +export type RequestBody$replaceNetworkingV1alpha1ClusterCIDR = RequestBodies.io$k8s$api$networking$v1alpha1$ClusterCIDR.Content; +export interface Response$replaceNetworkingV1alpha1ClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Response$replaceNetworkingV1alpha1ClusterCIDR$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Parameter$deleteNetworkingV1alpha1ClusterCIDR { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ClusterCIDR */ + name: string; +} +export type RequestBody$deleteNetworkingV1alpha1ClusterCIDR = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1alpha1ClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteNetworkingV1alpha1ClusterCIDR$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchNetworkingV1alpha1ClusterCIDR { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ClusterCIDR */ + name: string; +} +export type RequestBody$patchNetworkingV1alpha1ClusterCIDR = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchNetworkingV1alpha1ClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Response$patchNetworkingV1alpha1ClusterCIDR$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; +} +export interface Parameter$listNetworkingV1alpha1IPAddress { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNetworkingV1alpha1IPAddress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddressList; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddressList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddressList; + "application/json;stream=watch": Schemas.io$k8s$api$networking$v1alpha1$IPAddressList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$networking$v1alpha1$IPAddressList; +} +export interface Parameter$createNetworkingV1alpha1IPAddress { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createNetworkingV1alpha1IPAddress = RequestBodies.io$k8s$api$networking$v1alpha1$IPAddress.Content; +export interface Response$createNetworkingV1alpha1IPAddress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Response$createNetworkingV1alpha1IPAddress$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Response$createNetworkingV1alpha1IPAddress$Status$202 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Parameter$deleteNetworkingV1alpha1CollectionIPAddress { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteNetworkingV1alpha1CollectionIPAddress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1alpha1CollectionIPAddress$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readNetworkingV1alpha1IPAddress { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the IPAddress */ + name: string; +} +export interface Response$readNetworkingV1alpha1IPAddress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Parameter$replaceNetworkingV1alpha1IPAddress { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the IPAddress */ + name: string; +} +export type RequestBody$replaceNetworkingV1alpha1IPAddress = RequestBodies.io$k8s$api$networking$v1alpha1$IPAddress.Content; +export interface Response$replaceNetworkingV1alpha1IPAddress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Response$replaceNetworkingV1alpha1IPAddress$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Parameter$deleteNetworkingV1alpha1IPAddress { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the IPAddress */ + name: string; +} +export type RequestBody$deleteNetworkingV1alpha1IPAddress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNetworkingV1alpha1IPAddress$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteNetworkingV1alpha1IPAddress$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchNetworkingV1alpha1IPAddress { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the IPAddress */ + name: string; +} +export type RequestBody$patchNetworkingV1alpha1IPAddress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchNetworkingV1alpha1IPAddress$Status$200 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Response$patchNetworkingV1alpha1IPAddress$Status$201 { + "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/yaml": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; +} +export interface Parameter$watchNetworkingV1alpha1ClusterCIDRList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNetworkingV1alpha1ClusterCIDRList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1alpha1ClusterCIDR { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ClusterCIDR */ + name: string; +} +export interface Response$watchNetworkingV1alpha1ClusterCIDR$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1alpha1IPAddressList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNetworkingV1alpha1IPAddressList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNetworkingV1alpha1IPAddress { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the IPAddress */ + name: string; +} +export interface Response$watchNetworkingV1alpha1IPAddress$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getNodeAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getNodeV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listNodeV1RuntimeClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listNodeV1RuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClassList; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClassList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClassList; + "application/json;stream=watch": Schemas.io$k8s$api$node$v1$RuntimeClassList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$node$v1$RuntimeClassList; +} +export interface Parameter$createNodeV1RuntimeClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createNodeV1RuntimeClass = RequestBodies.io$k8s$api$node$v1$RuntimeClass.Content; +export interface Response$createNodeV1RuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Response$createNodeV1RuntimeClass$Status$201 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Response$createNodeV1RuntimeClass$Status$202 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Parameter$deleteNodeV1CollectionRuntimeClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteNodeV1CollectionRuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNodeV1CollectionRuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readNodeV1RuntimeClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the RuntimeClass */ + name: string; +} +export interface Response$readNodeV1RuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Parameter$replaceNodeV1RuntimeClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the RuntimeClass */ + name: string; +} +export type RequestBody$replaceNodeV1RuntimeClass = RequestBodies.io$k8s$api$node$v1$RuntimeClass.Content; +export interface Response$replaceNodeV1RuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Response$replaceNodeV1RuntimeClass$Status$201 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Parameter$deleteNodeV1RuntimeClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the RuntimeClass */ + name: string; +} +export type RequestBody$deleteNodeV1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteNodeV1RuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteNodeV1RuntimeClass$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchNodeV1RuntimeClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the RuntimeClass */ + name: string; +} +export type RequestBody$patchNodeV1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchNodeV1RuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Response$patchNodeV1RuntimeClass$Status$201 { + "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/yaml": Schemas.io$k8s$api$node$v1$RuntimeClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; +} +export interface Parameter$watchNodeV1RuntimeClassList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchNodeV1RuntimeClassList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchNodeV1RuntimeClass { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the RuntimeClass */ + name: string; +} +export interface Response$watchNodeV1RuntimeClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getPolicyAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getPolicyV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listPolicyV1NamespacedPodDisruptionBudget { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listPolicyV1NamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/json;stream=watch": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; +} +export interface Parameter$createPolicyV1NamespacedPodDisruptionBudget { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createPolicyV1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$api$policy$v1$PodDisruptionBudget.Content; +export interface Response$createPolicyV1NamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Response$createPolicyV1NamespacedPodDisruptionBudget$Status$201 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Response$createPolicyV1NamespacedPodDisruptionBudget$Status$202 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Parameter$deletePolicyV1CollectionNamespacedPodDisruptionBudget { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deletePolicyV1CollectionNamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deletePolicyV1CollectionNamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readPolicyV1NamespacedPodDisruptionBudget { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PodDisruptionBudget */ + name: string; +} +export interface Response$readPolicyV1NamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Parameter$replacePolicyV1NamespacedPodDisruptionBudget { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PodDisruptionBudget */ + name: string; +} +export type RequestBody$replacePolicyV1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$api$policy$v1$PodDisruptionBudget.Content; +export interface Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$201 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Parameter$deletePolicyV1NamespacedPodDisruptionBudget { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the PodDisruptionBudget */ + name: string; +} +export type RequestBody$deletePolicyV1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchPolicyV1NamespacedPodDisruptionBudget { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PodDisruptionBudget */ + name: string; +} +export type RequestBody$patchPolicyV1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$201 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Parameter$readPolicyV1NamespacedPodDisruptionBudgetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PodDisruptionBudget */ + name: string; +} +export interface Response$readPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Parameter$replacePolicyV1NamespacedPodDisruptionBudgetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PodDisruptionBudget */ + name: string; +} +export type RequestBody$replacePolicyV1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$api$policy$v1$PodDisruptionBudget.Content; +export interface Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Parameter$patchPolicyV1NamespacedPodDisruptionBudgetStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PodDisruptionBudget */ + name: string; +} +export type RequestBody$patchPolicyV1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$201 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; +} +export interface Parameter$listPolicyV1PodDisruptionBudgetForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listPolicyV1PodDisruptionBudgetForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/yaml": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/json;stream=watch": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$policy$v1$PodDisruptionBudgetList; +} +export interface Parameter$watchPolicyV1NamespacedPodDisruptionBudgetList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchPolicyV1NamespacedPodDisruptionBudgetList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchPolicyV1NamespacedPodDisruptionBudget { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PodDisruptionBudget */ + name: string; +} +export interface Response$watchPolicyV1NamespacedPodDisruptionBudget$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchPolicyV1PodDisruptionBudgetListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchPolicyV1PodDisruptionBudgetListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getRbacAuthorizationAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getRbacAuthorizationV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listRbacAuthorizationV1ClusterRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listRbacAuthorizationV1ClusterRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBindingList; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBindingList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBindingList; + "application/json;stream=watch": Schemas.io$k8s$api$rbac$v1$ClusterRoleBindingList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$ClusterRoleBindingList; +} +export interface Parameter$createRbacAuthorizationV1ClusterRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createRbacAuthorizationV1ClusterRoleBinding = RequestBodies.io$k8s$api$rbac$v1$ClusterRoleBinding.Content; +export interface Response$createRbacAuthorizationV1ClusterRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Response$createRbacAuthorizationV1ClusterRoleBinding$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Response$createRbacAuthorizationV1ClusterRoleBinding$Status$202 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Parameter$deleteRbacAuthorizationV1CollectionClusterRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteRbacAuthorizationV1CollectionClusterRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readRbacAuthorizationV1ClusterRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ClusterRoleBinding */ + name: string; +} +export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Parameter$replaceRbacAuthorizationV1ClusterRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Parameter$deleteRbacAuthorizationV1ClusterRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchRbacAuthorizationV1ClusterRoleBinding { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; +} +export interface Parameter$listRbacAuthorizationV1ClusterRole { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listRbacAuthorizationV1ClusterRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleList; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRoleList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRoleList; + "application/json;stream=watch": Schemas.io$k8s$api$rbac$v1$ClusterRoleList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$ClusterRoleList; +} +export interface Parameter$createRbacAuthorizationV1ClusterRole { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createRbacAuthorizationV1ClusterRole = RequestBodies.io$k8s$api$rbac$v1$ClusterRole.Content; +export interface Response$createRbacAuthorizationV1ClusterRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; +} +export interface Response$createRbacAuthorizationV1ClusterRole$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; +} +export interface Response$createRbacAuthorizationV1ClusterRole$Status$202 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; +} +export interface Parameter$deleteRbacAuthorizationV1CollectionClusterRole { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteRbacAuthorizationV1CollectionClusterRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readRbacAuthorizationV1ClusterRole { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ClusterRole */ + name: string; +} +export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; +} +export interface Parameter$replaceRbacAuthorizationV1ClusterRole { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; +} +export interface Response$replaceRbacAuthorizationV1ClusterRole$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; +} +export interface Parameter$deleteRbacAuthorizationV1ClusterRole { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteRbacAuthorizationV1ClusterRole$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchRbacAuthorizationV1ClusterRole { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$ClusterRole; +} +export interface Response$patchRbacAuthorizationV1ClusterRole$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "application/yaml": Schemas.io$k8s$api$rbac$v1$ClusterRole; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listRbacAuthorizationV1NamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "application/json;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1$RoleBinding.Content; +export interface Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; +} +export interface Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; +} +export interface Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$202 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readRbacAuthorizationV1NamespacedRoleBinding { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the RoleBinding */ + name: string; +} +export interface Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; +} +export interface Parameter$replaceRbacAuthorizationV1NamespacedRoleBinding { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the RoleBinding */ + name: string; +} +export type RequestBody$replaceRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1$RoleBinding.Content; +export interface Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; +} +export interface Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; +} +export interface Parameter$deleteRbacAuthorizationV1NamespacedRoleBinding { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the RoleBinding */ + name: string; +} +export type RequestBody$deleteRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchRbacAuthorizationV1NamespacedRoleBinding { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the RoleBinding */ + name: string; +} +export type RequestBody$patchRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBinding; +} +export interface Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBinding; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listRbacAuthorizationV1NamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleList; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleList; + "application/json;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleList; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1$Role.Content; +export interface Response$createRbacAuthorizationV1NamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; +} +export interface Response$createRbacAuthorizationV1NamespacedRole$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; +} +export interface Response$createRbacAuthorizationV1NamespacedRole$Status$202 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "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: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readRbacAuthorizationV1NamespacedRole { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the Role */ + name: string; +} +export interface Response$readRbacAuthorizationV1NamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; +} +export interface Parameter$replaceRbacAuthorizationV1NamespacedRole { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the Role */ + name: string; +} +export type RequestBody$replaceRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1$Role.Content; +export interface Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; +} +export interface Response$replaceRbacAuthorizationV1NamespacedRole$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; +} +export interface Parameter$deleteRbacAuthorizationV1NamespacedRole { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the Role */ + name: string; +} +export type RequestBody$deleteRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteRbacAuthorizationV1NamespacedRole$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchRbacAuthorizationV1NamespacedRole { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the Role */ + name: string; +} +export type RequestBody$patchRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchRbacAuthorizationV1NamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; +} +export interface Response$patchRbacAuthorizationV1NamespacedRole$Status$201 { + "application/json": Schemas.io$k8s$api$rbac$v1$Role; + "application/yaml": Schemas.io$k8s$api$rbac$v1$Role; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$Role; +} +export interface Parameter$listRbacAuthorizationV1RoleBindingForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listRbacAuthorizationV1RoleBindingForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "application/json;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleBindingList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleBindingList; +} +export interface Parameter$listRbacAuthorizationV1RoleForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listRbacAuthorizationV1RoleForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$rbac$v1$RoleList; + "application/yaml": Schemas.io$k8s$api$rbac$v1$RoleList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$rbac$v1$RoleList; + "application/json;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$rbac$v1$RoleList; +} +export interface Parameter$watchRbacAuthorizationV1ClusterRoleBindingList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchRbacAuthorizationV1ClusterRoleBindingList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ClusterRoleBinding */ + name: string; +} +export interface Response$watchRbacAuthorizationV1ClusterRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1ClusterRoleList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchRbacAuthorizationV1ClusterRoleList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1ClusterRole { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ClusterRole */ + name: string; +} +export interface Response$watchRbacAuthorizationV1ClusterRole$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchRbacAuthorizationV1NamespacedRoleBindingList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the RoleBinding */ + name: string; +} +export interface Response$watchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1NamespacedRoleList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchRbacAuthorizationV1NamespacedRoleList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1NamespacedRole { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the Role */ + name: string; +} +export interface Response$watchRbacAuthorizationV1NamespacedRole$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1RoleBindingListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchRbacAuthorizationV1RoleBindingListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchRbacAuthorizationV1RoleListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchRbacAuthorizationV1RoleListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getResourceAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getResourceV1alpha2APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listResourceV1alpha2NamespacedPodSchedulingContext { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/json;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; +} +export interface Parameter$createResourceV1alpha2NamespacedPodSchedulingContext { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createResourceV1alpha2NamespacedPodSchedulingContext = RequestBodies.io$k8s$api$resource$v1alpha2$PodSchedulingContext.Content; +export interface Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readResourceV1alpha2NamespacedPodSchedulingContext { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PodSchedulingContext */ + name: string; +} +export interface Response$readResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContext { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PodSchedulingContext */ + name: string; +} +export type RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContext = RequestBodies.io$k8s$api$resource$v1alpha2$PodSchedulingContext.Content; +export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$deleteResourceV1alpha2NamespacedPodSchedulingContext { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the PodSchedulingContext */ + name: string; +} +export type RequestBody$deleteResourceV1alpha2NamespacedPodSchedulingContext = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$patchResourceV1alpha2NamespacedPodSchedulingContext { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PodSchedulingContext */ + name: string; +} +export type RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContext = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$readResourceV1alpha2NamespacedPodSchedulingContextStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PodSchedulingContext */ + name: string; +} +export interface Response$readResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the PodSchedulingContext */ + name: string; +} +export type RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus = RequestBodies.io$k8s$api$resource$v1alpha2$PodSchedulingContext.Content; +export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$patchResourceV1alpha2NamespacedPodSchedulingContextStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the PodSchedulingContext */ + name: string; +} +export type RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContextStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; +} +export interface Parameter$listResourceV1alpha2NamespacedResourceClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listResourceV1alpha2NamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/json;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; +} +export interface Parameter$createResourceV1alpha2NamespacedResourceClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createResourceV1alpha2NamespacedResourceClaim = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaim.Content; +export interface Response$createResourceV1alpha2NamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Response$createResourceV1alpha2NamespacedResourceClaim$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Response$createResourceV1alpha2NamespacedResourceClaim$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$deleteResourceV1alpha2CollectionNamespacedResourceClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteResourceV1alpha2CollectionNamespacedResourceClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2CollectionNamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readResourceV1alpha2NamespacedResourceClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ResourceClaim */ + name: string; +} +export interface Response$readResourceV1alpha2NamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ResourceClaim */ + name: string; +} +export type RequestBody$replaceResourceV1alpha2NamespacedResourceClaim = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaim.Content; +export interface Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$deleteResourceV1alpha2NamespacedResourceClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ResourceClaim */ + name: string; +} +export type RequestBody$deleteResourceV1alpha2NamespacedResourceClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$patchResourceV1alpha2NamespacedResourceClaim { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ResourceClaim */ + name: string; +} +export type RequestBody$patchResourceV1alpha2NamespacedResourceClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchResourceV1alpha2NamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Response$patchResourceV1alpha2NamespacedResourceClaim$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$readResourceV1alpha2NamespacedResourceClaimStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ResourceClaim */ + name: string; +} +export interface Response$readResourceV1alpha2NamespacedResourceClaimStatus$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaimStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ResourceClaim */ + name: string; +} +export type RequestBody$replaceResourceV1alpha2NamespacedResourceClaimStatus = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaim.Content; +export interface Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$patchResourceV1alpha2NamespacedResourceClaimStatus { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ResourceClaim */ + name: string; +} +export type RequestBody$patchResourceV1alpha2NamespacedResourceClaimStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; +} +export interface Parameter$listResourceV1alpha2NamespacedResourceClaimTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/json;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; +} +export interface Parameter$createResourceV1alpha2NamespacedResourceClaimTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createResourceV1alpha2NamespacedResourceClaimTemplate = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate.Content; +export interface Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Parameter$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readResourceV1alpha2NamespacedResourceClaimTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ResourceClaimTemplate */ + name: string; +} +export interface Response$readResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaimTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ResourceClaimTemplate */ + name: string; +} +export type RequestBody$replaceResourceV1alpha2NamespacedResourceClaimTemplate = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate.Content; +export interface Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Parameter$deleteResourceV1alpha2NamespacedResourceClaimTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ResourceClaimTemplate */ + name: string; +} +export type RequestBody$deleteResourceV1alpha2NamespacedResourceClaimTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Parameter$patchResourceV1alpha2NamespacedResourceClaimTemplate { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ResourceClaimTemplate */ + name: string; +} +export type RequestBody$patchResourceV1alpha2NamespacedResourceClaimTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; +} +export interface Parameter$listResourceV1alpha2PodSchedulingContextForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listResourceV1alpha2PodSchedulingContextForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/json;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContextList; +} +export interface Parameter$listResourceV1alpha2ResourceClaimForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listResourceV1alpha2ResourceClaimForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/json;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimList; +} +export interface Parameter$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/json;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplateList; +} +export interface Parameter$listResourceV1alpha2ResourceClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listResourceV1alpha2ResourceClass$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClassList; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClassList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClassList; + "application/json;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClassList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$resource$v1alpha2$ResourceClassList; +} +export interface Parameter$createResourceV1alpha2ResourceClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createResourceV1alpha2ResourceClass = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClass.Content; +export interface Response$createResourceV1alpha2ResourceClass$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Response$createResourceV1alpha2ResourceClass$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Response$createResourceV1alpha2ResourceClass$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Parameter$deleteResourceV1alpha2CollectionResourceClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteResourceV1alpha2CollectionResourceClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2CollectionResourceClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readResourceV1alpha2ResourceClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the ResourceClass */ + name: string; +} +export interface Response$readResourceV1alpha2ResourceClass$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Parameter$replaceResourceV1alpha2ResourceClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the ResourceClass */ + name: string; +} +export type RequestBody$replaceResourceV1alpha2ResourceClass = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClass.Content; +export interface Response$replaceResourceV1alpha2ResourceClass$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Response$replaceResourceV1alpha2ResourceClass$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Parameter$deleteResourceV1alpha2ResourceClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the ResourceClass */ + name: string; +} +export type RequestBody$deleteResourceV1alpha2ResourceClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteResourceV1alpha2ResourceClass$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Response$deleteResourceV1alpha2ResourceClass$Status$202 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Parameter$patchResourceV1alpha2ResourceClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the ResourceClass */ + name: string; +} +export type RequestBody$patchResourceV1alpha2ResourceClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchResourceV1alpha2ResourceClass$Status$200 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Response$patchResourceV1alpha2ResourceClass$Status$201 { + "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/yaml": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; +} +export interface Parameter$watchResourceV1alpha2NamespacedPodSchedulingContextList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchResourceV1alpha2NamespacedPodSchedulingContextList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2NamespacedPodSchedulingContext { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PodSchedulingContext */ + name: string; +} +export interface Response$watchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2NamespacedResourceClaimList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchResourceV1alpha2NamespacedResourceClaimList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2NamespacedResourceClaim { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ResourceClaim */ + name: string; +} +export interface Response$watchResourceV1alpha2NamespacedResourceClaim$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2NamespacedResourceClaimTemplateList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchResourceV1alpha2NamespacedResourceClaimTemplateList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2NamespacedResourceClaimTemplate { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ResourceClaimTemplate */ + name: string; +} +export interface Response$watchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2ResourceClaimListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchResourceV1alpha2ResourceClaimListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2ResourceClassList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchResourceV1alpha2ResourceClassList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchResourceV1alpha2ResourceClass { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the ResourceClass */ + name: string; +} +export interface Response$watchResourceV1alpha2ResourceClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getSchedulingAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getSchedulingV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listSchedulingV1PriorityClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listSchedulingV1PriorityClass$Status$200 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClassList; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClassList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClassList; + "application/json;stream=watch": Schemas.io$k8s$api$scheduling$v1$PriorityClassList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$scheduling$v1$PriorityClassList; +} +export interface Parameter$createSchedulingV1PriorityClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createSchedulingV1PriorityClass = RequestBodies.io$k8s$api$scheduling$v1$PriorityClass.Content; +export interface Response$createSchedulingV1PriorityClass$Status$200 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Response$createSchedulingV1PriorityClass$Status$201 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Response$createSchedulingV1PriorityClass$Status$202 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Parameter$deleteSchedulingV1CollectionPriorityClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteSchedulingV1CollectionPriorityClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteSchedulingV1CollectionPriorityClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readSchedulingV1PriorityClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the PriorityClass */ + name: string; +} +export interface Response$readSchedulingV1PriorityClass$Status$200 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Parameter$replaceSchedulingV1PriorityClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Response$replaceSchedulingV1PriorityClass$Status$201 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Parameter$deleteSchedulingV1PriorityClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteSchedulingV1PriorityClass$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchSchedulingV1PriorityClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Response$patchSchedulingV1PriorityClass$Status$201 { + "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/yaml": Schemas.io$k8s$api$scheduling$v1$PriorityClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$scheduling$v1$PriorityClass; +} +export interface Parameter$watchSchedulingV1PriorityClassList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchSchedulingV1PriorityClassList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchSchedulingV1PriorityClass { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the PriorityClass */ + name: string; +} +export interface Response$watchSchedulingV1PriorityClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Response$getStorageAPIGroup$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIGroup; +} +export interface Response$getStorageV1APIResources$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$APIResourceList; +} +export interface Parameter$listStorageV1CSIDriver { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listStorageV1CSIDriver$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriverList; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriverList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriverList; + "application/json;stream=watch": Schemas.io$k8s$api$storage$v1$CSIDriverList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$storage$v1$CSIDriverList; +} +export interface Parameter$createStorageV1CSIDriver { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createStorageV1CSIDriver = RequestBodies.io$k8s$api$storage$v1$CSIDriver.Content; +export interface Response$createStorageV1CSIDriver$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Response$createStorageV1CSIDriver$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Response$createStorageV1CSIDriver$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Parameter$deleteStorageV1CollectionCSIDriver { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteStorageV1CollectionCSIDriver = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteStorageV1CollectionCSIDriver$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readStorageV1CSIDriver { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CSIDriver */ + name: string; +} +export interface Response$readStorageV1CSIDriver$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Parameter$replaceStorageV1CSIDriver { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Response$replaceStorageV1CSIDriver$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Parameter$deleteStorageV1CSIDriver { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Response$deleteStorageV1CSIDriver$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Parameter$patchStorageV1CSIDriver { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Response$patchStorageV1CSIDriver$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIDriver; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIDriver; +} +export interface Parameter$listStorageV1CSINode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listStorageV1CSINode$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINodeList; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINodeList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINodeList; + "application/json;stream=watch": Schemas.io$k8s$api$storage$v1$CSINodeList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$storage$v1$CSINodeList; +} +export interface Parameter$createStorageV1CSINode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createStorageV1CSINode = RequestBodies.io$k8s$api$storage$v1$CSINode.Content; +export interface Response$createStorageV1CSINode$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Response$createStorageV1CSINode$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Response$createStorageV1CSINode$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Parameter$deleteStorageV1CollectionCSINode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteStorageV1CollectionCSINode = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteStorageV1CollectionCSINode$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readStorageV1CSINode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CSINode */ + name: string; +} +export interface Response$readStorageV1CSINode$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Parameter$replaceStorageV1CSINode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Response$replaceStorageV1CSINode$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Parameter$deleteStorageV1CSINode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Response$deleteStorageV1CSINode$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Parameter$patchStorageV1CSINode { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Response$patchStorageV1CSINode$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSINode; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSINode; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSINode; +} +export interface Parameter$listStorageV1CSIStorageCapacityForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listStorageV1CSIStorageCapacityForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/json;stream=watch": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; +} +export interface Parameter$listStorageV1NamespacedCSIStorageCapacity { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listStorageV1NamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/json;stream=watch": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$storage$v1$CSIStorageCapacityList; +} +export interface Parameter$createStorageV1NamespacedCSIStorageCapacity { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createStorageV1NamespacedCSIStorageCapacity = RequestBodies.io$k8s$api$storage$v1$CSIStorageCapacity.Content; +export interface Response$createStorageV1NamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Response$createStorageV1NamespacedCSIStorageCapacity$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Response$createStorageV1NamespacedCSIStorageCapacity$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Parameter$deleteStorageV1CollectionNamespacedCSIStorageCapacity { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteStorageV1CollectionNamespacedCSIStorageCapacity = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteStorageV1CollectionNamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readStorageV1NamespacedCSIStorageCapacity { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the CSIStorageCapacity */ + name: string; +} +export interface Response$readStorageV1NamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Parameter$replaceStorageV1NamespacedCSIStorageCapacity { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; + /** name of the CSIStorageCapacity */ + name: string; +} +export type RequestBody$replaceStorageV1NamespacedCSIStorageCapacity = RequestBodies.io$k8s$api$storage$v1$CSIStorageCapacity.Content; +export interface Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Parameter$deleteStorageV1NamespacedCSIStorageCapacity { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** name of the CSIStorageCapacity */ + name: string; +} +export type RequestBody$deleteStorageV1NamespacedCSIStorageCapacity = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$202 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$patchStorageV1NamespacedCSIStorageCapacity { + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** name of the CSIStorageCapacity */ + name: string; +} +export type RequestBody$patchStorageV1NamespacedCSIStorageCapacity = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; +export interface Response$patchStorageV1NamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Response$patchStorageV1NamespacedCSIStorageCapacity$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/yaml": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; +} +export interface Parameter$listStorageV1StorageClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listStorageV1StorageClass$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClassList; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClassList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClassList; + "application/json;stream=watch": Schemas.io$k8s$api$storage$v1$StorageClassList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$storage$v1$StorageClassList; +} +export interface Parameter$createStorageV1StorageClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createStorageV1StorageClass = RequestBodies.io$k8s$api$storage$v1$StorageClass.Content; +export interface Response$createStorageV1StorageClass$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Response$createStorageV1StorageClass$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Response$createStorageV1StorageClass$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Parameter$deleteStorageV1CollectionStorageClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteStorageV1CollectionStorageClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteStorageV1CollectionStorageClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readStorageV1StorageClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the StorageClass */ + name: string; +} +export interface Response$readStorageV1StorageClass$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Parameter$replaceStorageV1StorageClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Response$replaceStorageV1StorageClass$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Parameter$deleteStorageV1StorageClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Response$deleteStorageV1StorageClass$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Parameter$patchStorageV1StorageClass { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Response$patchStorageV1StorageClass$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/yaml": Schemas.io$k8s$api$storage$v1$StorageClass; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$StorageClass; +} +export interface Parameter$listStorageV1VolumeAttachment { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$listStorageV1VolumeAttachment$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachmentList; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachmentList; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachmentList; + "application/json;stream=watch": Schemas.io$k8s$api$storage$v1$VolumeAttachmentList; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$storage$v1$VolumeAttachmentList; +} +export interface Parameter$createStorageV1VolumeAttachment { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: string; +} +export type RequestBody$createStorageV1VolumeAttachment = RequestBodies.io$k8s$api$storage$v1$VolumeAttachment.Content; +export interface Response$createStorageV1VolumeAttachment$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Response$createStorageV1VolumeAttachment$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Response$createStorageV1VolumeAttachment$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$deleteStorageV1CollectionVolumeAttachment { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; +} +export type RequestBody$deleteStorageV1CollectionVolumeAttachment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; +export interface Response$deleteStorageV1CollectionVolumeAttachment$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; +} +export interface Parameter$readStorageV1VolumeAttachment { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the VolumeAttachment */ + name: string; +} +export interface Response$readStorageV1VolumeAttachment$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$replaceStorageV1VolumeAttachment { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Response$replaceStorageV1VolumeAttachment$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$deleteStorageV1VolumeAttachment { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. */ + gracePeriodSeconds?: Parameters.gracePeriodSeconds$$K5HaBOS; + /** Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. */ + orphanDependents?: Parameters.orphanDependents$uRB25kX5; + /** 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?: Parameters.propagationPolicy$6jk3prlO; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Response$deleteStorageV1VolumeAttachment$Status$202 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$patchStorageV1VolumeAttachment { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Response$patchStorageV1VolumeAttachment$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$readStorageV1VolumeAttachmentStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** name of the VolumeAttachment */ + name: string; +} +export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$replaceStorageV1VolumeAttachmentStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. */ + fieldManager?: Parameters.fieldManager$Qy4HdaTW; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Response$replaceStorageV1VolumeAttachmentStatus$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$patchStorageV1VolumeAttachmentStatus { + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ + dryRun?: string; + /** fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). */ + fieldManager?: Parameters.fieldManager$7c6nTn1T; + /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ + fieldValidation?: 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?: Parameters.force$tOGGb0Yi; + /** 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 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Response$patchStorageV1VolumeAttachmentStatus$Status$201 { + "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/yaml": Schemas.io$k8s$api$storage$v1$VolumeAttachment; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; +} +export interface Parameter$watchStorageV1CSIDriverList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchStorageV1CSIDriverList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1CSIDriver { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the CSIDriver */ + name: string; +} +export interface Response$watchStorageV1CSIDriver$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1CSINodeList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchStorageV1CSINodeList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1CSINode { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the CSINode */ + name: string; +} +export interface Response$watchStorageV1CSINode$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1CSIStorageCapacityListForAllNamespaces { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchStorageV1CSIStorageCapacityListForAllNamespaces$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1NamespacedCSIStorageCapacityList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchStorageV1NamespacedCSIStorageCapacityList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1NamespacedCSIStorageCapacity { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the CSIStorageCapacity */ + name: string; +} +export interface Response$watchStorageV1NamespacedCSIStorageCapacity$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1StorageClassList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchStorageV1StorageClassList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1StorageClass { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the StorageClass */ + name: string; +} +export interface Response$watchStorageV1StorageClass$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1VolumeAttachmentList { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchStorageV1VolumeAttachmentList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchStorageV1VolumeAttachment { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; + /** name of the VolumeAttachment */ + name: string; +} +export interface Response$watchStorageV1VolumeAttachment$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$logFileHandler { + /** path to the log */ + logpath: Parameters.logpath$Noq7euwC; +} +export interface Response$getServiceAccountIssuerOpenIDKeyset$Status$200 { + "application/jwk-set+json": string; +} +export interface Response$getCodeVersion$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$version$Info; +} +export type ResponseContentType$getServiceAccountIssuerOpenIDConfiguration = keyof Response$getServiceAccountIssuerOpenIDConfiguration$Status$200; +export type ResponseContentType$getCoreAPIVersions = keyof Response$getCoreAPIVersions$Status$200; +export interface Params$getCoreAPIVersions { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getCoreV1APIResources = keyof Response$getCoreV1APIResources$Status$200; +export interface Params$getCoreV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listCoreV1ComponentStatus = keyof Response$listCoreV1ComponentStatus$Status$200; +export interface Params$listCoreV1ComponentStatus { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1ComponentStatus; +} +export type ResponseContentType$readCoreV1ComponentStatus = keyof Response$readCoreV1ComponentStatus$Status$200; +export interface Params$readCoreV1ComponentStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1ComponentStatus; +} +export type ResponseContentType$listCoreV1ConfigMapForAllNamespaces = keyof Response$listCoreV1ConfigMapForAllNamespaces$Status$200; +export interface Params$listCoreV1ConfigMapForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1ConfigMapForAllNamespaces; +} +export type ResponseContentType$listCoreV1EndpointsForAllNamespaces = keyof Response$listCoreV1EndpointsForAllNamespaces$Status$200; +export interface Params$listCoreV1EndpointsForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1EndpointsForAllNamespaces; +} +export type ResponseContentType$listCoreV1EventForAllNamespaces = keyof Response$listCoreV1EventForAllNamespaces$Status$200; +export interface Params$listCoreV1EventForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1EventForAllNamespaces; +} +export type ResponseContentType$listCoreV1LimitRangeForAllNamespaces = keyof Response$listCoreV1LimitRangeForAllNamespaces$Status$200; +export interface Params$listCoreV1LimitRangeForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1LimitRangeForAllNamespaces; +} +export type ResponseContentType$listCoreV1Namespace = keyof Response$listCoreV1Namespace$Status$200; +export interface Params$listCoreV1Namespace { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1Namespace; +} +export type RequestContentType$createCoreV1Namespace = keyof RequestBody$createCoreV1Namespace; +export type ResponseContentType$createCoreV1Namespace = keyof Response$createCoreV1Namespace$Status$200 | keyof Response$createCoreV1Namespace$Status$201 | keyof Response$createCoreV1Namespace$Status$202; +export interface Params$createCoreV1Namespace { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1Namespace; + requestBody: RequestBody$createCoreV1Namespace["*/*"]; +} +export type RequestContentType$createCoreV1NamespacedBinding = keyof RequestBody$createCoreV1NamespacedBinding; +export type ResponseContentType$createCoreV1NamespacedBinding = keyof Response$createCoreV1NamespacedBinding$Status$200 | keyof Response$createCoreV1NamespacedBinding$Status$201 | keyof Response$createCoreV1NamespacedBinding$Status$202; +export interface Params$createCoreV1NamespacedBinding { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedBinding; + requestBody: RequestBody$createCoreV1NamespacedBinding["*/*"]; +} +export type ResponseContentType$listCoreV1NamespacedConfigMap = keyof Response$listCoreV1NamespacedConfigMap$Status$200; +export interface Params$listCoreV1NamespacedConfigMap { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedConfigMap; +} +export type RequestContentType$createCoreV1NamespacedConfigMap = keyof RequestBody$createCoreV1NamespacedConfigMap; +export type ResponseContentType$createCoreV1NamespacedConfigMap = keyof Response$createCoreV1NamespacedConfigMap$Status$200 | keyof Response$createCoreV1NamespacedConfigMap$Status$201 | keyof Response$createCoreV1NamespacedConfigMap$Status$202; +export interface Params$createCoreV1NamespacedConfigMap { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedConfigMap; + requestBody: RequestBody$createCoreV1NamespacedConfigMap["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedConfigMap = keyof RequestBody$deleteCoreV1CollectionNamespacedConfigMap; +export type ResponseContentType$deleteCoreV1CollectionNamespacedConfigMap = keyof Response$deleteCoreV1CollectionNamespacedConfigMap$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedConfigMap { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedConfigMap; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedConfigMap["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedConfigMap = keyof Response$readCoreV1NamespacedConfigMap$Status$200; +export interface Params$readCoreV1NamespacedConfigMap { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedConfigMap; +} +export type RequestContentType$replaceCoreV1NamespacedConfigMap = keyof RequestBody$replaceCoreV1NamespacedConfigMap; +export type ResponseContentType$replaceCoreV1NamespacedConfigMap = keyof Response$replaceCoreV1NamespacedConfigMap$Status$200 | keyof Response$replaceCoreV1NamespacedConfigMap$Status$201; +export interface Params$replaceCoreV1NamespacedConfigMap { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedConfigMap; + requestBody: RequestBody$replaceCoreV1NamespacedConfigMap["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedConfigMap = keyof RequestBody$deleteCoreV1NamespacedConfigMap; +export type ResponseContentType$deleteCoreV1NamespacedConfigMap = keyof Response$deleteCoreV1NamespacedConfigMap$Status$200 | keyof Response$deleteCoreV1NamespacedConfigMap$Status$202; +export interface Params$deleteCoreV1NamespacedConfigMap { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedConfigMap; + requestBody: RequestBody$deleteCoreV1NamespacedConfigMap["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedConfigMap = keyof RequestBody$patchCoreV1NamespacedConfigMap; +export type ResponseContentType$patchCoreV1NamespacedConfigMap = keyof Response$patchCoreV1NamespacedConfigMap$Status$200 | keyof Response$patchCoreV1NamespacedConfigMap$Status$201; +export interface Params$patchCoreV1NamespacedConfigMap { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedConfigMap; + requestBody: RequestBody$patchCoreV1NamespacedConfigMap[T]; +} +export type ResponseContentType$listCoreV1NamespacedEndpoints = keyof Response$listCoreV1NamespacedEndpoints$Status$200; +export interface Params$listCoreV1NamespacedEndpoints { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedEndpoints; +} +export type RequestContentType$createCoreV1NamespacedEndpoints = keyof RequestBody$createCoreV1NamespacedEndpoints; +export type ResponseContentType$createCoreV1NamespacedEndpoints = keyof Response$createCoreV1NamespacedEndpoints$Status$200 | keyof Response$createCoreV1NamespacedEndpoints$Status$201 | keyof Response$createCoreV1NamespacedEndpoints$Status$202; +export interface Params$createCoreV1NamespacedEndpoints { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedEndpoints; + requestBody: RequestBody$createCoreV1NamespacedEndpoints["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedEndpoints = keyof RequestBody$deleteCoreV1CollectionNamespacedEndpoints; +export type ResponseContentType$deleteCoreV1CollectionNamespacedEndpoints = keyof Response$deleteCoreV1CollectionNamespacedEndpoints$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedEndpoints { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedEndpoints; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedEndpoints["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedEndpoints = keyof Response$readCoreV1NamespacedEndpoints$Status$200; +export interface Params$readCoreV1NamespacedEndpoints { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedEndpoints; +} +export type RequestContentType$replaceCoreV1NamespacedEndpoints = keyof RequestBody$replaceCoreV1NamespacedEndpoints; +export type ResponseContentType$replaceCoreV1NamespacedEndpoints = keyof Response$replaceCoreV1NamespacedEndpoints$Status$200 | keyof Response$replaceCoreV1NamespacedEndpoints$Status$201; +export interface Params$replaceCoreV1NamespacedEndpoints { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedEndpoints; + requestBody: RequestBody$replaceCoreV1NamespacedEndpoints["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedEndpoints = keyof RequestBody$deleteCoreV1NamespacedEndpoints; +export type ResponseContentType$deleteCoreV1NamespacedEndpoints = keyof Response$deleteCoreV1NamespacedEndpoints$Status$200 | keyof Response$deleteCoreV1NamespacedEndpoints$Status$202; +export interface Params$deleteCoreV1NamespacedEndpoints { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedEndpoints; + requestBody: RequestBody$deleteCoreV1NamespacedEndpoints["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedEndpoints = keyof RequestBody$patchCoreV1NamespacedEndpoints; +export type ResponseContentType$patchCoreV1NamespacedEndpoints = keyof Response$patchCoreV1NamespacedEndpoints$Status$200 | keyof Response$patchCoreV1NamespacedEndpoints$Status$201; +export interface Params$patchCoreV1NamespacedEndpoints { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedEndpoints; + requestBody: RequestBody$patchCoreV1NamespacedEndpoints[T]; +} +export type ResponseContentType$listCoreV1NamespacedEvent = keyof Response$listCoreV1NamespacedEvent$Status$200; +export interface Params$listCoreV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedEvent; +} +export type RequestContentType$createCoreV1NamespacedEvent = keyof RequestBody$createCoreV1NamespacedEvent; +export type ResponseContentType$createCoreV1NamespacedEvent = keyof Response$createCoreV1NamespacedEvent$Status$200 | keyof Response$createCoreV1NamespacedEvent$Status$201 | keyof Response$createCoreV1NamespacedEvent$Status$202; +export interface Params$createCoreV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedEvent; + requestBody: RequestBody$createCoreV1NamespacedEvent["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedEvent = keyof RequestBody$deleteCoreV1CollectionNamespacedEvent; +export type ResponseContentType$deleteCoreV1CollectionNamespacedEvent = keyof Response$deleteCoreV1CollectionNamespacedEvent$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedEvent; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedEvent["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedEvent = keyof Response$readCoreV1NamespacedEvent$Status$200; +export interface Params$readCoreV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedEvent; +} +export type RequestContentType$replaceCoreV1NamespacedEvent = keyof RequestBody$replaceCoreV1NamespacedEvent; +export type ResponseContentType$replaceCoreV1NamespacedEvent = keyof Response$replaceCoreV1NamespacedEvent$Status$200 | keyof Response$replaceCoreV1NamespacedEvent$Status$201; +export interface Params$replaceCoreV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedEvent; + requestBody: RequestBody$replaceCoreV1NamespacedEvent["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedEvent = keyof RequestBody$deleteCoreV1NamespacedEvent; +export type ResponseContentType$deleteCoreV1NamespacedEvent = keyof Response$deleteCoreV1NamespacedEvent$Status$200 | keyof Response$deleteCoreV1NamespacedEvent$Status$202; +export interface Params$deleteCoreV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedEvent; + requestBody: RequestBody$deleteCoreV1NamespacedEvent["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedEvent = keyof RequestBody$patchCoreV1NamespacedEvent; +export type ResponseContentType$patchCoreV1NamespacedEvent = keyof Response$patchCoreV1NamespacedEvent$Status$200 | keyof Response$patchCoreV1NamespacedEvent$Status$201; +export interface Params$patchCoreV1NamespacedEvent { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedEvent; + requestBody: RequestBody$patchCoreV1NamespacedEvent[T]; +} +export type ResponseContentType$listCoreV1NamespacedLimitRange = keyof Response$listCoreV1NamespacedLimitRange$Status$200; +export interface Params$listCoreV1NamespacedLimitRange { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedLimitRange; +} +export type RequestContentType$createCoreV1NamespacedLimitRange = keyof RequestBody$createCoreV1NamespacedLimitRange; +export type ResponseContentType$createCoreV1NamespacedLimitRange = keyof Response$createCoreV1NamespacedLimitRange$Status$200 | keyof Response$createCoreV1NamespacedLimitRange$Status$201 | keyof Response$createCoreV1NamespacedLimitRange$Status$202; +export interface Params$createCoreV1NamespacedLimitRange { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedLimitRange; + requestBody: RequestBody$createCoreV1NamespacedLimitRange["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedLimitRange = keyof RequestBody$deleteCoreV1CollectionNamespacedLimitRange; +export type ResponseContentType$deleteCoreV1CollectionNamespacedLimitRange = keyof Response$deleteCoreV1CollectionNamespacedLimitRange$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedLimitRange { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedLimitRange; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedLimitRange["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedLimitRange = keyof Response$readCoreV1NamespacedLimitRange$Status$200; +export interface Params$readCoreV1NamespacedLimitRange { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedLimitRange; +} +export type RequestContentType$replaceCoreV1NamespacedLimitRange = keyof RequestBody$replaceCoreV1NamespacedLimitRange; +export type ResponseContentType$replaceCoreV1NamespacedLimitRange = keyof Response$replaceCoreV1NamespacedLimitRange$Status$200 | keyof Response$replaceCoreV1NamespacedLimitRange$Status$201; +export interface Params$replaceCoreV1NamespacedLimitRange { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedLimitRange; + requestBody: RequestBody$replaceCoreV1NamespacedLimitRange["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedLimitRange = keyof RequestBody$deleteCoreV1NamespacedLimitRange; +export type ResponseContentType$deleteCoreV1NamespacedLimitRange = keyof Response$deleteCoreV1NamespacedLimitRange$Status$200 | keyof Response$deleteCoreV1NamespacedLimitRange$Status$202; +export interface Params$deleteCoreV1NamespacedLimitRange { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedLimitRange; + requestBody: RequestBody$deleteCoreV1NamespacedLimitRange["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedLimitRange = keyof RequestBody$patchCoreV1NamespacedLimitRange; +export type ResponseContentType$patchCoreV1NamespacedLimitRange = keyof Response$patchCoreV1NamespacedLimitRange$Status$200 | keyof Response$patchCoreV1NamespacedLimitRange$Status$201; +export interface Params$patchCoreV1NamespacedLimitRange { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedLimitRange; + requestBody: RequestBody$patchCoreV1NamespacedLimitRange[T]; +} +export type ResponseContentType$listCoreV1NamespacedPersistentVolumeClaim = keyof Response$listCoreV1NamespacedPersistentVolumeClaim$Status$200; +export interface Params$listCoreV1NamespacedPersistentVolumeClaim { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedPersistentVolumeClaim; +} +export type RequestContentType$createCoreV1NamespacedPersistentVolumeClaim = keyof RequestBody$createCoreV1NamespacedPersistentVolumeClaim; +export type ResponseContentType$createCoreV1NamespacedPersistentVolumeClaim = keyof Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 | keyof Response$createCoreV1NamespacedPersistentVolumeClaim$Status$201 | keyof Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202; +export interface Params$createCoreV1NamespacedPersistentVolumeClaim { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedPersistentVolumeClaim; + requestBody: RequestBody$createCoreV1NamespacedPersistentVolumeClaim["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedPersistentVolumeClaim = keyof RequestBody$deleteCoreV1CollectionNamespacedPersistentVolumeClaim; +export type ResponseContentType$deleteCoreV1CollectionNamespacedPersistentVolumeClaim = keyof Response$deleteCoreV1CollectionNamespacedPersistentVolumeClaim$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedPersistentVolumeClaim { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedPersistentVolumeClaim; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedPersistentVolumeClaim["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedPersistentVolumeClaim = keyof Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200; +export interface Params$readCoreV1NamespacedPersistentVolumeClaim { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedPersistentVolumeClaim; +} +export type RequestContentType$replaceCoreV1NamespacedPersistentVolumeClaim = keyof RequestBody$replaceCoreV1NamespacedPersistentVolumeClaim; +export type ResponseContentType$replaceCoreV1NamespacedPersistentVolumeClaim = keyof Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 | keyof Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$201; +export interface Params$replaceCoreV1NamespacedPersistentVolumeClaim { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedPersistentVolumeClaim; + requestBody: RequestBody$replaceCoreV1NamespacedPersistentVolumeClaim["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedPersistentVolumeClaim = keyof RequestBody$deleteCoreV1NamespacedPersistentVolumeClaim; +export type ResponseContentType$deleteCoreV1NamespacedPersistentVolumeClaim = keyof Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 | keyof Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202; +export interface Params$deleteCoreV1NamespacedPersistentVolumeClaim { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedPersistentVolumeClaim; + requestBody: RequestBody$deleteCoreV1NamespacedPersistentVolumeClaim["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedPersistentVolumeClaim = keyof RequestBody$patchCoreV1NamespacedPersistentVolumeClaim; +export type ResponseContentType$patchCoreV1NamespacedPersistentVolumeClaim = keyof Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 | keyof Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$201; +export interface Params$patchCoreV1NamespacedPersistentVolumeClaim { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedPersistentVolumeClaim; + requestBody: RequestBody$patchCoreV1NamespacedPersistentVolumeClaim[T]; +} +export type ResponseContentType$readCoreV1NamespacedPersistentVolumeClaimStatus = keyof Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status$200; +export interface Params$readCoreV1NamespacedPersistentVolumeClaimStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedPersistentVolumeClaimStatus; +} +export type RequestContentType$replaceCoreV1NamespacedPersistentVolumeClaimStatus = keyof RequestBody$replaceCoreV1NamespacedPersistentVolumeClaimStatus; +export type ResponseContentType$replaceCoreV1NamespacedPersistentVolumeClaimStatus = keyof Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | keyof Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$201; +export interface Params$replaceCoreV1NamespacedPersistentVolumeClaimStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedPersistentVolumeClaimStatus; + requestBody: RequestBody$replaceCoreV1NamespacedPersistentVolumeClaimStatus["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedPersistentVolumeClaimStatus = keyof RequestBody$patchCoreV1NamespacedPersistentVolumeClaimStatus; +export type ResponseContentType$patchCoreV1NamespacedPersistentVolumeClaimStatus = keyof Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | keyof Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$201; +export interface Params$patchCoreV1NamespacedPersistentVolumeClaimStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedPersistentVolumeClaimStatus; + requestBody: RequestBody$patchCoreV1NamespacedPersistentVolumeClaimStatus[T]; +} +export type ResponseContentType$listCoreV1NamespacedPod = keyof Response$listCoreV1NamespacedPod$Status$200; +export interface Params$listCoreV1NamespacedPod { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedPod; +} +export type RequestContentType$createCoreV1NamespacedPod = keyof RequestBody$createCoreV1NamespacedPod; +export type ResponseContentType$createCoreV1NamespacedPod = keyof Response$createCoreV1NamespacedPod$Status$200 | keyof Response$createCoreV1NamespacedPod$Status$201 | keyof Response$createCoreV1NamespacedPod$Status$202; +export interface Params$createCoreV1NamespacedPod { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedPod; + requestBody: RequestBody$createCoreV1NamespacedPod["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedPod = keyof RequestBody$deleteCoreV1CollectionNamespacedPod; +export type ResponseContentType$deleteCoreV1CollectionNamespacedPod = keyof Response$deleteCoreV1CollectionNamespacedPod$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedPod { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedPod; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedPod["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedPod = keyof Response$readCoreV1NamespacedPod$Status$200; +export interface Params$readCoreV1NamespacedPod { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedPod; +} +export type RequestContentType$replaceCoreV1NamespacedPod = keyof RequestBody$replaceCoreV1NamespacedPod; +export type ResponseContentType$replaceCoreV1NamespacedPod = keyof Response$replaceCoreV1NamespacedPod$Status$200 | keyof Response$replaceCoreV1NamespacedPod$Status$201; +export interface Params$replaceCoreV1NamespacedPod { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedPod; + requestBody: RequestBody$replaceCoreV1NamespacedPod["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedPod = keyof RequestBody$deleteCoreV1NamespacedPod; +export type ResponseContentType$deleteCoreV1NamespacedPod = keyof Response$deleteCoreV1NamespacedPod$Status$200 | keyof Response$deleteCoreV1NamespacedPod$Status$202; +export interface Params$deleteCoreV1NamespacedPod { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedPod; + requestBody: RequestBody$deleteCoreV1NamespacedPod["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedPod = keyof RequestBody$patchCoreV1NamespacedPod; +export type ResponseContentType$patchCoreV1NamespacedPod = keyof Response$patchCoreV1NamespacedPod$Status$200 | keyof Response$patchCoreV1NamespacedPod$Status$201; +export interface Params$patchCoreV1NamespacedPod { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedPod; + requestBody: RequestBody$patchCoreV1NamespacedPod[T]; +} +export type ResponseContentType$connectCoreV1GetNamespacedPodAttach = keyof Response$connectCoreV1GetNamespacedPodAttach$Status$200; +export interface Params$connectCoreV1GetNamespacedPodAttach { + parameter: Parameter$connectCoreV1GetNamespacedPodAttach; +} +export type ResponseContentType$connectCoreV1PostNamespacedPodAttach = keyof Response$connectCoreV1PostNamespacedPodAttach$Status$200; +export interface Params$connectCoreV1PostNamespacedPodAttach { + parameter: Parameter$connectCoreV1PostNamespacedPodAttach; +} +export type RequestContentType$createCoreV1NamespacedPodBinding = keyof RequestBody$createCoreV1NamespacedPodBinding; +export type ResponseContentType$createCoreV1NamespacedPodBinding = keyof Response$createCoreV1NamespacedPodBinding$Status$200 | keyof Response$createCoreV1NamespacedPodBinding$Status$201 | keyof Response$createCoreV1NamespacedPodBinding$Status$202; +export interface Params$createCoreV1NamespacedPodBinding { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedPodBinding; + requestBody: RequestBody$createCoreV1NamespacedPodBinding["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedPodEphemeralcontainers = keyof Response$readCoreV1NamespacedPodEphemeralcontainers$Status$200; +export interface Params$readCoreV1NamespacedPodEphemeralcontainers { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedPodEphemeralcontainers; +} +export type RequestContentType$replaceCoreV1NamespacedPodEphemeralcontainers = keyof RequestBody$replaceCoreV1NamespacedPodEphemeralcontainers; +export type ResponseContentType$replaceCoreV1NamespacedPodEphemeralcontainers = keyof Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$200 | keyof Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$201; +export interface Params$replaceCoreV1NamespacedPodEphemeralcontainers { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedPodEphemeralcontainers; + requestBody: RequestBody$replaceCoreV1NamespacedPodEphemeralcontainers["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedPodEphemeralcontainers = keyof RequestBody$patchCoreV1NamespacedPodEphemeralcontainers; +export type ResponseContentType$patchCoreV1NamespacedPodEphemeralcontainers = keyof Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$200 | keyof Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$201; +export interface Params$patchCoreV1NamespacedPodEphemeralcontainers { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedPodEphemeralcontainers; + requestBody: RequestBody$patchCoreV1NamespacedPodEphemeralcontainers[T]; +} +export type RequestContentType$createCoreV1NamespacedPodEviction = keyof RequestBody$createCoreV1NamespacedPodEviction; +export type ResponseContentType$createCoreV1NamespacedPodEviction = keyof Response$createCoreV1NamespacedPodEviction$Status$200 | keyof Response$createCoreV1NamespacedPodEviction$Status$201 | keyof Response$createCoreV1NamespacedPodEviction$Status$202; +export interface Params$createCoreV1NamespacedPodEviction { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedPodEviction; + requestBody: RequestBody$createCoreV1NamespacedPodEviction["*/*"]; +} +export type ResponseContentType$connectCoreV1GetNamespacedPodExec = keyof Response$connectCoreV1GetNamespacedPodExec$Status$200; +export interface Params$connectCoreV1GetNamespacedPodExec { + parameter: Parameter$connectCoreV1GetNamespacedPodExec; +} +export type ResponseContentType$connectCoreV1PostNamespacedPodExec = keyof Response$connectCoreV1PostNamespacedPodExec$Status$200; +export interface Params$connectCoreV1PostNamespacedPodExec { + parameter: Parameter$connectCoreV1PostNamespacedPodExec; +} +export type ResponseContentType$readCoreV1NamespacedPodLog = keyof Response$readCoreV1NamespacedPodLog$Status$200; +export interface Params$readCoreV1NamespacedPodLog { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedPodLog; +} +export type ResponseContentType$connectCoreV1GetNamespacedPodPortforward = keyof Response$connectCoreV1GetNamespacedPodPortforward$Status$200; +export interface Params$connectCoreV1GetNamespacedPodPortforward { + parameter: Parameter$connectCoreV1GetNamespacedPodPortforward; +} +export type ResponseContentType$connectCoreV1PostNamespacedPodPortforward = keyof Response$connectCoreV1PostNamespacedPodPortforward$Status$200; +export interface Params$connectCoreV1PostNamespacedPodPortforward { + parameter: Parameter$connectCoreV1PostNamespacedPodPortforward; +} +export type ResponseContentType$connectCoreV1GetNamespacedPodProxy = keyof Response$connectCoreV1GetNamespacedPodProxy$Status$200; +export interface Params$connectCoreV1GetNamespacedPodProxy { + parameter: Parameter$connectCoreV1GetNamespacedPodProxy; +} +export type ResponseContentType$connectCoreV1PutNamespacedPodProxy = keyof Response$connectCoreV1PutNamespacedPodProxy$Status$200; +export interface Params$connectCoreV1PutNamespacedPodProxy { + parameter: Parameter$connectCoreV1PutNamespacedPodProxy; +} +export type ResponseContentType$connectCoreV1PostNamespacedPodProxy = keyof Response$connectCoreV1PostNamespacedPodProxy$Status$200; +export interface Params$connectCoreV1PostNamespacedPodProxy { + parameter: Parameter$connectCoreV1PostNamespacedPodProxy; +} +export type ResponseContentType$connectCoreV1DeleteNamespacedPodProxy = keyof Response$connectCoreV1DeleteNamespacedPodProxy$Status$200; +export interface Params$connectCoreV1DeleteNamespacedPodProxy { + parameter: Parameter$connectCoreV1DeleteNamespacedPodProxy; +} +export type ResponseContentType$connectCoreV1OptionsNamespacedPodProxy = keyof Response$connectCoreV1OptionsNamespacedPodProxy$Status$200; +export interface Params$connectCoreV1OptionsNamespacedPodProxy { + parameter: Parameter$connectCoreV1OptionsNamespacedPodProxy; +} +export type ResponseContentType$connectCoreV1HeadNamespacedPodProxy = keyof Response$connectCoreV1HeadNamespacedPodProxy$Status$200; +export interface Params$connectCoreV1HeadNamespacedPodProxy { + parameter: Parameter$connectCoreV1HeadNamespacedPodProxy; +} +export type ResponseContentType$connectCoreV1PatchNamespacedPodProxy = keyof Response$connectCoreV1PatchNamespacedPodProxy$Status$200; +export interface Params$connectCoreV1PatchNamespacedPodProxy { + parameter: Parameter$connectCoreV1PatchNamespacedPodProxy; +} +export type ResponseContentType$connectCoreV1GetNamespacedPodProxyWithPath = keyof Response$connectCoreV1GetNamespacedPodProxyWithPath$Status$200; +export interface Params$connectCoreV1GetNamespacedPodProxyWithPath { + parameter: Parameter$connectCoreV1GetNamespacedPodProxyWithPath; +} +export type ResponseContentType$connectCoreV1PutNamespacedPodProxyWithPath = keyof Response$connectCoreV1PutNamespacedPodProxyWithPath$Status$200; +export interface Params$connectCoreV1PutNamespacedPodProxyWithPath { + parameter: Parameter$connectCoreV1PutNamespacedPodProxyWithPath; +} +export type ResponseContentType$connectCoreV1PostNamespacedPodProxyWithPath = keyof Response$connectCoreV1PostNamespacedPodProxyWithPath$Status$200; +export interface Params$connectCoreV1PostNamespacedPodProxyWithPath { + parameter: Parameter$connectCoreV1PostNamespacedPodProxyWithPath; +} +export type ResponseContentType$connectCoreV1DeleteNamespacedPodProxyWithPath = keyof Response$connectCoreV1DeleteNamespacedPodProxyWithPath$Status$200; +export interface Params$connectCoreV1DeleteNamespacedPodProxyWithPath { + parameter: Parameter$connectCoreV1DeleteNamespacedPodProxyWithPath; +} +export type ResponseContentType$connectCoreV1OptionsNamespacedPodProxyWithPath = keyof Response$connectCoreV1OptionsNamespacedPodProxyWithPath$Status$200; +export interface Params$connectCoreV1OptionsNamespacedPodProxyWithPath { + parameter: Parameter$connectCoreV1OptionsNamespacedPodProxyWithPath; +} +export type ResponseContentType$connectCoreV1HeadNamespacedPodProxyWithPath = keyof Response$connectCoreV1HeadNamespacedPodProxyWithPath$Status$200; +export interface Params$connectCoreV1HeadNamespacedPodProxyWithPath { + parameter: Parameter$connectCoreV1HeadNamespacedPodProxyWithPath; +} +export type ResponseContentType$connectCoreV1PatchNamespacedPodProxyWithPath = keyof Response$connectCoreV1PatchNamespacedPodProxyWithPath$Status$200; +export interface Params$connectCoreV1PatchNamespacedPodProxyWithPath { + parameter: Parameter$connectCoreV1PatchNamespacedPodProxyWithPath; +} +export type ResponseContentType$readCoreV1NamespacedPodStatus = keyof Response$readCoreV1NamespacedPodStatus$Status$200; +export interface Params$readCoreV1NamespacedPodStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedPodStatus; +} +export type RequestContentType$replaceCoreV1NamespacedPodStatus = keyof RequestBody$replaceCoreV1NamespacedPodStatus; +export type ResponseContentType$replaceCoreV1NamespacedPodStatus = keyof Response$replaceCoreV1NamespacedPodStatus$Status$200 | keyof Response$replaceCoreV1NamespacedPodStatus$Status$201; +export interface Params$replaceCoreV1NamespacedPodStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedPodStatus; + requestBody: RequestBody$replaceCoreV1NamespacedPodStatus["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedPodStatus = keyof RequestBody$patchCoreV1NamespacedPodStatus; +export type ResponseContentType$patchCoreV1NamespacedPodStatus = keyof Response$patchCoreV1NamespacedPodStatus$Status$200 | keyof Response$patchCoreV1NamespacedPodStatus$Status$201; +export interface Params$patchCoreV1NamespacedPodStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedPodStatus; + requestBody: RequestBody$patchCoreV1NamespacedPodStatus[T]; +} +export type ResponseContentType$listCoreV1NamespacedPodTemplate = keyof Response$listCoreV1NamespacedPodTemplate$Status$200; +export interface Params$listCoreV1NamespacedPodTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedPodTemplate; +} +export type RequestContentType$createCoreV1NamespacedPodTemplate = keyof RequestBody$createCoreV1NamespacedPodTemplate; +export type ResponseContentType$createCoreV1NamespacedPodTemplate = keyof Response$createCoreV1NamespacedPodTemplate$Status$200 | keyof Response$createCoreV1NamespacedPodTemplate$Status$201 | keyof Response$createCoreV1NamespacedPodTemplate$Status$202; +export interface Params$createCoreV1NamespacedPodTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedPodTemplate; + requestBody: RequestBody$createCoreV1NamespacedPodTemplate["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedPodTemplate = keyof RequestBody$deleteCoreV1CollectionNamespacedPodTemplate; +export type ResponseContentType$deleteCoreV1CollectionNamespacedPodTemplate = keyof Response$deleteCoreV1CollectionNamespacedPodTemplate$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedPodTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedPodTemplate; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedPodTemplate["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedPodTemplate = keyof Response$readCoreV1NamespacedPodTemplate$Status$200; +export interface Params$readCoreV1NamespacedPodTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedPodTemplate; +} +export type RequestContentType$replaceCoreV1NamespacedPodTemplate = keyof RequestBody$replaceCoreV1NamespacedPodTemplate; +export type ResponseContentType$replaceCoreV1NamespacedPodTemplate = keyof Response$replaceCoreV1NamespacedPodTemplate$Status$200 | keyof Response$replaceCoreV1NamespacedPodTemplate$Status$201; +export interface Params$replaceCoreV1NamespacedPodTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedPodTemplate; + requestBody: RequestBody$replaceCoreV1NamespacedPodTemplate["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedPodTemplate = keyof RequestBody$deleteCoreV1NamespacedPodTemplate; +export type ResponseContentType$deleteCoreV1NamespacedPodTemplate = keyof Response$deleteCoreV1NamespacedPodTemplate$Status$200 | keyof Response$deleteCoreV1NamespacedPodTemplate$Status$202; +export interface Params$deleteCoreV1NamespacedPodTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedPodTemplate; + requestBody: RequestBody$deleteCoreV1NamespacedPodTemplate["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedPodTemplate = keyof RequestBody$patchCoreV1NamespacedPodTemplate; +export type ResponseContentType$patchCoreV1NamespacedPodTemplate = keyof Response$patchCoreV1NamespacedPodTemplate$Status$200 | keyof Response$patchCoreV1NamespacedPodTemplate$Status$201; +export interface Params$patchCoreV1NamespacedPodTemplate { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedPodTemplate; + requestBody: RequestBody$patchCoreV1NamespacedPodTemplate[T]; +} +export type ResponseContentType$listCoreV1NamespacedReplicationController = keyof Response$listCoreV1NamespacedReplicationController$Status$200; +export interface Params$listCoreV1NamespacedReplicationController { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedReplicationController; +} +export type RequestContentType$createCoreV1NamespacedReplicationController = keyof RequestBody$createCoreV1NamespacedReplicationController; +export type ResponseContentType$createCoreV1NamespacedReplicationController = keyof Response$createCoreV1NamespacedReplicationController$Status$200 | keyof Response$createCoreV1NamespacedReplicationController$Status$201 | keyof Response$createCoreV1NamespacedReplicationController$Status$202; +export interface Params$createCoreV1NamespacedReplicationController { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedReplicationController; + requestBody: RequestBody$createCoreV1NamespacedReplicationController["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedReplicationController = keyof RequestBody$deleteCoreV1CollectionNamespacedReplicationController; +export type ResponseContentType$deleteCoreV1CollectionNamespacedReplicationController = keyof Response$deleteCoreV1CollectionNamespacedReplicationController$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedReplicationController { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedReplicationController; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedReplicationController["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedReplicationController = keyof Response$readCoreV1NamespacedReplicationController$Status$200; +export interface Params$readCoreV1NamespacedReplicationController { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedReplicationController; +} +export type RequestContentType$replaceCoreV1NamespacedReplicationController = keyof RequestBody$replaceCoreV1NamespacedReplicationController; +export type ResponseContentType$replaceCoreV1NamespacedReplicationController = keyof Response$replaceCoreV1NamespacedReplicationController$Status$200 | keyof Response$replaceCoreV1NamespacedReplicationController$Status$201; +export interface Params$replaceCoreV1NamespacedReplicationController { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedReplicationController; + requestBody: RequestBody$replaceCoreV1NamespacedReplicationController["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedReplicationController = keyof RequestBody$deleteCoreV1NamespacedReplicationController; +export type ResponseContentType$deleteCoreV1NamespacedReplicationController = keyof Response$deleteCoreV1NamespacedReplicationController$Status$200 | keyof Response$deleteCoreV1NamespacedReplicationController$Status$202; +export interface Params$deleteCoreV1NamespacedReplicationController { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedReplicationController; + requestBody: RequestBody$deleteCoreV1NamespacedReplicationController["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedReplicationController = keyof RequestBody$patchCoreV1NamespacedReplicationController; +export type ResponseContentType$patchCoreV1NamespacedReplicationController = keyof Response$patchCoreV1NamespacedReplicationController$Status$200 | keyof Response$patchCoreV1NamespacedReplicationController$Status$201; +export interface Params$patchCoreV1NamespacedReplicationController { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedReplicationController; + requestBody: RequestBody$patchCoreV1NamespacedReplicationController[T]; +} +export type ResponseContentType$readCoreV1NamespacedReplicationControllerScale = keyof Response$readCoreV1NamespacedReplicationControllerScale$Status$200; +export interface Params$readCoreV1NamespacedReplicationControllerScale { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedReplicationControllerScale; +} +export type RequestContentType$replaceCoreV1NamespacedReplicationControllerScale = keyof RequestBody$replaceCoreV1NamespacedReplicationControllerScale; +export type ResponseContentType$replaceCoreV1NamespacedReplicationControllerScale = keyof Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 | keyof Response$replaceCoreV1NamespacedReplicationControllerScale$Status$201; +export interface Params$replaceCoreV1NamespacedReplicationControllerScale { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedReplicationControllerScale; + requestBody: RequestBody$replaceCoreV1NamespacedReplicationControllerScale["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedReplicationControllerScale = keyof RequestBody$patchCoreV1NamespacedReplicationControllerScale; +export type ResponseContentType$patchCoreV1NamespacedReplicationControllerScale = keyof Response$patchCoreV1NamespacedReplicationControllerScale$Status$200 | keyof Response$patchCoreV1NamespacedReplicationControllerScale$Status$201; +export interface Params$patchCoreV1NamespacedReplicationControllerScale { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedReplicationControllerScale; + requestBody: RequestBody$patchCoreV1NamespacedReplicationControllerScale[T]; +} +export type ResponseContentType$readCoreV1NamespacedReplicationControllerStatus = keyof Response$readCoreV1NamespacedReplicationControllerStatus$Status$200; +export interface Params$readCoreV1NamespacedReplicationControllerStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedReplicationControllerStatus; +} +export type RequestContentType$replaceCoreV1NamespacedReplicationControllerStatus = keyof RequestBody$replaceCoreV1NamespacedReplicationControllerStatus; +export type ResponseContentType$replaceCoreV1NamespacedReplicationControllerStatus = keyof Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 | keyof Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$201; +export interface Params$replaceCoreV1NamespacedReplicationControllerStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedReplicationControllerStatus; + requestBody: RequestBody$replaceCoreV1NamespacedReplicationControllerStatus["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedReplicationControllerStatus = keyof RequestBody$patchCoreV1NamespacedReplicationControllerStatus; +export type ResponseContentType$patchCoreV1NamespacedReplicationControllerStatus = keyof Response$patchCoreV1NamespacedReplicationControllerStatus$Status$200 | keyof Response$patchCoreV1NamespacedReplicationControllerStatus$Status$201; +export interface Params$patchCoreV1NamespacedReplicationControllerStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedReplicationControllerStatus; + requestBody: RequestBody$patchCoreV1NamespacedReplicationControllerStatus[T]; +} +export type ResponseContentType$listCoreV1NamespacedResourceQuota = keyof Response$listCoreV1NamespacedResourceQuota$Status$200; +export interface Params$listCoreV1NamespacedResourceQuota { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedResourceQuota; +} +export type RequestContentType$createCoreV1NamespacedResourceQuota = keyof RequestBody$createCoreV1NamespacedResourceQuota; +export type ResponseContentType$createCoreV1NamespacedResourceQuota = keyof Response$createCoreV1NamespacedResourceQuota$Status$200 | keyof Response$createCoreV1NamespacedResourceQuota$Status$201 | keyof Response$createCoreV1NamespacedResourceQuota$Status$202; +export interface Params$createCoreV1NamespacedResourceQuota { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedResourceQuota; + requestBody: RequestBody$createCoreV1NamespacedResourceQuota["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedResourceQuota = keyof RequestBody$deleteCoreV1CollectionNamespacedResourceQuota; +export type ResponseContentType$deleteCoreV1CollectionNamespacedResourceQuota = keyof Response$deleteCoreV1CollectionNamespacedResourceQuota$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedResourceQuota { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedResourceQuota; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedResourceQuota["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedResourceQuota = keyof Response$readCoreV1NamespacedResourceQuota$Status$200; +export interface Params$readCoreV1NamespacedResourceQuota { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedResourceQuota; +} +export type RequestContentType$replaceCoreV1NamespacedResourceQuota = keyof RequestBody$replaceCoreV1NamespacedResourceQuota; +export type ResponseContentType$replaceCoreV1NamespacedResourceQuota = keyof Response$replaceCoreV1NamespacedResourceQuota$Status$200 | keyof Response$replaceCoreV1NamespacedResourceQuota$Status$201; +export interface Params$replaceCoreV1NamespacedResourceQuota { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedResourceQuota; + requestBody: RequestBody$replaceCoreV1NamespacedResourceQuota["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedResourceQuota = keyof RequestBody$deleteCoreV1NamespacedResourceQuota; +export type ResponseContentType$deleteCoreV1NamespacedResourceQuota = keyof Response$deleteCoreV1NamespacedResourceQuota$Status$200 | keyof Response$deleteCoreV1NamespacedResourceQuota$Status$202; +export interface Params$deleteCoreV1NamespacedResourceQuota { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedResourceQuota; + requestBody: RequestBody$deleteCoreV1NamespacedResourceQuota["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedResourceQuota = keyof RequestBody$patchCoreV1NamespacedResourceQuota; +export type ResponseContentType$patchCoreV1NamespacedResourceQuota = keyof Response$patchCoreV1NamespacedResourceQuota$Status$200 | keyof Response$patchCoreV1NamespacedResourceQuota$Status$201; +export interface Params$patchCoreV1NamespacedResourceQuota { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedResourceQuota; + requestBody: RequestBody$patchCoreV1NamespacedResourceQuota[T]; +} +export type ResponseContentType$readCoreV1NamespacedResourceQuotaStatus = keyof Response$readCoreV1NamespacedResourceQuotaStatus$Status$200; +export interface Params$readCoreV1NamespacedResourceQuotaStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedResourceQuotaStatus; +} +export type RequestContentType$replaceCoreV1NamespacedResourceQuotaStatus = keyof RequestBody$replaceCoreV1NamespacedResourceQuotaStatus; +export type ResponseContentType$replaceCoreV1NamespacedResourceQuotaStatus = keyof Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 | keyof Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201; +export interface Params$replaceCoreV1NamespacedResourceQuotaStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedResourceQuotaStatus; + requestBody: RequestBody$replaceCoreV1NamespacedResourceQuotaStatus["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedResourceQuotaStatus = keyof RequestBody$patchCoreV1NamespacedResourceQuotaStatus; +export type ResponseContentType$patchCoreV1NamespacedResourceQuotaStatus = keyof Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 | keyof Response$patchCoreV1NamespacedResourceQuotaStatus$Status$201; +export interface Params$patchCoreV1NamespacedResourceQuotaStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedResourceQuotaStatus; + requestBody: RequestBody$patchCoreV1NamespacedResourceQuotaStatus[T]; +} +export type ResponseContentType$listCoreV1NamespacedSecret = keyof Response$listCoreV1NamespacedSecret$Status$200; +export interface Params$listCoreV1NamespacedSecret { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedSecret; +} +export type RequestContentType$createCoreV1NamespacedSecret = keyof RequestBody$createCoreV1NamespacedSecret; +export type ResponseContentType$createCoreV1NamespacedSecret = keyof Response$createCoreV1NamespacedSecret$Status$200 | keyof Response$createCoreV1NamespacedSecret$Status$201 | keyof Response$createCoreV1NamespacedSecret$Status$202; +export interface Params$createCoreV1NamespacedSecret { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedSecret; + requestBody: RequestBody$createCoreV1NamespacedSecret["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedSecret = keyof RequestBody$deleteCoreV1CollectionNamespacedSecret; +export type ResponseContentType$deleteCoreV1CollectionNamespacedSecret = keyof Response$deleteCoreV1CollectionNamespacedSecret$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedSecret { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedSecret; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedSecret["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedSecret = keyof Response$readCoreV1NamespacedSecret$Status$200; +export interface Params$readCoreV1NamespacedSecret { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedSecret; +} +export type RequestContentType$replaceCoreV1NamespacedSecret = keyof RequestBody$replaceCoreV1NamespacedSecret; +export type ResponseContentType$replaceCoreV1NamespacedSecret = keyof Response$replaceCoreV1NamespacedSecret$Status$200 | keyof Response$replaceCoreV1NamespacedSecret$Status$201; +export interface Params$replaceCoreV1NamespacedSecret { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedSecret; + requestBody: RequestBody$replaceCoreV1NamespacedSecret["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedSecret = keyof RequestBody$deleteCoreV1NamespacedSecret; +export type ResponseContentType$deleteCoreV1NamespacedSecret = keyof Response$deleteCoreV1NamespacedSecret$Status$200 | keyof Response$deleteCoreV1NamespacedSecret$Status$202; +export interface Params$deleteCoreV1NamespacedSecret { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedSecret; + requestBody: RequestBody$deleteCoreV1NamespacedSecret["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedSecret = keyof RequestBody$patchCoreV1NamespacedSecret; +export type ResponseContentType$patchCoreV1NamespacedSecret = keyof Response$patchCoreV1NamespacedSecret$Status$200 | keyof Response$patchCoreV1NamespacedSecret$Status$201; +export interface Params$patchCoreV1NamespacedSecret { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedSecret; + requestBody: RequestBody$patchCoreV1NamespacedSecret[T]; +} +export type ResponseContentType$listCoreV1NamespacedServiceAccount = keyof Response$listCoreV1NamespacedServiceAccount$Status$200; +export interface Params$listCoreV1NamespacedServiceAccount { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedServiceAccount; +} +export type RequestContentType$createCoreV1NamespacedServiceAccount = keyof RequestBody$createCoreV1NamespacedServiceAccount; +export type ResponseContentType$createCoreV1NamespacedServiceAccount = keyof Response$createCoreV1NamespacedServiceAccount$Status$200 | keyof Response$createCoreV1NamespacedServiceAccount$Status$201 | keyof Response$createCoreV1NamespacedServiceAccount$Status$202; +export interface Params$createCoreV1NamespacedServiceAccount { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedServiceAccount; + requestBody: RequestBody$createCoreV1NamespacedServiceAccount["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedServiceAccount = keyof RequestBody$deleteCoreV1CollectionNamespacedServiceAccount; +export type ResponseContentType$deleteCoreV1CollectionNamespacedServiceAccount = keyof Response$deleteCoreV1CollectionNamespacedServiceAccount$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedServiceAccount { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedServiceAccount; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedServiceAccount["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedServiceAccount = keyof Response$readCoreV1NamespacedServiceAccount$Status$200; +export interface Params$readCoreV1NamespacedServiceAccount { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedServiceAccount; +} +export type RequestContentType$replaceCoreV1NamespacedServiceAccount = keyof RequestBody$replaceCoreV1NamespacedServiceAccount; +export type ResponseContentType$replaceCoreV1NamespacedServiceAccount = keyof Response$replaceCoreV1NamespacedServiceAccount$Status$200 | keyof Response$replaceCoreV1NamespacedServiceAccount$Status$201; +export interface Params$replaceCoreV1NamespacedServiceAccount { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedServiceAccount; + requestBody: RequestBody$replaceCoreV1NamespacedServiceAccount["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedServiceAccount = keyof RequestBody$deleteCoreV1NamespacedServiceAccount; +export type ResponseContentType$deleteCoreV1NamespacedServiceAccount = keyof Response$deleteCoreV1NamespacedServiceAccount$Status$200 | keyof Response$deleteCoreV1NamespacedServiceAccount$Status$202; +export interface Params$deleteCoreV1NamespacedServiceAccount { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedServiceAccount; + requestBody: RequestBody$deleteCoreV1NamespacedServiceAccount["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedServiceAccount = keyof RequestBody$patchCoreV1NamespacedServiceAccount; +export type ResponseContentType$patchCoreV1NamespacedServiceAccount = keyof Response$patchCoreV1NamespacedServiceAccount$Status$200 | keyof Response$patchCoreV1NamespacedServiceAccount$Status$201; +export interface Params$patchCoreV1NamespacedServiceAccount { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedServiceAccount; + requestBody: RequestBody$patchCoreV1NamespacedServiceAccount[T]; +} +export type RequestContentType$createCoreV1NamespacedServiceAccountToken = keyof RequestBody$createCoreV1NamespacedServiceAccountToken; +export type ResponseContentType$createCoreV1NamespacedServiceAccountToken = keyof Response$createCoreV1NamespacedServiceAccountToken$Status$200 | keyof Response$createCoreV1NamespacedServiceAccountToken$Status$201 | keyof Response$createCoreV1NamespacedServiceAccountToken$Status$202; +export interface Params$createCoreV1NamespacedServiceAccountToken { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedServiceAccountToken; + requestBody: RequestBody$createCoreV1NamespacedServiceAccountToken["*/*"]; +} +export type ResponseContentType$listCoreV1NamespacedService = keyof Response$listCoreV1NamespacedService$Status$200; +export interface Params$listCoreV1NamespacedService { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1NamespacedService; +} +export type RequestContentType$createCoreV1NamespacedService = keyof RequestBody$createCoreV1NamespacedService; +export type ResponseContentType$createCoreV1NamespacedService = keyof Response$createCoreV1NamespacedService$Status$200 | keyof Response$createCoreV1NamespacedService$Status$201 | keyof Response$createCoreV1NamespacedService$Status$202; +export interface Params$createCoreV1NamespacedService { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1NamespacedService; + requestBody: RequestBody$createCoreV1NamespacedService["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNamespacedService = keyof RequestBody$deleteCoreV1CollectionNamespacedService; +export type ResponseContentType$deleteCoreV1CollectionNamespacedService = keyof Response$deleteCoreV1CollectionNamespacedService$Status$200; +export interface Params$deleteCoreV1CollectionNamespacedService { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNamespacedService; + requestBody: RequestBody$deleteCoreV1CollectionNamespacedService["*/*"]; +} +export type ResponseContentType$readCoreV1NamespacedService = keyof Response$readCoreV1NamespacedService$Status$200; +export interface Params$readCoreV1NamespacedService { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedService; +} +export type RequestContentType$replaceCoreV1NamespacedService = keyof RequestBody$replaceCoreV1NamespacedService; +export type ResponseContentType$replaceCoreV1NamespacedService = keyof Response$replaceCoreV1NamespacedService$Status$200 | keyof Response$replaceCoreV1NamespacedService$Status$201; +export interface Params$replaceCoreV1NamespacedService { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedService; + requestBody: RequestBody$replaceCoreV1NamespacedService["*/*"]; +} +export type RequestContentType$deleteCoreV1NamespacedService = keyof RequestBody$deleteCoreV1NamespacedService; +export type ResponseContentType$deleteCoreV1NamespacedService = keyof Response$deleteCoreV1NamespacedService$Status$200 | keyof Response$deleteCoreV1NamespacedService$Status$202; +export interface Params$deleteCoreV1NamespacedService { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1NamespacedService; + requestBody: RequestBody$deleteCoreV1NamespacedService["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedService = keyof RequestBody$patchCoreV1NamespacedService; +export type ResponseContentType$patchCoreV1NamespacedService = keyof Response$patchCoreV1NamespacedService$Status$200 | keyof Response$patchCoreV1NamespacedService$Status$201; +export interface Params$patchCoreV1NamespacedService { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedService; + requestBody: RequestBody$patchCoreV1NamespacedService[T]; +} +export type ResponseContentType$connectCoreV1GetNamespacedServiceProxy = keyof Response$connectCoreV1GetNamespacedServiceProxy$Status$200; +export interface Params$connectCoreV1GetNamespacedServiceProxy { + parameter: Parameter$connectCoreV1GetNamespacedServiceProxy; +} +export type ResponseContentType$connectCoreV1PutNamespacedServiceProxy = keyof Response$connectCoreV1PutNamespacedServiceProxy$Status$200; +export interface Params$connectCoreV1PutNamespacedServiceProxy { + parameter: Parameter$connectCoreV1PutNamespacedServiceProxy; +} +export type ResponseContentType$connectCoreV1PostNamespacedServiceProxy = keyof Response$connectCoreV1PostNamespacedServiceProxy$Status$200; +export interface Params$connectCoreV1PostNamespacedServiceProxy { + parameter: Parameter$connectCoreV1PostNamespacedServiceProxy; +} +export type ResponseContentType$connectCoreV1DeleteNamespacedServiceProxy = keyof Response$connectCoreV1DeleteNamespacedServiceProxy$Status$200; +export interface Params$connectCoreV1DeleteNamespacedServiceProxy { + parameter: Parameter$connectCoreV1DeleteNamespacedServiceProxy; +} +export type ResponseContentType$connectCoreV1OptionsNamespacedServiceProxy = keyof Response$connectCoreV1OptionsNamespacedServiceProxy$Status$200; +export interface Params$connectCoreV1OptionsNamespacedServiceProxy { + parameter: Parameter$connectCoreV1OptionsNamespacedServiceProxy; +} +export type ResponseContentType$connectCoreV1HeadNamespacedServiceProxy = keyof Response$connectCoreV1HeadNamespacedServiceProxy$Status$200; +export interface Params$connectCoreV1HeadNamespacedServiceProxy { + parameter: Parameter$connectCoreV1HeadNamespacedServiceProxy; +} +export type ResponseContentType$connectCoreV1PatchNamespacedServiceProxy = keyof Response$connectCoreV1PatchNamespacedServiceProxy$Status$200; +export interface Params$connectCoreV1PatchNamespacedServiceProxy { + parameter: Parameter$connectCoreV1PatchNamespacedServiceProxy; +} +export type ResponseContentType$connectCoreV1GetNamespacedServiceProxyWithPath = keyof Response$connectCoreV1GetNamespacedServiceProxyWithPath$Status$200; +export interface Params$connectCoreV1GetNamespacedServiceProxyWithPath { + parameter: Parameter$connectCoreV1GetNamespacedServiceProxyWithPath; +} +export type ResponseContentType$connectCoreV1PutNamespacedServiceProxyWithPath = keyof Response$connectCoreV1PutNamespacedServiceProxyWithPath$Status$200; +export interface Params$connectCoreV1PutNamespacedServiceProxyWithPath { + parameter: Parameter$connectCoreV1PutNamespacedServiceProxyWithPath; +} +export type ResponseContentType$connectCoreV1PostNamespacedServiceProxyWithPath = keyof Response$connectCoreV1PostNamespacedServiceProxyWithPath$Status$200; +export interface Params$connectCoreV1PostNamespacedServiceProxyWithPath { + parameter: Parameter$connectCoreV1PostNamespacedServiceProxyWithPath; +} +export type ResponseContentType$connectCoreV1DeleteNamespacedServiceProxyWithPath = keyof Response$connectCoreV1DeleteNamespacedServiceProxyWithPath$Status$200; +export interface Params$connectCoreV1DeleteNamespacedServiceProxyWithPath { + parameter: Parameter$connectCoreV1DeleteNamespacedServiceProxyWithPath; +} +export type ResponseContentType$connectCoreV1OptionsNamespacedServiceProxyWithPath = keyof Response$connectCoreV1OptionsNamespacedServiceProxyWithPath$Status$200; +export interface Params$connectCoreV1OptionsNamespacedServiceProxyWithPath { + parameter: Parameter$connectCoreV1OptionsNamespacedServiceProxyWithPath; +} +export type ResponseContentType$connectCoreV1HeadNamespacedServiceProxyWithPath = keyof Response$connectCoreV1HeadNamespacedServiceProxyWithPath$Status$200; +export interface Params$connectCoreV1HeadNamespacedServiceProxyWithPath { + parameter: Parameter$connectCoreV1HeadNamespacedServiceProxyWithPath; +} +export type ResponseContentType$connectCoreV1PatchNamespacedServiceProxyWithPath = keyof Response$connectCoreV1PatchNamespacedServiceProxyWithPath$Status$200; +export interface Params$connectCoreV1PatchNamespacedServiceProxyWithPath { + parameter: Parameter$connectCoreV1PatchNamespacedServiceProxyWithPath; +} +export type ResponseContentType$readCoreV1NamespacedServiceStatus = keyof Response$readCoreV1NamespacedServiceStatus$Status$200; +export interface Params$readCoreV1NamespacedServiceStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespacedServiceStatus; +} +export type RequestContentType$replaceCoreV1NamespacedServiceStatus = keyof RequestBody$replaceCoreV1NamespacedServiceStatus; +export type ResponseContentType$replaceCoreV1NamespacedServiceStatus = keyof Response$replaceCoreV1NamespacedServiceStatus$Status$200 | keyof Response$replaceCoreV1NamespacedServiceStatus$Status$201; +export interface Params$replaceCoreV1NamespacedServiceStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespacedServiceStatus; + requestBody: RequestBody$replaceCoreV1NamespacedServiceStatus["*/*"]; +} +export type RequestContentType$patchCoreV1NamespacedServiceStatus = keyof RequestBody$patchCoreV1NamespacedServiceStatus; +export type ResponseContentType$patchCoreV1NamespacedServiceStatus = keyof Response$patchCoreV1NamespacedServiceStatus$Status$200 | keyof Response$patchCoreV1NamespacedServiceStatus$Status$201; +export interface Params$patchCoreV1NamespacedServiceStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespacedServiceStatus; + requestBody: RequestBody$patchCoreV1NamespacedServiceStatus[T]; +} +export type ResponseContentType$readCoreV1Namespace = keyof Response$readCoreV1Namespace$Status$200; +export interface Params$readCoreV1Namespace { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1Namespace; +} +export type RequestContentType$replaceCoreV1Namespace = keyof RequestBody$replaceCoreV1Namespace; +export type ResponseContentType$replaceCoreV1Namespace = keyof Response$replaceCoreV1Namespace$Status$200 | keyof Response$replaceCoreV1Namespace$Status$201; +export interface Params$replaceCoreV1Namespace { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1Namespace; + requestBody: RequestBody$replaceCoreV1Namespace["*/*"]; +} +export type RequestContentType$deleteCoreV1Namespace = keyof RequestBody$deleteCoreV1Namespace; +export type ResponseContentType$deleteCoreV1Namespace = keyof Response$deleteCoreV1Namespace$Status$200 | keyof Response$deleteCoreV1Namespace$Status$202; +export interface Params$deleteCoreV1Namespace { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1Namespace; + requestBody: RequestBody$deleteCoreV1Namespace["*/*"]; +} +export type RequestContentType$patchCoreV1Namespace = keyof RequestBody$patchCoreV1Namespace; +export type ResponseContentType$patchCoreV1Namespace = keyof Response$patchCoreV1Namespace$Status$200 | keyof Response$patchCoreV1Namespace$Status$201; +export interface Params$patchCoreV1Namespace { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1Namespace; + requestBody: RequestBody$patchCoreV1Namespace[T]; +} +export type RequestContentType$replaceCoreV1NamespaceFinalize = keyof RequestBody$replaceCoreV1NamespaceFinalize; +export type ResponseContentType$replaceCoreV1NamespaceFinalize = keyof Response$replaceCoreV1NamespaceFinalize$Status$200 | keyof Response$replaceCoreV1NamespaceFinalize$Status$201; +export interface Params$replaceCoreV1NamespaceFinalize { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespaceFinalize; + requestBody: RequestBody$replaceCoreV1NamespaceFinalize["*/*"]; +} +export type ResponseContentType$readCoreV1NamespaceStatus = keyof Response$readCoreV1NamespaceStatus$Status$200; +export interface Params$readCoreV1NamespaceStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NamespaceStatus; +} +export type RequestContentType$replaceCoreV1NamespaceStatus = keyof RequestBody$replaceCoreV1NamespaceStatus; +export type ResponseContentType$replaceCoreV1NamespaceStatus = keyof Response$replaceCoreV1NamespaceStatus$Status$200 | keyof Response$replaceCoreV1NamespaceStatus$Status$201; +export interface Params$replaceCoreV1NamespaceStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NamespaceStatus; + requestBody: RequestBody$replaceCoreV1NamespaceStatus["*/*"]; +} +export type RequestContentType$patchCoreV1NamespaceStatus = keyof RequestBody$patchCoreV1NamespaceStatus; +export type ResponseContentType$patchCoreV1NamespaceStatus = keyof Response$patchCoreV1NamespaceStatus$Status$200 | keyof Response$patchCoreV1NamespaceStatus$Status$201; +export interface Params$patchCoreV1NamespaceStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NamespaceStatus; + requestBody: RequestBody$patchCoreV1NamespaceStatus[T]; +} +export type ResponseContentType$listCoreV1Node = keyof Response$listCoreV1Node$Status$200; +export interface Params$listCoreV1Node { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1Node; +} +export type RequestContentType$createCoreV1Node = keyof RequestBody$createCoreV1Node; +export type ResponseContentType$createCoreV1Node = keyof Response$createCoreV1Node$Status$200 | keyof Response$createCoreV1Node$Status$201 | keyof Response$createCoreV1Node$Status$202; +export interface Params$createCoreV1Node { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1Node; + requestBody: RequestBody$createCoreV1Node["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionNode = keyof RequestBody$deleteCoreV1CollectionNode; +export type ResponseContentType$deleteCoreV1CollectionNode = keyof Response$deleteCoreV1CollectionNode$Status$200; +export interface Params$deleteCoreV1CollectionNode { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionNode; + requestBody: RequestBody$deleteCoreV1CollectionNode["*/*"]; +} +export type ResponseContentType$readCoreV1Node = keyof Response$readCoreV1Node$Status$200; +export interface Params$readCoreV1Node { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1Node; +} +export type RequestContentType$replaceCoreV1Node = keyof RequestBody$replaceCoreV1Node; +export type ResponseContentType$replaceCoreV1Node = keyof Response$replaceCoreV1Node$Status$200 | keyof Response$replaceCoreV1Node$Status$201; +export interface Params$replaceCoreV1Node { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1Node; + requestBody: RequestBody$replaceCoreV1Node["*/*"]; +} +export type RequestContentType$deleteCoreV1Node = keyof RequestBody$deleteCoreV1Node; +export type ResponseContentType$deleteCoreV1Node = keyof Response$deleteCoreV1Node$Status$200 | keyof Response$deleteCoreV1Node$Status$202; +export interface Params$deleteCoreV1Node { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1Node; + requestBody: RequestBody$deleteCoreV1Node["*/*"]; +} +export type RequestContentType$patchCoreV1Node = keyof RequestBody$patchCoreV1Node; +export type ResponseContentType$patchCoreV1Node = keyof Response$patchCoreV1Node$Status$200 | keyof Response$patchCoreV1Node$Status$201; +export interface Params$patchCoreV1Node { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1Node; + requestBody: RequestBody$patchCoreV1Node[T]; +} +export type ResponseContentType$connectCoreV1GetNodeProxy = keyof Response$connectCoreV1GetNodeProxy$Status$200; +export interface Params$connectCoreV1GetNodeProxy { + parameter: Parameter$connectCoreV1GetNodeProxy; +} +export type ResponseContentType$connectCoreV1PutNodeProxy = keyof Response$connectCoreV1PutNodeProxy$Status$200; +export interface Params$connectCoreV1PutNodeProxy { + parameter: Parameter$connectCoreV1PutNodeProxy; +} +export type ResponseContentType$connectCoreV1PostNodeProxy = keyof Response$connectCoreV1PostNodeProxy$Status$200; +export interface Params$connectCoreV1PostNodeProxy { + parameter: Parameter$connectCoreV1PostNodeProxy; +} +export type ResponseContentType$connectCoreV1DeleteNodeProxy = keyof Response$connectCoreV1DeleteNodeProxy$Status$200; +export interface Params$connectCoreV1DeleteNodeProxy { + parameter: Parameter$connectCoreV1DeleteNodeProxy; +} +export type ResponseContentType$connectCoreV1OptionsNodeProxy = keyof Response$connectCoreV1OptionsNodeProxy$Status$200; +export interface Params$connectCoreV1OptionsNodeProxy { + parameter: Parameter$connectCoreV1OptionsNodeProxy; +} +export type ResponseContentType$connectCoreV1HeadNodeProxy = keyof Response$connectCoreV1HeadNodeProxy$Status$200; +export interface Params$connectCoreV1HeadNodeProxy { + parameter: Parameter$connectCoreV1HeadNodeProxy; +} +export type ResponseContentType$connectCoreV1PatchNodeProxy = keyof Response$connectCoreV1PatchNodeProxy$Status$200; +export interface Params$connectCoreV1PatchNodeProxy { + parameter: Parameter$connectCoreV1PatchNodeProxy; +} +export type ResponseContentType$connectCoreV1GetNodeProxyWithPath = keyof Response$connectCoreV1GetNodeProxyWithPath$Status$200; +export interface Params$connectCoreV1GetNodeProxyWithPath { + parameter: Parameter$connectCoreV1GetNodeProxyWithPath; +} +export type ResponseContentType$connectCoreV1PutNodeProxyWithPath = keyof Response$connectCoreV1PutNodeProxyWithPath$Status$200; +export interface Params$connectCoreV1PutNodeProxyWithPath { + parameter: Parameter$connectCoreV1PutNodeProxyWithPath; +} +export type ResponseContentType$connectCoreV1PostNodeProxyWithPath = keyof Response$connectCoreV1PostNodeProxyWithPath$Status$200; +export interface Params$connectCoreV1PostNodeProxyWithPath { + parameter: Parameter$connectCoreV1PostNodeProxyWithPath; +} +export type ResponseContentType$connectCoreV1DeleteNodeProxyWithPath = keyof Response$connectCoreV1DeleteNodeProxyWithPath$Status$200; +export interface Params$connectCoreV1DeleteNodeProxyWithPath { + parameter: Parameter$connectCoreV1DeleteNodeProxyWithPath; +} +export type ResponseContentType$connectCoreV1OptionsNodeProxyWithPath = keyof Response$connectCoreV1OptionsNodeProxyWithPath$Status$200; +export interface Params$connectCoreV1OptionsNodeProxyWithPath { + parameter: Parameter$connectCoreV1OptionsNodeProxyWithPath; +} +export type ResponseContentType$connectCoreV1HeadNodeProxyWithPath = keyof Response$connectCoreV1HeadNodeProxyWithPath$Status$200; +export interface Params$connectCoreV1HeadNodeProxyWithPath { + parameter: Parameter$connectCoreV1HeadNodeProxyWithPath; +} +export type ResponseContentType$connectCoreV1PatchNodeProxyWithPath = keyof Response$connectCoreV1PatchNodeProxyWithPath$Status$200; +export interface Params$connectCoreV1PatchNodeProxyWithPath { + parameter: Parameter$connectCoreV1PatchNodeProxyWithPath; +} +export type ResponseContentType$readCoreV1NodeStatus = keyof Response$readCoreV1NodeStatus$Status$200; +export interface Params$readCoreV1NodeStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1NodeStatus; +} +export type RequestContentType$replaceCoreV1NodeStatus = keyof RequestBody$replaceCoreV1NodeStatus; +export type ResponseContentType$replaceCoreV1NodeStatus = keyof Response$replaceCoreV1NodeStatus$Status$200 | keyof Response$replaceCoreV1NodeStatus$Status$201; +export interface Params$replaceCoreV1NodeStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1NodeStatus; + requestBody: RequestBody$replaceCoreV1NodeStatus["*/*"]; +} +export type RequestContentType$patchCoreV1NodeStatus = keyof RequestBody$patchCoreV1NodeStatus; +export type ResponseContentType$patchCoreV1NodeStatus = keyof Response$patchCoreV1NodeStatus$Status$200 | keyof Response$patchCoreV1NodeStatus$Status$201; +export interface Params$patchCoreV1NodeStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1NodeStatus; + requestBody: RequestBody$patchCoreV1NodeStatus[T]; +} +export type ResponseContentType$listCoreV1PersistentVolumeClaimForAllNamespaces = keyof Response$listCoreV1PersistentVolumeClaimForAllNamespaces$Status$200; +export interface Params$listCoreV1PersistentVolumeClaimForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1PersistentVolumeClaimForAllNamespaces; +} +export type ResponseContentType$listCoreV1PersistentVolume = keyof Response$listCoreV1PersistentVolume$Status$200; +export interface Params$listCoreV1PersistentVolume { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1PersistentVolume; +} +export type RequestContentType$createCoreV1PersistentVolume = keyof RequestBody$createCoreV1PersistentVolume; +export type ResponseContentType$createCoreV1PersistentVolume = keyof Response$createCoreV1PersistentVolume$Status$200 | keyof Response$createCoreV1PersistentVolume$Status$201 | keyof Response$createCoreV1PersistentVolume$Status$202; +export interface Params$createCoreV1PersistentVolume { + headers: { + Accept: U; + }; + parameter: Parameter$createCoreV1PersistentVolume; + requestBody: RequestBody$createCoreV1PersistentVolume["*/*"]; +} +export type RequestContentType$deleteCoreV1CollectionPersistentVolume = keyof RequestBody$deleteCoreV1CollectionPersistentVolume; +export type ResponseContentType$deleteCoreV1CollectionPersistentVolume = keyof Response$deleteCoreV1CollectionPersistentVolume$Status$200; +export interface Params$deleteCoreV1CollectionPersistentVolume { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1CollectionPersistentVolume; + requestBody: RequestBody$deleteCoreV1CollectionPersistentVolume["*/*"]; +} +export type ResponseContentType$readCoreV1PersistentVolume = keyof Response$readCoreV1PersistentVolume$Status$200; +export interface Params$readCoreV1PersistentVolume { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1PersistentVolume; +} +export type RequestContentType$replaceCoreV1PersistentVolume = keyof RequestBody$replaceCoreV1PersistentVolume; +export type ResponseContentType$replaceCoreV1PersistentVolume = keyof Response$replaceCoreV1PersistentVolume$Status$200 | keyof Response$replaceCoreV1PersistentVolume$Status$201; +export interface Params$replaceCoreV1PersistentVolume { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1PersistentVolume; + requestBody: RequestBody$replaceCoreV1PersistentVolume["*/*"]; +} +export type RequestContentType$deleteCoreV1PersistentVolume = keyof RequestBody$deleteCoreV1PersistentVolume; +export type ResponseContentType$deleteCoreV1PersistentVolume = keyof Response$deleteCoreV1PersistentVolume$Status$200 | keyof Response$deleteCoreV1PersistentVolume$Status$202; +export interface Params$deleteCoreV1PersistentVolume { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoreV1PersistentVolume; + requestBody: RequestBody$deleteCoreV1PersistentVolume["*/*"]; +} +export type RequestContentType$patchCoreV1PersistentVolume = keyof RequestBody$patchCoreV1PersistentVolume; +export type ResponseContentType$patchCoreV1PersistentVolume = keyof Response$patchCoreV1PersistentVolume$Status$200 | keyof Response$patchCoreV1PersistentVolume$Status$201; +export interface Params$patchCoreV1PersistentVolume { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1PersistentVolume; + requestBody: RequestBody$patchCoreV1PersistentVolume[T]; +} +export type ResponseContentType$readCoreV1PersistentVolumeStatus = keyof Response$readCoreV1PersistentVolumeStatus$Status$200; +export interface Params$readCoreV1PersistentVolumeStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCoreV1PersistentVolumeStatus; +} +export type RequestContentType$replaceCoreV1PersistentVolumeStatus = keyof RequestBody$replaceCoreV1PersistentVolumeStatus; +export type ResponseContentType$replaceCoreV1PersistentVolumeStatus = keyof Response$replaceCoreV1PersistentVolumeStatus$Status$200 | keyof Response$replaceCoreV1PersistentVolumeStatus$Status$201; +export interface Params$replaceCoreV1PersistentVolumeStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoreV1PersistentVolumeStatus; + requestBody: RequestBody$replaceCoreV1PersistentVolumeStatus["*/*"]; +} +export type RequestContentType$patchCoreV1PersistentVolumeStatus = keyof RequestBody$patchCoreV1PersistentVolumeStatus; +export type ResponseContentType$patchCoreV1PersistentVolumeStatus = keyof Response$patchCoreV1PersistentVolumeStatus$Status$200 | keyof Response$patchCoreV1PersistentVolumeStatus$Status$201; +export interface Params$patchCoreV1PersistentVolumeStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoreV1PersistentVolumeStatus; + requestBody: RequestBody$patchCoreV1PersistentVolumeStatus[T]; +} +export type ResponseContentType$listCoreV1PodForAllNamespaces = keyof Response$listCoreV1PodForAllNamespaces$Status$200; +export interface Params$listCoreV1PodForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1PodForAllNamespaces; +} +export type ResponseContentType$listCoreV1PodTemplateForAllNamespaces = keyof Response$listCoreV1PodTemplateForAllNamespaces$Status$200; +export interface Params$listCoreV1PodTemplateForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1PodTemplateForAllNamespaces; +} +export type ResponseContentType$listCoreV1ReplicationControllerForAllNamespaces = keyof Response$listCoreV1ReplicationControllerForAllNamespaces$Status$200; +export interface Params$listCoreV1ReplicationControllerForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1ReplicationControllerForAllNamespaces; +} +export type ResponseContentType$listCoreV1ResourceQuotaForAllNamespaces = keyof Response$listCoreV1ResourceQuotaForAllNamespaces$Status$200; +export interface Params$listCoreV1ResourceQuotaForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1ResourceQuotaForAllNamespaces; +} +export type ResponseContentType$listCoreV1SecretForAllNamespaces = keyof Response$listCoreV1SecretForAllNamespaces$Status$200; +export interface Params$listCoreV1SecretForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1SecretForAllNamespaces; +} +export type ResponseContentType$listCoreV1ServiceAccountForAllNamespaces = keyof Response$listCoreV1ServiceAccountForAllNamespaces$Status$200; +export interface Params$listCoreV1ServiceAccountForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1ServiceAccountForAllNamespaces; +} +export type ResponseContentType$listCoreV1ServiceForAllNamespaces = keyof Response$listCoreV1ServiceForAllNamespaces$Status$200; +export interface Params$listCoreV1ServiceForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoreV1ServiceForAllNamespaces; +} +export type ResponseContentType$watchCoreV1ConfigMapListForAllNamespaces = keyof Response$watchCoreV1ConfigMapListForAllNamespaces$Status$200; +export interface Params$watchCoreV1ConfigMapListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1ConfigMapListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1EndpointsListForAllNamespaces = keyof Response$watchCoreV1EndpointsListForAllNamespaces$Status$200; +export interface Params$watchCoreV1EndpointsListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1EndpointsListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1EventListForAllNamespaces = keyof Response$watchCoreV1EventListForAllNamespaces$Status$200; +export interface Params$watchCoreV1EventListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1EventListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1LimitRangeListForAllNamespaces = keyof Response$watchCoreV1LimitRangeListForAllNamespaces$Status$200; +export interface Params$watchCoreV1LimitRangeListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1LimitRangeListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1NamespaceList = keyof Response$watchCoreV1NamespaceList$Status$200; +export interface Params$watchCoreV1NamespaceList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespaceList; +} +export type ResponseContentType$watchCoreV1NamespacedConfigMapList = keyof Response$watchCoreV1NamespacedConfigMapList$Status$200; +export interface Params$watchCoreV1NamespacedConfigMapList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedConfigMapList; +} +export type ResponseContentType$watchCoreV1NamespacedConfigMap = keyof Response$watchCoreV1NamespacedConfigMap$Status$200; +export interface Params$watchCoreV1NamespacedConfigMap { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedConfigMap; +} +export type ResponseContentType$watchCoreV1NamespacedEndpointsList = keyof Response$watchCoreV1NamespacedEndpointsList$Status$200; +export interface Params$watchCoreV1NamespacedEndpointsList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedEndpointsList; +} +export type ResponseContentType$watchCoreV1NamespacedEndpoints = keyof Response$watchCoreV1NamespacedEndpoints$Status$200; +export interface Params$watchCoreV1NamespacedEndpoints { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedEndpoints; +} +export type ResponseContentType$watchCoreV1NamespacedEventList = keyof Response$watchCoreV1NamespacedEventList$Status$200; +export interface Params$watchCoreV1NamespacedEventList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedEventList; +} +export type ResponseContentType$watchCoreV1NamespacedEvent = keyof Response$watchCoreV1NamespacedEvent$Status$200; +export interface Params$watchCoreV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedEvent; +} +export type ResponseContentType$watchCoreV1NamespacedLimitRangeList = keyof Response$watchCoreV1NamespacedLimitRangeList$Status$200; +export interface Params$watchCoreV1NamespacedLimitRangeList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedLimitRangeList; +} +export type ResponseContentType$watchCoreV1NamespacedLimitRange = keyof Response$watchCoreV1NamespacedLimitRange$Status$200; +export interface Params$watchCoreV1NamespacedLimitRange { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedLimitRange; +} +export type ResponseContentType$watchCoreV1NamespacedPersistentVolumeClaimList = keyof Response$watchCoreV1NamespacedPersistentVolumeClaimList$Status$200; +export interface Params$watchCoreV1NamespacedPersistentVolumeClaimList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedPersistentVolumeClaimList; +} +export type ResponseContentType$watchCoreV1NamespacedPersistentVolumeClaim = keyof Response$watchCoreV1NamespacedPersistentVolumeClaim$Status$200; +export interface Params$watchCoreV1NamespacedPersistentVolumeClaim { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedPersistentVolumeClaim; +} +export type ResponseContentType$watchCoreV1NamespacedPodList = keyof Response$watchCoreV1NamespacedPodList$Status$200; +export interface Params$watchCoreV1NamespacedPodList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedPodList; +} +export type ResponseContentType$watchCoreV1NamespacedPod = keyof Response$watchCoreV1NamespacedPod$Status$200; +export interface Params$watchCoreV1NamespacedPod { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedPod; +} +export type ResponseContentType$watchCoreV1NamespacedPodTemplateList = keyof Response$watchCoreV1NamespacedPodTemplateList$Status$200; +export interface Params$watchCoreV1NamespacedPodTemplateList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedPodTemplateList; +} +export type ResponseContentType$watchCoreV1NamespacedPodTemplate = keyof Response$watchCoreV1NamespacedPodTemplate$Status$200; +export interface Params$watchCoreV1NamespacedPodTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedPodTemplate; +} +export type ResponseContentType$watchCoreV1NamespacedReplicationControllerList = keyof Response$watchCoreV1NamespacedReplicationControllerList$Status$200; +export interface Params$watchCoreV1NamespacedReplicationControllerList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedReplicationControllerList; +} +export type ResponseContentType$watchCoreV1NamespacedReplicationController = keyof Response$watchCoreV1NamespacedReplicationController$Status$200; +export interface Params$watchCoreV1NamespacedReplicationController { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedReplicationController; +} +export type ResponseContentType$watchCoreV1NamespacedResourceQuotaList = keyof Response$watchCoreV1NamespacedResourceQuotaList$Status$200; +export interface Params$watchCoreV1NamespacedResourceQuotaList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedResourceQuotaList; +} +export type ResponseContentType$watchCoreV1NamespacedResourceQuota = keyof Response$watchCoreV1NamespacedResourceQuota$Status$200; +export interface Params$watchCoreV1NamespacedResourceQuota { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedResourceQuota; +} +export type ResponseContentType$watchCoreV1NamespacedSecretList = keyof Response$watchCoreV1NamespacedSecretList$Status$200; +export interface Params$watchCoreV1NamespacedSecretList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedSecretList; +} +export type ResponseContentType$watchCoreV1NamespacedSecret = keyof Response$watchCoreV1NamespacedSecret$Status$200; +export interface Params$watchCoreV1NamespacedSecret { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedSecret; +} +export type ResponseContentType$watchCoreV1NamespacedServiceAccountList = keyof Response$watchCoreV1NamespacedServiceAccountList$Status$200; +export interface Params$watchCoreV1NamespacedServiceAccountList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedServiceAccountList; +} +export type ResponseContentType$watchCoreV1NamespacedServiceAccount = keyof Response$watchCoreV1NamespacedServiceAccount$Status$200; +export interface Params$watchCoreV1NamespacedServiceAccount { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedServiceAccount; +} +export type ResponseContentType$watchCoreV1NamespacedServiceList = keyof Response$watchCoreV1NamespacedServiceList$Status$200; +export interface Params$watchCoreV1NamespacedServiceList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedServiceList; +} +export type ResponseContentType$watchCoreV1NamespacedService = keyof Response$watchCoreV1NamespacedService$Status$200; +export interface Params$watchCoreV1NamespacedService { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NamespacedService; +} +export type ResponseContentType$watchCoreV1Namespace = keyof Response$watchCoreV1Namespace$Status$200; +export interface Params$watchCoreV1Namespace { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1Namespace; +} +export type ResponseContentType$watchCoreV1NodeList = keyof Response$watchCoreV1NodeList$Status$200; +export interface Params$watchCoreV1NodeList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1NodeList; +} +export type ResponseContentType$watchCoreV1Node = keyof Response$watchCoreV1Node$Status$200; +export interface Params$watchCoreV1Node { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1Node; +} +export type ResponseContentType$watchCoreV1PersistentVolumeClaimListForAllNamespaces = keyof Response$watchCoreV1PersistentVolumeClaimListForAllNamespaces$Status$200; +export interface Params$watchCoreV1PersistentVolumeClaimListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1PersistentVolumeClaimListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1PersistentVolumeList = keyof Response$watchCoreV1PersistentVolumeList$Status$200; +export interface Params$watchCoreV1PersistentVolumeList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1PersistentVolumeList; +} +export type ResponseContentType$watchCoreV1PersistentVolume = keyof Response$watchCoreV1PersistentVolume$Status$200; +export interface Params$watchCoreV1PersistentVolume { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1PersistentVolume; +} +export type ResponseContentType$watchCoreV1PodListForAllNamespaces = keyof Response$watchCoreV1PodListForAllNamespaces$Status$200; +export interface Params$watchCoreV1PodListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1PodListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1PodTemplateListForAllNamespaces = keyof Response$watchCoreV1PodTemplateListForAllNamespaces$Status$200; +export interface Params$watchCoreV1PodTemplateListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1PodTemplateListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1ReplicationControllerListForAllNamespaces = keyof Response$watchCoreV1ReplicationControllerListForAllNamespaces$Status$200; +export interface Params$watchCoreV1ReplicationControllerListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1ReplicationControllerListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1ResourceQuotaListForAllNamespaces = keyof Response$watchCoreV1ResourceQuotaListForAllNamespaces$Status$200; +export interface Params$watchCoreV1ResourceQuotaListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1ResourceQuotaListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1SecretListForAllNamespaces = keyof Response$watchCoreV1SecretListForAllNamespaces$Status$200; +export interface Params$watchCoreV1SecretListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1SecretListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1ServiceAccountListForAllNamespaces = keyof Response$watchCoreV1ServiceAccountListForAllNamespaces$Status$200; +export interface Params$watchCoreV1ServiceAccountListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1ServiceAccountListForAllNamespaces; +} +export type ResponseContentType$watchCoreV1ServiceListForAllNamespaces = keyof Response$watchCoreV1ServiceListForAllNamespaces$Status$200; +export interface Params$watchCoreV1ServiceListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoreV1ServiceListForAllNamespaces; +} +export type ResponseContentType$getAPIVersions = keyof Response$getAPIVersions$Status$200; +export interface Params$getAPIVersions { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getAdmissionregistrationAPIGroup = keyof Response$getAdmissionregistrationAPIGroup$Status$200; +export interface Params$getAdmissionregistrationAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getAdmissionregistrationV1APIResources = keyof Response$getAdmissionregistrationV1APIResources$Status$200; +export interface Params$getAdmissionregistrationV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listAdmissionregistrationV1MutatingWebhookConfiguration = keyof Response$listAdmissionregistrationV1MutatingWebhookConfiguration$Status$200; +export interface Params$listAdmissionregistrationV1MutatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$listAdmissionregistrationV1MutatingWebhookConfiguration; +} +export type RequestContentType$createAdmissionregistrationV1MutatingWebhookConfiguration = keyof RequestBody$createAdmissionregistrationV1MutatingWebhookConfiguration; +export type ResponseContentType$createAdmissionregistrationV1MutatingWebhookConfiguration = keyof Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | keyof Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 | keyof Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$202; +export interface Params$createAdmissionregistrationV1MutatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$createAdmissionregistrationV1MutatingWebhookConfiguration; + requestBody: RequestBody$createAdmissionregistrationV1MutatingWebhookConfiguration["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration = keyof RequestBody$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration; +export type ResponseContentType$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration = keyof Response$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration$Status$200; +export interface Params$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration; + requestBody: RequestBody$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration["*/*"]; +} +export type ResponseContentType$readAdmissionregistrationV1MutatingWebhookConfiguration = keyof Response$readAdmissionregistrationV1MutatingWebhookConfiguration$Status$200; +export interface Params$readAdmissionregistrationV1MutatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1MutatingWebhookConfiguration; +} +export type RequestContentType$replaceAdmissionregistrationV1MutatingWebhookConfiguration = keyof RequestBody$replaceAdmissionregistrationV1MutatingWebhookConfiguration; +export type ResponseContentType$replaceAdmissionregistrationV1MutatingWebhookConfiguration = keyof Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | keyof Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$201; +export interface Params$replaceAdmissionregistrationV1MutatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1MutatingWebhookConfiguration; + requestBody: RequestBody$replaceAdmissionregistrationV1MutatingWebhookConfiguration["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1MutatingWebhookConfiguration = keyof RequestBody$deleteAdmissionregistrationV1MutatingWebhookConfiguration; +export type ResponseContentType$deleteAdmissionregistrationV1MutatingWebhookConfiguration = keyof Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | keyof Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$202; +export interface Params$deleteAdmissionregistrationV1MutatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1MutatingWebhookConfiguration; + requestBody: RequestBody$deleteAdmissionregistrationV1MutatingWebhookConfiguration["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1MutatingWebhookConfiguration = keyof RequestBody$patchAdmissionregistrationV1MutatingWebhookConfiguration; +export type ResponseContentType$patchAdmissionregistrationV1MutatingWebhookConfiguration = keyof Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | keyof Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$201; +export interface Params$patchAdmissionregistrationV1MutatingWebhookConfiguration { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1MutatingWebhookConfiguration; + requestBody: RequestBody$patchAdmissionregistrationV1MutatingWebhookConfiguration[T]; +} +export type ResponseContentType$listAdmissionregistrationV1ValidatingWebhookConfiguration = keyof Response$listAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200; +export interface Params$listAdmissionregistrationV1ValidatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$listAdmissionregistrationV1ValidatingWebhookConfiguration; +} +export type RequestContentType$createAdmissionregistrationV1ValidatingWebhookConfiguration = keyof RequestBody$createAdmissionregistrationV1ValidatingWebhookConfiguration; +export type ResponseContentType$createAdmissionregistrationV1ValidatingWebhookConfiguration = keyof Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | keyof Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 | keyof Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202; +export interface Params$createAdmissionregistrationV1ValidatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$createAdmissionregistrationV1ValidatingWebhookConfiguration; + requestBody: RequestBody$createAdmissionregistrationV1ValidatingWebhookConfiguration["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration = keyof RequestBody$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration; +export type ResponseContentType$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration = keyof Response$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration$Status$200; +export interface Params$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration; + requestBody: RequestBody$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration["*/*"]; +} +export type ResponseContentType$readAdmissionregistrationV1ValidatingWebhookConfiguration = keyof Response$readAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200; +export interface Params$readAdmissionregistrationV1ValidatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1ValidatingWebhookConfiguration; +} +export type RequestContentType$replaceAdmissionregistrationV1ValidatingWebhookConfiguration = keyof RequestBody$replaceAdmissionregistrationV1ValidatingWebhookConfiguration; +export type ResponseContentType$replaceAdmissionregistrationV1ValidatingWebhookConfiguration = keyof Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | keyof Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201; +export interface Params$replaceAdmissionregistrationV1ValidatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1ValidatingWebhookConfiguration; + requestBody: RequestBody$replaceAdmissionregistrationV1ValidatingWebhookConfiguration["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1ValidatingWebhookConfiguration = keyof RequestBody$deleteAdmissionregistrationV1ValidatingWebhookConfiguration; +export type ResponseContentType$deleteAdmissionregistrationV1ValidatingWebhookConfiguration = keyof Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | keyof Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202; +export interface Params$deleteAdmissionregistrationV1ValidatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1ValidatingWebhookConfiguration; + requestBody: RequestBody$deleteAdmissionregistrationV1ValidatingWebhookConfiguration["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1ValidatingWebhookConfiguration = keyof RequestBody$patchAdmissionregistrationV1ValidatingWebhookConfiguration; +export type ResponseContentType$patchAdmissionregistrationV1ValidatingWebhookConfiguration = keyof Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | keyof Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201; +export interface Params$patchAdmissionregistrationV1ValidatingWebhookConfiguration { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1ValidatingWebhookConfiguration; + requestBody: RequestBody$patchAdmissionregistrationV1ValidatingWebhookConfiguration[T]; +} +export type ResponseContentType$watchAdmissionregistrationV1MutatingWebhookConfigurationList = keyof Response$watchAdmissionregistrationV1MutatingWebhookConfigurationList$Status$200; +export interface Params$watchAdmissionregistrationV1MutatingWebhookConfigurationList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurationList; +} +export type ResponseContentType$watchAdmissionregistrationV1MutatingWebhookConfiguration = keyof Response$watchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200; +export interface Params$watchAdmissionregistrationV1MutatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1MutatingWebhookConfiguration; +} +export type ResponseContentType$watchAdmissionregistrationV1ValidatingWebhookConfigurationList = keyof Response$watchAdmissionregistrationV1ValidatingWebhookConfigurationList$Status$200; +export interface Params$watchAdmissionregistrationV1ValidatingWebhookConfigurationList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigurationList; +} +export type ResponseContentType$watchAdmissionregistrationV1ValidatingWebhookConfiguration = keyof Response$watchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200; +export interface Params$watchAdmissionregistrationV1ValidatingWebhookConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1ValidatingWebhookConfiguration; +} +export type ResponseContentType$getAdmissionregistrationV1alpha1APIResources = keyof Response$getAdmissionregistrationV1alpha1APIResources$Status$200; +export interface Params$getAdmissionregistrationV1alpha1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof Response$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200; +export interface Params$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; +} +export type RequestContentType$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof RequestBody$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; +export type ResponseContentType$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | keyof Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 | keyof Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202; +export interface Params$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; + requestBody: RequestBody$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy = keyof RequestBody$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy; +export type ResponseContentType$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy = keyof Response$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy$Status$200; +export interface Params$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy; + requestBody: RequestBody$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy["*/*"]; +} +export type ResponseContentType$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200; +export interface Params$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; +} +export type RequestContentType$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; +export type ResponseContentType$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | keyof Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201; +export interface Params$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; + requestBody: RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; +export type ResponseContentType$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | keyof Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202; +export interface Params$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; + requestBody: RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; +export type ResponseContentType$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | keyof Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201; +export interface Params$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; + requestBody: RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy[T]; +} +export type ResponseContentType$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = keyof Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200; +export interface Params$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus; +} +export type RequestContentType$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = keyof RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus; +export type ResponseContentType$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = keyof Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 | keyof Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201; +export interface Params$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus; + requestBody: RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = keyof RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus; +export type ResponseContentType$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = keyof Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 | keyof Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201; +export interface Params$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus; + requestBody: RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus[T]; +} +export type ResponseContentType$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof Response$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200; +export interface Params$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; +} +export type RequestContentType$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof RequestBody$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 | keyof Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202; +export interface Params$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding = keyof RequestBody$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding; +export type ResponseContentType$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding = keyof Response$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding$Status$200; +export interface Params$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding; + requestBody: RequestBody$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding["*/*"]; +} +export type ResponseContentType$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200; +export interface Params$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; +} +export type RequestContentType$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201; +export interface Params$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202; +export interface Params$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201; +export interface Params$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding[T]; +} +export type ResponseContentType$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList = keyof Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList$Status$200; +export interface Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList; +} +export type ResponseContentType$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = keyof Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200; +export interface Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy; +} +export type ResponseContentType$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList = keyof Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList$Status$200; +export interface Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList; +} +export type ResponseContentType$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = keyof Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200; +export interface Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding; +} +export type ResponseContentType$getAdmissionregistrationV1beta1APIResources = keyof Response$getAdmissionregistrationV1beta1APIResources$Status$200; +export interface Params$getAdmissionregistrationV1beta1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof Response$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200; +export interface Params$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy; +} +export type RequestContentType$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof RequestBody$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy; +export type ResponseContentType$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | keyof Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 | keyof Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202; +export interface Params$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy; + requestBody: RequestBody$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy = keyof RequestBody$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy; +export type ResponseContentType$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy = keyof Response$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy$Status$200; +export interface Params$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy; + requestBody: RequestBody$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy["*/*"]; +} +export type ResponseContentType$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200; +export interface Params$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy; +} +export type RequestContentType$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy; +export type ResponseContentType$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | keyof Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201; +export interface Params$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy; + requestBody: RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy; +export type ResponseContentType$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | keyof Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202; +export interface Params$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy; + requestBody: RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy; +export type ResponseContentType$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | keyof Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201; +export interface Params$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy; + requestBody: RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy[T]; +} +export type ResponseContentType$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = keyof Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200; +export interface Params$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus; +} +export type RequestContentType$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = keyof RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus; +export type ResponseContentType$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = keyof Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 | keyof Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201; +export interface Params$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus; + requestBody: RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = keyof RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus; +export type ResponseContentType$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = keyof Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 | keyof Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201; +export interface Params$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus; + requestBody: RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus[T]; +} +export type ResponseContentType$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof Response$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200; +export interface Params$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; +} +export type RequestContentType$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof RequestBody$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 | keyof Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202; +export interface Params$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding = keyof RequestBody$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding; +export type ResponseContentType$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding = keyof Response$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding$Status$200; +export interface Params$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding; + requestBody: RequestBody$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding["*/*"]; +} +export type ResponseContentType$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200; +export interface Params$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; +} +export type RequestContentType$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201; +export interface Params$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding["*/*"]; +} +export type RequestContentType$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202; +export interface Params$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding["*/*"]; +} +export type RequestContentType$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; +export type ResponseContentType$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | keyof Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201; +export interface Params$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; + requestBody: RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding[T]; +} +export type ResponseContentType$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList = keyof Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList$Status$200; +export interface Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList; +} +export type ResponseContentType$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy = keyof Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200; +export interface Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy; +} +export type ResponseContentType$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList = keyof Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList$Status$200; +export interface Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList; +} +export type ResponseContentType$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = keyof Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200; +export interface Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + headers: { + Accept: U; + }; + parameter: Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding; +} +export type ResponseContentType$getApiextensionsAPIGroup = keyof Response$getApiextensionsAPIGroup$Status$200; +export interface Params$getApiextensionsAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getApiextensionsV1APIResources = keyof Response$getApiextensionsV1APIResources$Status$200; +export interface Params$getApiextensionsV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listApiextensionsV1CustomResourceDefinition = keyof Response$listApiextensionsV1CustomResourceDefinition$Status$200; +export interface Params$listApiextensionsV1CustomResourceDefinition { + headers: { + Accept: U; + }; + parameter: Parameter$listApiextensionsV1CustomResourceDefinition; +} +export type RequestContentType$createApiextensionsV1CustomResourceDefinition = keyof RequestBody$createApiextensionsV1CustomResourceDefinition; +export type ResponseContentType$createApiextensionsV1CustomResourceDefinition = keyof Response$createApiextensionsV1CustomResourceDefinition$Status$200 | keyof Response$createApiextensionsV1CustomResourceDefinition$Status$201 | keyof Response$createApiextensionsV1CustomResourceDefinition$Status$202; +export interface Params$createApiextensionsV1CustomResourceDefinition { + headers: { + Accept: U; + }; + parameter: Parameter$createApiextensionsV1CustomResourceDefinition; + requestBody: RequestBody$createApiextensionsV1CustomResourceDefinition["*/*"]; +} +export type RequestContentType$deleteApiextensionsV1CollectionCustomResourceDefinition = keyof RequestBody$deleteApiextensionsV1CollectionCustomResourceDefinition; +export type ResponseContentType$deleteApiextensionsV1CollectionCustomResourceDefinition = keyof Response$deleteApiextensionsV1CollectionCustomResourceDefinition$Status$200; +export interface Params$deleteApiextensionsV1CollectionCustomResourceDefinition { + headers: { + Accept: U; + }; + parameter: Parameter$deleteApiextensionsV1CollectionCustomResourceDefinition; + requestBody: RequestBody$deleteApiextensionsV1CollectionCustomResourceDefinition["*/*"]; +} +export type ResponseContentType$readApiextensionsV1CustomResourceDefinition = keyof Response$readApiextensionsV1CustomResourceDefinition$Status$200; +export interface Params$readApiextensionsV1CustomResourceDefinition { + headers: { + Accept: U; + }; + parameter: Parameter$readApiextensionsV1CustomResourceDefinition; +} +export type RequestContentType$replaceApiextensionsV1CustomResourceDefinition = keyof RequestBody$replaceApiextensionsV1CustomResourceDefinition; +export type ResponseContentType$replaceApiextensionsV1CustomResourceDefinition = keyof Response$replaceApiextensionsV1CustomResourceDefinition$Status$200 | keyof Response$replaceApiextensionsV1CustomResourceDefinition$Status$201; +export interface Params$replaceApiextensionsV1CustomResourceDefinition { + headers: { + Accept: U; + }; + parameter: Parameter$replaceApiextensionsV1CustomResourceDefinition; + requestBody: RequestBody$replaceApiextensionsV1CustomResourceDefinition["*/*"]; +} +export type RequestContentType$deleteApiextensionsV1CustomResourceDefinition = keyof RequestBody$deleteApiextensionsV1CustomResourceDefinition; +export type ResponseContentType$deleteApiextensionsV1CustomResourceDefinition = keyof Response$deleteApiextensionsV1CustomResourceDefinition$Status$200 | keyof Response$deleteApiextensionsV1CustomResourceDefinition$Status$202; +export interface Params$deleteApiextensionsV1CustomResourceDefinition { + headers: { + Accept: U; + }; + parameter: Parameter$deleteApiextensionsV1CustomResourceDefinition; + requestBody: RequestBody$deleteApiextensionsV1CustomResourceDefinition["*/*"]; +} +export type RequestContentType$patchApiextensionsV1CustomResourceDefinition = keyof RequestBody$patchApiextensionsV1CustomResourceDefinition; +export type ResponseContentType$patchApiextensionsV1CustomResourceDefinition = keyof Response$patchApiextensionsV1CustomResourceDefinition$Status$200 | keyof Response$patchApiextensionsV1CustomResourceDefinition$Status$201; +export interface Params$patchApiextensionsV1CustomResourceDefinition { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchApiextensionsV1CustomResourceDefinition; + requestBody: RequestBody$patchApiextensionsV1CustomResourceDefinition[T]; +} +export type ResponseContentType$readApiextensionsV1CustomResourceDefinitionStatus = keyof Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200; +export interface Params$readApiextensionsV1CustomResourceDefinitionStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readApiextensionsV1CustomResourceDefinitionStatus; +} +export type RequestContentType$replaceApiextensionsV1CustomResourceDefinitionStatus = keyof RequestBody$replaceApiextensionsV1CustomResourceDefinitionStatus; +export type ResponseContentType$replaceApiextensionsV1CustomResourceDefinitionStatus = keyof Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$200 | keyof Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$201; +export interface Params$replaceApiextensionsV1CustomResourceDefinitionStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceApiextensionsV1CustomResourceDefinitionStatus; + requestBody: RequestBody$replaceApiextensionsV1CustomResourceDefinitionStatus["*/*"]; +} +export type RequestContentType$patchApiextensionsV1CustomResourceDefinitionStatus = keyof RequestBody$patchApiextensionsV1CustomResourceDefinitionStatus; +export type ResponseContentType$patchApiextensionsV1CustomResourceDefinitionStatus = keyof Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$200 | keyof Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$201; +export interface Params$patchApiextensionsV1CustomResourceDefinitionStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchApiextensionsV1CustomResourceDefinitionStatus; + requestBody: RequestBody$patchApiextensionsV1CustomResourceDefinitionStatus[T]; +} +export type ResponseContentType$watchApiextensionsV1CustomResourceDefinitionList = keyof Response$watchApiextensionsV1CustomResourceDefinitionList$Status$200; +export interface Params$watchApiextensionsV1CustomResourceDefinitionList { + headers: { + Accept: U; + }; + parameter: Parameter$watchApiextensionsV1CustomResourceDefinitionList; +} +export type ResponseContentType$watchApiextensionsV1CustomResourceDefinition = keyof Response$watchApiextensionsV1CustomResourceDefinition$Status$200; +export interface Params$watchApiextensionsV1CustomResourceDefinition { + headers: { + Accept: U; + }; + parameter: Parameter$watchApiextensionsV1CustomResourceDefinition; +} +export type ResponseContentType$getApiregistrationAPIGroup = keyof Response$getApiregistrationAPIGroup$Status$200; +export interface Params$getApiregistrationAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getApiregistrationV1APIResources = keyof Response$getApiregistrationV1APIResources$Status$200; +export interface Params$getApiregistrationV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listApiregistrationV1APIService = keyof Response$listApiregistrationV1APIService$Status$200; +export interface Params$listApiregistrationV1APIService { + headers: { + Accept: U; + }; + parameter: Parameter$listApiregistrationV1APIService; +} +export type RequestContentType$createApiregistrationV1APIService = keyof RequestBody$createApiregistrationV1APIService; +export type ResponseContentType$createApiregistrationV1APIService = keyof Response$createApiregistrationV1APIService$Status$200 | keyof Response$createApiregistrationV1APIService$Status$201 | keyof Response$createApiregistrationV1APIService$Status$202; +export interface Params$createApiregistrationV1APIService { + headers: { + Accept: U; + }; + parameter: Parameter$createApiregistrationV1APIService; + requestBody: RequestBody$createApiregistrationV1APIService["*/*"]; +} +export type RequestContentType$deleteApiregistrationV1CollectionAPIService = keyof RequestBody$deleteApiregistrationV1CollectionAPIService; +export type ResponseContentType$deleteApiregistrationV1CollectionAPIService = keyof Response$deleteApiregistrationV1CollectionAPIService$Status$200; +export interface Params$deleteApiregistrationV1CollectionAPIService { + headers: { + Accept: U; + }; + parameter: Parameter$deleteApiregistrationV1CollectionAPIService; + requestBody: RequestBody$deleteApiregistrationV1CollectionAPIService["*/*"]; +} +export type ResponseContentType$readApiregistrationV1APIService = keyof Response$readApiregistrationV1APIService$Status$200; +export interface Params$readApiregistrationV1APIService { + headers: { + Accept: U; + }; + parameter: Parameter$readApiregistrationV1APIService; +} +export type RequestContentType$replaceApiregistrationV1APIService = keyof RequestBody$replaceApiregistrationV1APIService; +export type ResponseContentType$replaceApiregistrationV1APIService = keyof Response$replaceApiregistrationV1APIService$Status$200 | keyof Response$replaceApiregistrationV1APIService$Status$201; +export interface Params$replaceApiregistrationV1APIService { + headers: { + Accept: U; + }; + parameter: Parameter$replaceApiregistrationV1APIService; + requestBody: RequestBody$replaceApiregistrationV1APIService["*/*"]; +} +export type RequestContentType$deleteApiregistrationV1APIService = keyof RequestBody$deleteApiregistrationV1APIService; +export type ResponseContentType$deleteApiregistrationV1APIService = keyof Response$deleteApiregistrationV1APIService$Status$200 | keyof Response$deleteApiregistrationV1APIService$Status$202; +export interface Params$deleteApiregistrationV1APIService { + headers: { + Accept: U; + }; + parameter: Parameter$deleteApiregistrationV1APIService; + requestBody: RequestBody$deleteApiregistrationV1APIService["*/*"]; +} +export type RequestContentType$patchApiregistrationV1APIService = keyof RequestBody$patchApiregistrationV1APIService; +export type ResponseContentType$patchApiregistrationV1APIService = keyof Response$patchApiregistrationV1APIService$Status$200 | keyof Response$patchApiregistrationV1APIService$Status$201; +export interface Params$patchApiregistrationV1APIService { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchApiregistrationV1APIService; + requestBody: RequestBody$patchApiregistrationV1APIService[T]; +} +export type ResponseContentType$readApiregistrationV1APIServiceStatus = keyof Response$readApiregistrationV1APIServiceStatus$Status$200; +export interface Params$readApiregistrationV1APIServiceStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readApiregistrationV1APIServiceStatus; +} +export type RequestContentType$replaceApiregistrationV1APIServiceStatus = keyof RequestBody$replaceApiregistrationV1APIServiceStatus; +export type ResponseContentType$replaceApiregistrationV1APIServiceStatus = keyof Response$replaceApiregistrationV1APIServiceStatus$Status$200 | keyof Response$replaceApiregistrationV1APIServiceStatus$Status$201; +export interface Params$replaceApiregistrationV1APIServiceStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceApiregistrationV1APIServiceStatus; + requestBody: RequestBody$replaceApiregistrationV1APIServiceStatus["*/*"]; +} +export type RequestContentType$patchApiregistrationV1APIServiceStatus = keyof RequestBody$patchApiregistrationV1APIServiceStatus; +export type ResponseContentType$patchApiregistrationV1APIServiceStatus = keyof Response$patchApiregistrationV1APIServiceStatus$Status$200 | keyof Response$patchApiregistrationV1APIServiceStatus$Status$201; +export interface Params$patchApiregistrationV1APIServiceStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchApiregistrationV1APIServiceStatus; + requestBody: RequestBody$patchApiregistrationV1APIServiceStatus[T]; +} +export type ResponseContentType$watchApiregistrationV1APIServiceList = keyof Response$watchApiregistrationV1APIServiceList$Status$200; +export interface Params$watchApiregistrationV1APIServiceList { + headers: { + Accept: U; + }; + parameter: Parameter$watchApiregistrationV1APIServiceList; +} +export type ResponseContentType$watchApiregistrationV1APIService = keyof Response$watchApiregistrationV1APIService$Status$200; +export interface Params$watchApiregistrationV1APIService { + headers: { + Accept: U; + }; + parameter: Parameter$watchApiregistrationV1APIService; +} +export type ResponseContentType$getAppsAPIGroup = keyof Response$getAppsAPIGroup$Status$200; +export interface Params$getAppsAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getAppsV1APIResources = keyof Response$getAppsV1APIResources$Status$200; +export interface Params$getAppsV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listAppsV1ControllerRevisionForAllNamespaces = keyof Response$listAppsV1ControllerRevisionForAllNamespaces$Status$200; +export interface Params$listAppsV1ControllerRevisionForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1ControllerRevisionForAllNamespaces; +} +export type ResponseContentType$listAppsV1DaemonSetForAllNamespaces = keyof Response$listAppsV1DaemonSetForAllNamespaces$Status$200; +export interface Params$listAppsV1DaemonSetForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1DaemonSetForAllNamespaces; +} +export type ResponseContentType$listAppsV1DeploymentForAllNamespaces = keyof Response$listAppsV1DeploymentForAllNamespaces$Status$200; +export interface Params$listAppsV1DeploymentForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1DeploymentForAllNamespaces; +} +export type ResponseContentType$listAppsV1NamespacedControllerRevision = keyof Response$listAppsV1NamespacedControllerRevision$Status$200; +export interface Params$listAppsV1NamespacedControllerRevision { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1NamespacedControllerRevision; +} +export type RequestContentType$createAppsV1NamespacedControllerRevision = keyof RequestBody$createAppsV1NamespacedControllerRevision; +export type ResponseContentType$createAppsV1NamespacedControllerRevision = keyof Response$createAppsV1NamespacedControllerRevision$Status$200 | keyof Response$createAppsV1NamespacedControllerRevision$Status$201 | keyof Response$createAppsV1NamespacedControllerRevision$Status$202; +export interface Params$createAppsV1NamespacedControllerRevision { + headers: { + Accept: U; + }; + parameter: Parameter$createAppsV1NamespacedControllerRevision; + requestBody: RequestBody$createAppsV1NamespacedControllerRevision["*/*"]; +} +export type RequestContentType$deleteAppsV1CollectionNamespacedControllerRevision = keyof RequestBody$deleteAppsV1CollectionNamespacedControllerRevision; +export type ResponseContentType$deleteAppsV1CollectionNamespacedControllerRevision = keyof Response$deleteAppsV1CollectionNamespacedControllerRevision$Status$200; +export interface Params$deleteAppsV1CollectionNamespacedControllerRevision { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1CollectionNamespacedControllerRevision; + requestBody: RequestBody$deleteAppsV1CollectionNamespacedControllerRevision["*/*"]; +} +export type ResponseContentType$readAppsV1NamespacedControllerRevision = keyof Response$readAppsV1NamespacedControllerRevision$Status$200; +export interface Params$readAppsV1NamespacedControllerRevision { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedControllerRevision; +} +export type RequestContentType$replaceAppsV1NamespacedControllerRevision = keyof RequestBody$replaceAppsV1NamespacedControllerRevision; +export type ResponseContentType$replaceAppsV1NamespacedControllerRevision = keyof Response$replaceAppsV1NamespacedControllerRevision$Status$200 | keyof Response$replaceAppsV1NamespacedControllerRevision$Status$201; +export interface Params$replaceAppsV1NamespacedControllerRevision { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedControllerRevision; + requestBody: RequestBody$replaceAppsV1NamespacedControllerRevision["*/*"]; +} +export type RequestContentType$deleteAppsV1NamespacedControllerRevision = keyof RequestBody$deleteAppsV1NamespacedControllerRevision; +export type ResponseContentType$deleteAppsV1NamespacedControllerRevision = keyof Response$deleteAppsV1NamespacedControllerRevision$Status$200 | keyof Response$deleteAppsV1NamespacedControllerRevision$Status$202; +export interface Params$deleteAppsV1NamespacedControllerRevision { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1NamespacedControllerRevision; + requestBody: RequestBody$deleteAppsV1NamespacedControllerRevision["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedControllerRevision = keyof RequestBody$patchAppsV1NamespacedControllerRevision; +export type ResponseContentType$patchAppsV1NamespacedControllerRevision = keyof Response$patchAppsV1NamespacedControllerRevision$Status$200 | keyof Response$patchAppsV1NamespacedControllerRevision$Status$201; +export interface Params$patchAppsV1NamespacedControllerRevision { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedControllerRevision; + requestBody: RequestBody$patchAppsV1NamespacedControllerRevision[T]; +} +export type ResponseContentType$listAppsV1NamespacedDaemonSet = keyof Response$listAppsV1NamespacedDaemonSet$Status$200; +export interface Params$listAppsV1NamespacedDaemonSet { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1NamespacedDaemonSet; +} +export type RequestContentType$createAppsV1NamespacedDaemonSet = keyof RequestBody$createAppsV1NamespacedDaemonSet; +export type ResponseContentType$createAppsV1NamespacedDaemonSet = keyof Response$createAppsV1NamespacedDaemonSet$Status$200 | keyof Response$createAppsV1NamespacedDaemonSet$Status$201 | keyof Response$createAppsV1NamespacedDaemonSet$Status$202; +export interface Params$createAppsV1NamespacedDaemonSet { + headers: { + Accept: U; + }; + parameter: Parameter$createAppsV1NamespacedDaemonSet; + requestBody: RequestBody$createAppsV1NamespacedDaemonSet["*/*"]; +} +export type RequestContentType$deleteAppsV1CollectionNamespacedDaemonSet = keyof RequestBody$deleteAppsV1CollectionNamespacedDaemonSet; +export type ResponseContentType$deleteAppsV1CollectionNamespacedDaemonSet = keyof Response$deleteAppsV1CollectionNamespacedDaemonSet$Status$200; +export interface Params$deleteAppsV1CollectionNamespacedDaemonSet { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1CollectionNamespacedDaemonSet; + requestBody: RequestBody$deleteAppsV1CollectionNamespacedDaemonSet["*/*"]; +} +export type ResponseContentType$readAppsV1NamespacedDaemonSet = keyof Response$readAppsV1NamespacedDaemonSet$Status$200; +export interface Params$readAppsV1NamespacedDaemonSet { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedDaemonSet; +} +export type RequestContentType$replaceAppsV1NamespacedDaemonSet = keyof RequestBody$replaceAppsV1NamespacedDaemonSet; +export type ResponseContentType$replaceAppsV1NamespacedDaemonSet = keyof Response$replaceAppsV1NamespacedDaemonSet$Status$200 | keyof Response$replaceAppsV1NamespacedDaemonSet$Status$201; +export interface Params$replaceAppsV1NamespacedDaemonSet { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedDaemonSet; + requestBody: RequestBody$replaceAppsV1NamespacedDaemonSet["*/*"]; +} +export type RequestContentType$deleteAppsV1NamespacedDaemonSet = keyof RequestBody$deleteAppsV1NamespacedDaemonSet; +export type ResponseContentType$deleteAppsV1NamespacedDaemonSet = keyof Response$deleteAppsV1NamespacedDaemonSet$Status$200 | keyof Response$deleteAppsV1NamespacedDaemonSet$Status$202; +export interface Params$deleteAppsV1NamespacedDaemonSet { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1NamespacedDaemonSet; + requestBody: RequestBody$deleteAppsV1NamespacedDaemonSet["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedDaemonSet = keyof RequestBody$patchAppsV1NamespacedDaemonSet; +export type ResponseContentType$patchAppsV1NamespacedDaemonSet = keyof Response$patchAppsV1NamespacedDaemonSet$Status$200 | keyof Response$patchAppsV1NamespacedDaemonSet$Status$201; +export interface Params$patchAppsV1NamespacedDaemonSet { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedDaemonSet; + requestBody: RequestBody$patchAppsV1NamespacedDaemonSet[T]; +} +export type ResponseContentType$readAppsV1NamespacedDaemonSetStatus = keyof Response$readAppsV1NamespacedDaemonSetStatus$Status$200; +export interface Params$readAppsV1NamespacedDaemonSetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedDaemonSetStatus; +} +export type RequestContentType$replaceAppsV1NamespacedDaemonSetStatus = keyof RequestBody$replaceAppsV1NamespacedDaemonSetStatus; +export type ResponseContentType$replaceAppsV1NamespacedDaemonSetStatus = keyof Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 | keyof Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201; +export interface Params$replaceAppsV1NamespacedDaemonSetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedDaemonSetStatus; + requestBody: RequestBody$replaceAppsV1NamespacedDaemonSetStatus["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedDaemonSetStatus = keyof RequestBody$patchAppsV1NamespacedDaemonSetStatus; +export type ResponseContentType$patchAppsV1NamespacedDaemonSetStatus = keyof Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 | keyof Response$patchAppsV1NamespacedDaemonSetStatus$Status$201; +export interface Params$patchAppsV1NamespacedDaemonSetStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedDaemonSetStatus; + requestBody: RequestBody$patchAppsV1NamespacedDaemonSetStatus[T]; +} +export type ResponseContentType$listAppsV1NamespacedDeployment = keyof Response$listAppsV1NamespacedDeployment$Status$200; +export interface Params$listAppsV1NamespacedDeployment { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1NamespacedDeployment; +} +export type RequestContentType$createAppsV1NamespacedDeployment = keyof RequestBody$createAppsV1NamespacedDeployment; +export type ResponseContentType$createAppsV1NamespacedDeployment = keyof Response$createAppsV1NamespacedDeployment$Status$200 | keyof Response$createAppsV1NamespacedDeployment$Status$201 | keyof Response$createAppsV1NamespacedDeployment$Status$202; +export interface Params$createAppsV1NamespacedDeployment { + headers: { + Accept: U; + }; + parameter: Parameter$createAppsV1NamespacedDeployment; + requestBody: RequestBody$createAppsV1NamespacedDeployment["*/*"]; +} +export type RequestContentType$deleteAppsV1CollectionNamespacedDeployment = keyof RequestBody$deleteAppsV1CollectionNamespacedDeployment; +export type ResponseContentType$deleteAppsV1CollectionNamespacedDeployment = keyof Response$deleteAppsV1CollectionNamespacedDeployment$Status$200; +export interface Params$deleteAppsV1CollectionNamespacedDeployment { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1CollectionNamespacedDeployment; + requestBody: RequestBody$deleteAppsV1CollectionNamespacedDeployment["*/*"]; +} +export type ResponseContentType$readAppsV1NamespacedDeployment = keyof Response$readAppsV1NamespacedDeployment$Status$200; +export interface Params$readAppsV1NamespacedDeployment { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedDeployment; +} +export type RequestContentType$replaceAppsV1NamespacedDeployment = keyof RequestBody$replaceAppsV1NamespacedDeployment; +export type ResponseContentType$replaceAppsV1NamespacedDeployment = keyof Response$replaceAppsV1NamespacedDeployment$Status$200 | keyof Response$replaceAppsV1NamespacedDeployment$Status$201; +export interface Params$replaceAppsV1NamespacedDeployment { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedDeployment; + requestBody: RequestBody$replaceAppsV1NamespacedDeployment["*/*"]; +} +export type RequestContentType$deleteAppsV1NamespacedDeployment = keyof RequestBody$deleteAppsV1NamespacedDeployment; +export type ResponseContentType$deleteAppsV1NamespacedDeployment = keyof Response$deleteAppsV1NamespacedDeployment$Status$200 | keyof Response$deleteAppsV1NamespacedDeployment$Status$202; +export interface Params$deleteAppsV1NamespacedDeployment { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1NamespacedDeployment; + requestBody: RequestBody$deleteAppsV1NamespacedDeployment["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedDeployment = keyof RequestBody$patchAppsV1NamespacedDeployment; +export type ResponseContentType$patchAppsV1NamespacedDeployment = keyof Response$patchAppsV1NamespacedDeployment$Status$200 | keyof Response$patchAppsV1NamespacedDeployment$Status$201; +export interface Params$patchAppsV1NamespacedDeployment { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedDeployment; + requestBody: RequestBody$patchAppsV1NamespacedDeployment[T]; +} +export type ResponseContentType$readAppsV1NamespacedDeploymentScale = keyof Response$readAppsV1NamespacedDeploymentScale$Status$200; +export interface Params$readAppsV1NamespacedDeploymentScale { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedDeploymentScale; +} +export type RequestContentType$replaceAppsV1NamespacedDeploymentScale = keyof RequestBody$replaceAppsV1NamespacedDeploymentScale; +export type ResponseContentType$replaceAppsV1NamespacedDeploymentScale = keyof Response$replaceAppsV1NamespacedDeploymentScale$Status$200 | keyof Response$replaceAppsV1NamespacedDeploymentScale$Status$201; +export interface Params$replaceAppsV1NamespacedDeploymentScale { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedDeploymentScale; + requestBody: RequestBody$replaceAppsV1NamespacedDeploymentScale["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedDeploymentScale = keyof RequestBody$patchAppsV1NamespacedDeploymentScale; +export type ResponseContentType$patchAppsV1NamespacedDeploymentScale = keyof Response$patchAppsV1NamespacedDeploymentScale$Status$200 | keyof Response$patchAppsV1NamespacedDeploymentScale$Status$201; +export interface Params$patchAppsV1NamespacedDeploymentScale { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedDeploymentScale; + requestBody: RequestBody$patchAppsV1NamespacedDeploymentScale[T]; +} +export type ResponseContentType$readAppsV1NamespacedDeploymentStatus = keyof Response$readAppsV1NamespacedDeploymentStatus$Status$200; +export interface Params$readAppsV1NamespacedDeploymentStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedDeploymentStatus; +} +export type RequestContentType$replaceAppsV1NamespacedDeploymentStatus = keyof RequestBody$replaceAppsV1NamespacedDeploymentStatus; +export type ResponseContentType$replaceAppsV1NamespacedDeploymentStatus = keyof Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 | keyof Response$replaceAppsV1NamespacedDeploymentStatus$Status$201; +export interface Params$replaceAppsV1NamespacedDeploymentStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedDeploymentStatus; + requestBody: RequestBody$replaceAppsV1NamespacedDeploymentStatus["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedDeploymentStatus = keyof RequestBody$patchAppsV1NamespacedDeploymentStatus; +export type ResponseContentType$patchAppsV1NamespacedDeploymentStatus = keyof Response$patchAppsV1NamespacedDeploymentStatus$Status$200 | keyof Response$patchAppsV1NamespacedDeploymentStatus$Status$201; +export interface Params$patchAppsV1NamespacedDeploymentStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedDeploymentStatus; + requestBody: RequestBody$patchAppsV1NamespacedDeploymentStatus[T]; +} +export type ResponseContentType$listAppsV1NamespacedReplicaSet = keyof Response$listAppsV1NamespacedReplicaSet$Status$200; +export interface Params$listAppsV1NamespacedReplicaSet { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1NamespacedReplicaSet; +} +export type RequestContentType$createAppsV1NamespacedReplicaSet = keyof RequestBody$createAppsV1NamespacedReplicaSet; +export type ResponseContentType$createAppsV1NamespacedReplicaSet = keyof Response$createAppsV1NamespacedReplicaSet$Status$200 | keyof Response$createAppsV1NamespacedReplicaSet$Status$201 | keyof Response$createAppsV1NamespacedReplicaSet$Status$202; +export interface Params$createAppsV1NamespacedReplicaSet { + headers: { + Accept: U; + }; + parameter: Parameter$createAppsV1NamespacedReplicaSet; + requestBody: RequestBody$createAppsV1NamespacedReplicaSet["*/*"]; +} +export type RequestContentType$deleteAppsV1CollectionNamespacedReplicaSet = keyof RequestBody$deleteAppsV1CollectionNamespacedReplicaSet; +export type ResponseContentType$deleteAppsV1CollectionNamespacedReplicaSet = keyof Response$deleteAppsV1CollectionNamespacedReplicaSet$Status$200; +export interface Params$deleteAppsV1CollectionNamespacedReplicaSet { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1CollectionNamespacedReplicaSet; + requestBody: RequestBody$deleteAppsV1CollectionNamespacedReplicaSet["*/*"]; +} +export type ResponseContentType$readAppsV1NamespacedReplicaSet = keyof Response$readAppsV1NamespacedReplicaSet$Status$200; +export interface Params$readAppsV1NamespacedReplicaSet { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedReplicaSet; +} +export type RequestContentType$replaceAppsV1NamespacedReplicaSet = keyof RequestBody$replaceAppsV1NamespacedReplicaSet; +export type ResponseContentType$replaceAppsV1NamespacedReplicaSet = keyof Response$replaceAppsV1NamespacedReplicaSet$Status$200 | keyof Response$replaceAppsV1NamespacedReplicaSet$Status$201; +export interface Params$replaceAppsV1NamespacedReplicaSet { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedReplicaSet; + requestBody: RequestBody$replaceAppsV1NamespacedReplicaSet["*/*"]; +} +export type RequestContentType$deleteAppsV1NamespacedReplicaSet = keyof RequestBody$deleteAppsV1NamespacedReplicaSet; +export type ResponseContentType$deleteAppsV1NamespacedReplicaSet = keyof Response$deleteAppsV1NamespacedReplicaSet$Status$200 | keyof Response$deleteAppsV1NamespacedReplicaSet$Status$202; +export interface Params$deleteAppsV1NamespacedReplicaSet { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1NamespacedReplicaSet; + requestBody: RequestBody$deleteAppsV1NamespacedReplicaSet["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedReplicaSet = keyof RequestBody$patchAppsV1NamespacedReplicaSet; +export type ResponseContentType$patchAppsV1NamespacedReplicaSet = keyof Response$patchAppsV1NamespacedReplicaSet$Status$200 | keyof Response$patchAppsV1NamespacedReplicaSet$Status$201; +export interface Params$patchAppsV1NamespacedReplicaSet { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedReplicaSet; + requestBody: RequestBody$patchAppsV1NamespacedReplicaSet[T]; +} +export type ResponseContentType$readAppsV1NamespacedReplicaSetScale = keyof Response$readAppsV1NamespacedReplicaSetScale$Status$200; +export interface Params$readAppsV1NamespacedReplicaSetScale { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedReplicaSetScale; +} +export type RequestContentType$replaceAppsV1NamespacedReplicaSetScale = keyof RequestBody$replaceAppsV1NamespacedReplicaSetScale; +export type ResponseContentType$replaceAppsV1NamespacedReplicaSetScale = keyof Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 | keyof Response$replaceAppsV1NamespacedReplicaSetScale$Status$201; +export interface Params$replaceAppsV1NamespacedReplicaSetScale { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedReplicaSetScale; + requestBody: RequestBody$replaceAppsV1NamespacedReplicaSetScale["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedReplicaSetScale = keyof RequestBody$patchAppsV1NamespacedReplicaSetScale; +export type ResponseContentType$patchAppsV1NamespacedReplicaSetScale = keyof Response$patchAppsV1NamespacedReplicaSetScale$Status$200 | keyof Response$patchAppsV1NamespacedReplicaSetScale$Status$201; +export interface Params$patchAppsV1NamespacedReplicaSetScale { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedReplicaSetScale; + requestBody: RequestBody$patchAppsV1NamespacedReplicaSetScale[T]; +} +export type ResponseContentType$readAppsV1NamespacedReplicaSetStatus = keyof Response$readAppsV1NamespacedReplicaSetStatus$Status$200; +export interface Params$readAppsV1NamespacedReplicaSetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedReplicaSetStatus; +} +export type RequestContentType$replaceAppsV1NamespacedReplicaSetStatus = keyof RequestBody$replaceAppsV1NamespacedReplicaSetStatus; +export type ResponseContentType$replaceAppsV1NamespacedReplicaSetStatus = keyof Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 | keyof Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201; +export interface Params$replaceAppsV1NamespacedReplicaSetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedReplicaSetStatus; + requestBody: RequestBody$replaceAppsV1NamespacedReplicaSetStatus["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedReplicaSetStatus = keyof RequestBody$patchAppsV1NamespacedReplicaSetStatus; +export type ResponseContentType$patchAppsV1NamespacedReplicaSetStatus = keyof Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 | keyof Response$patchAppsV1NamespacedReplicaSetStatus$Status$201; +export interface Params$patchAppsV1NamespacedReplicaSetStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedReplicaSetStatus; + requestBody: RequestBody$patchAppsV1NamespacedReplicaSetStatus[T]; +} +export type ResponseContentType$listAppsV1NamespacedStatefulSet = keyof Response$listAppsV1NamespacedStatefulSet$Status$200; +export interface Params$listAppsV1NamespacedStatefulSet { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1NamespacedStatefulSet; +} +export type RequestContentType$createAppsV1NamespacedStatefulSet = keyof RequestBody$createAppsV1NamespacedStatefulSet; +export type ResponseContentType$createAppsV1NamespacedStatefulSet = keyof Response$createAppsV1NamespacedStatefulSet$Status$200 | keyof Response$createAppsV1NamespacedStatefulSet$Status$201 | keyof Response$createAppsV1NamespacedStatefulSet$Status$202; +export interface Params$createAppsV1NamespacedStatefulSet { + headers: { + Accept: U; + }; + parameter: Parameter$createAppsV1NamespacedStatefulSet; + requestBody: RequestBody$createAppsV1NamespacedStatefulSet["*/*"]; +} +export type RequestContentType$deleteAppsV1CollectionNamespacedStatefulSet = keyof RequestBody$deleteAppsV1CollectionNamespacedStatefulSet; +export type ResponseContentType$deleteAppsV1CollectionNamespacedStatefulSet = keyof Response$deleteAppsV1CollectionNamespacedStatefulSet$Status$200; +export interface Params$deleteAppsV1CollectionNamespacedStatefulSet { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1CollectionNamespacedStatefulSet; + requestBody: RequestBody$deleteAppsV1CollectionNamespacedStatefulSet["*/*"]; +} +export type ResponseContentType$readAppsV1NamespacedStatefulSet = keyof Response$readAppsV1NamespacedStatefulSet$Status$200; +export interface Params$readAppsV1NamespacedStatefulSet { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedStatefulSet; +} +export type RequestContentType$replaceAppsV1NamespacedStatefulSet = keyof RequestBody$replaceAppsV1NamespacedStatefulSet; +export type ResponseContentType$replaceAppsV1NamespacedStatefulSet = keyof Response$replaceAppsV1NamespacedStatefulSet$Status$200 | keyof Response$replaceAppsV1NamespacedStatefulSet$Status$201; +export interface Params$replaceAppsV1NamespacedStatefulSet { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedStatefulSet; + requestBody: RequestBody$replaceAppsV1NamespacedStatefulSet["*/*"]; +} +export type RequestContentType$deleteAppsV1NamespacedStatefulSet = keyof RequestBody$deleteAppsV1NamespacedStatefulSet; +export type ResponseContentType$deleteAppsV1NamespacedStatefulSet = keyof Response$deleteAppsV1NamespacedStatefulSet$Status$200 | keyof Response$deleteAppsV1NamespacedStatefulSet$Status$202; +export interface Params$deleteAppsV1NamespacedStatefulSet { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAppsV1NamespacedStatefulSet; + requestBody: RequestBody$deleteAppsV1NamespacedStatefulSet["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedStatefulSet = keyof RequestBody$patchAppsV1NamespacedStatefulSet; +export type ResponseContentType$patchAppsV1NamespacedStatefulSet = keyof Response$patchAppsV1NamespacedStatefulSet$Status$200 | keyof Response$patchAppsV1NamespacedStatefulSet$Status$201; +export interface Params$patchAppsV1NamespacedStatefulSet { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedStatefulSet; + requestBody: RequestBody$patchAppsV1NamespacedStatefulSet[T]; +} +export type ResponseContentType$readAppsV1NamespacedStatefulSetScale = keyof Response$readAppsV1NamespacedStatefulSetScale$Status$200; +export interface Params$readAppsV1NamespacedStatefulSetScale { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedStatefulSetScale; +} +export type RequestContentType$replaceAppsV1NamespacedStatefulSetScale = keyof RequestBody$replaceAppsV1NamespacedStatefulSetScale; +export type ResponseContentType$replaceAppsV1NamespacedStatefulSetScale = keyof Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 | keyof Response$replaceAppsV1NamespacedStatefulSetScale$Status$201; +export interface Params$replaceAppsV1NamespacedStatefulSetScale { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedStatefulSetScale; + requestBody: RequestBody$replaceAppsV1NamespacedStatefulSetScale["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedStatefulSetScale = keyof RequestBody$patchAppsV1NamespacedStatefulSetScale; +export type ResponseContentType$patchAppsV1NamespacedStatefulSetScale = keyof Response$patchAppsV1NamespacedStatefulSetScale$Status$200 | keyof Response$patchAppsV1NamespacedStatefulSetScale$Status$201; +export interface Params$patchAppsV1NamespacedStatefulSetScale { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedStatefulSetScale; + requestBody: RequestBody$patchAppsV1NamespacedStatefulSetScale[T]; +} +export type ResponseContentType$readAppsV1NamespacedStatefulSetStatus = keyof Response$readAppsV1NamespacedStatefulSetStatus$Status$200; +export interface Params$readAppsV1NamespacedStatefulSetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAppsV1NamespacedStatefulSetStatus; +} +export type RequestContentType$replaceAppsV1NamespacedStatefulSetStatus = keyof RequestBody$replaceAppsV1NamespacedStatefulSetStatus; +export type ResponseContentType$replaceAppsV1NamespacedStatefulSetStatus = keyof Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 | keyof Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201; +export interface Params$replaceAppsV1NamespacedStatefulSetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAppsV1NamespacedStatefulSetStatus; + requestBody: RequestBody$replaceAppsV1NamespacedStatefulSetStatus["*/*"]; +} +export type RequestContentType$patchAppsV1NamespacedStatefulSetStatus = keyof RequestBody$patchAppsV1NamespacedStatefulSetStatus; +export type ResponseContentType$patchAppsV1NamespacedStatefulSetStatus = keyof Response$patchAppsV1NamespacedStatefulSetStatus$Status$200 | keyof Response$patchAppsV1NamespacedStatefulSetStatus$Status$201; +export interface Params$patchAppsV1NamespacedStatefulSetStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAppsV1NamespacedStatefulSetStatus; + requestBody: RequestBody$patchAppsV1NamespacedStatefulSetStatus[T]; +} +export type ResponseContentType$listAppsV1ReplicaSetForAllNamespaces = keyof Response$listAppsV1ReplicaSetForAllNamespaces$Status$200; +export interface Params$listAppsV1ReplicaSetForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1ReplicaSetForAllNamespaces; +} +export type ResponseContentType$listAppsV1StatefulSetForAllNamespaces = keyof Response$listAppsV1StatefulSetForAllNamespaces$Status$200; +export interface Params$listAppsV1StatefulSetForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listAppsV1StatefulSetForAllNamespaces; +} +export type ResponseContentType$watchAppsV1ControllerRevisionListForAllNamespaces = keyof Response$watchAppsV1ControllerRevisionListForAllNamespaces$Status$200; +export interface Params$watchAppsV1ControllerRevisionListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1ControllerRevisionListForAllNamespaces; +} +export type ResponseContentType$watchAppsV1DaemonSetListForAllNamespaces = keyof Response$watchAppsV1DaemonSetListForAllNamespaces$Status$200; +export interface Params$watchAppsV1DaemonSetListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1DaemonSetListForAllNamespaces; +} +export type ResponseContentType$watchAppsV1DeploymentListForAllNamespaces = keyof Response$watchAppsV1DeploymentListForAllNamespaces$Status$200; +export interface Params$watchAppsV1DeploymentListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1DeploymentListForAllNamespaces; +} +export type ResponseContentType$watchAppsV1NamespacedControllerRevisionList = keyof Response$watchAppsV1NamespacedControllerRevisionList$Status$200; +export interface Params$watchAppsV1NamespacedControllerRevisionList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedControllerRevisionList; +} +export type ResponseContentType$watchAppsV1NamespacedControllerRevision = keyof Response$watchAppsV1NamespacedControllerRevision$Status$200; +export interface Params$watchAppsV1NamespacedControllerRevision { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedControllerRevision; +} +export type ResponseContentType$watchAppsV1NamespacedDaemonSetList = keyof Response$watchAppsV1NamespacedDaemonSetList$Status$200; +export interface Params$watchAppsV1NamespacedDaemonSetList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedDaemonSetList; +} +export type ResponseContentType$watchAppsV1NamespacedDaemonSet = keyof Response$watchAppsV1NamespacedDaemonSet$Status$200; +export interface Params$watchAppsV1NamespacedDaemonSet { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedDaemonSet; +} +export type ResponseContentType$watchAppsV1NamespacedDeploymentList = keyof Response$watchAppsV1NamespacedDeploymentList$Status$200; +export interface Params$watchAppsV1NamespacedDeploymentList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedDeploymentList; +} +export type ResponseContentType$watchAppsV1NamespacedDeployment = keyof Response$watchAppsV1NamespacedDeployment$Status$200; +export interface Params$watchAppsV1NamespacedDeployment { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedDeployment; +} +export type ResponseContentType$watchAppsV1NamespacedReplicaSetList = keyof Response$watchAppsV1NamespacedReplicaSetList$Status$200; +export interface Params$watchAppsV1NamespacedReplicaSetList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedReplicaSetList; +} +export type ResponseContentType$watchAppsV1NamespacedReplicaSet = keyof Response$watchAppsV1NamespacedReplicaSet$Status$200; +export interface Params$watchAppsV1NamespacedReplicaSet { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedReplicaSet; +} +export type ResponseContentType$watchAppsV1NamespacedStatefulSetList = keyof Response$watchAppsV1NamespacedStatefulSetList$Status$200; +export interface Params$watchAppsV1NamespacedStatefulSetList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedStatefulSetList; +} +export type ResponseContentType$watchAppsV1NamespacedStatefulSet = keyof Response$watchAppsV1NamespacedStatefulSet$Status$200; +export interface Params$watchAppsV1NamespacedStatefulSet { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1NamespacedStatefulSet; +} +export type ResponseContentType$watchAppsV1ReplicaSetListForAllNamespaces = keyof Response$watchAppsV1ReplicaSetListForAllNamespaces$Status$200; +export interface Params$watchAppsV1ReplicaSetListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1ReplicaSetListForAllNamespaces; +} +export type ResponseContentType$watchAppsV1StatefulSetListForAllNamespaces = keyof Response$watchAppsV1StatefulSetListForAllNamespaces$Status$200; +export interface Params$watchAppsV1StatefulSetListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchAppsV1StatefulSetListForAllNamespaces; +} +export type ResponseContentType$getAuthenticationAPIGroup = keyof Response$getAuthenticationAPIGroup$Status$200; +export interface Params$getAuthenticationAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getAuthenticationV1APIResources = keyof Response$getAuthenticationV1APIResources$Status$200; +export interface Params$getAuthenticationV1APIResources { + headers: { + Accept: U; + }; +} +export type RequestContentType$createAuthenticationV1SelfSubjectReview = keyof RequestBody$createAuthenticationV1SelfSubjectReview; +export type ResponseContentType$createAuthenticationV1SelfSubjectReview = keyof Response$createAuthenticationV1SelfSubjectReview$Status$200 | keyof Response$createAuthenticationV1SelfSubjectReview$Status$201 | keyof Response$createAuthenticationV1SelfSubjectReview$Status$202; +export interface Params$createAuthenticationV1SelfSubjectReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthenticationV1SelfSubjectReview; + requestBody: RequestBody$createAuthenticationV1SelfSubjectReview["*/*"]; +} +export type RequestContentType$createAuthenticationV1TokenReview = keyof RequestBody$createAuthenticationV1TokenReview; +export type ResponseContentType$createAuthenticationV1TokenReview = keyof Response$createAuthenticationV1TokenReview$Status$200 | keyof Response$createAuthenticationV1TokenReview$Status$201 | keyof Response$createAuthenticationV1TokenReview$Status$202; +export interface Params$createAuthenticationV1TokenReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthenticationV1TokenReview; + requestBody: RequestBody$createAuthenticationV1TokenReview["*/*"]; +} +export type ResponseContentType$getAuthenticationV1alpha1APIResources = keyof Response$getAuthenticationV1alpha1APIResources$Status$200; +export interface Params$getAuthenticationV1alpha1APIResources { + headers: { + Accept: U; + }; +} +export type RequestContentType$createAuthenticationV1alpha1SelfSubjectReview = keyof RequestBody$createAuthenticationV1alpha1SelfSubjectReview; +export type ResponseContentType$createAuthenticationV1alpha1SelfSubjectReview = keyof Response$createAuthenticationV1alpha1SelfSubjectReview$Status$200 | keyof Response$createAuthenticationV1alpha1SelfSubjectReview$Status$201 | keyof Response$createAuthenticationV1alpha1SelfSubjectReview$Status$202; +export interface Params$createAuthenticationV1alpha1SelfSubjectReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthenticationV1alpha1SelfSubjectReview; + requestBody: RequestBody$createAuthenticationV1alpha1SelfSubjectReview["*/*"]; +} +export type ResponseContentType$getAuthenticationV1beta1APIResources = keyof Response$getAuthenticationV1beta1APIResources$Status$200; +export interface Params$getAuthenticationV1beta1APIResources { + headers: { + Accept: U; + }; +} +export type RequestContentType$createAuthenticationV1beta1SelfSubjectReview = keyof RequestBody$createAuthenticationV1beta1SelfSubjectReview; +export type ResponseContentType$createAuthenticationV1beta1SelfSubjectReview = keyof Response$createAuthenticationV1beta1SelfSubjectReview$Status$200 | keyof Response$createAuthenticationV1beta1SelfSubjectReview$Status$201 | keyof Response$createAuthenticationV1beta1SelfSubjectReview$Status$202; +export interface Params$createAuthenticationV1beta1SelfSubjectReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthenticationV1beta1SelfSubjectReview; + requestBody: RequestBody$createAuthenticationV1beta1SelfSubjectReview["*/*"]; +} +export type ResponseContentType$getAuthorizationAPIGroup = keyof Response$getAuthorizationAPIGroup$Status$200; +export interface Params$getAuthorizationAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getAuthorizationV1APIResources = keyof Response$getAuthorizationV1APIResources$Status$200; +export interface Params$getAuthorizationV1APIResources { + headers: { + Accept: U; + }; +} +export type RequestContentType$createAuthorizationV1NamespacedLocalSubjectAccessReview = keyof RequestBody$createAuthorizationV1NamespacedLocalSubjectAccessReview; +export type ResponseContentType$createAuthorizationV1NamespacedLocalSubjectAccessReview = keyof Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$200 | keyof Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$201 | keyof Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$202; +export interface Params$createAuthorizationV1NamespacedLocalSubjectAccessReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthorizationV1NamespacedLocalSubjectAccessReview; + requestBody: RequestBody$createAuthorizationV1NamespacedLocalSubjectAccessReview["*/*"]; +} +export type RequestContentType$createAuthorizationV1SelfSubjectAccessReview = keyof RequestBody$createAuthorizationV1SelfSubjectAccessReview; +export type ResponseContentType$createAuthorizationV1SelfSubjectAccessReview = keyof Response$createAuthorizationV1SelfSubjectAccessReview$Status$200 | keyof Response$createAuthorizationV1SelfSubjectAccessReview$Status$201 | keyof Response$createAuthorizationV1SelfSubjectAccessReview$Status$202; +export interface Params$createAuthorizationV1SelfSubjectAccessReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthorizationV1SelfSubjectAccessReview; + requestBody: RequestBody$createAuthorizationV1SelfSubjectAccessReview["*/*"]; +} +export type RequestContentType$createAuthorizationV1SelfSubjectRulesReview = keyof RequestBody$createAuthorizationV1SelfSubjectRulesReview; +export type ResponseContentType$createAuthorizationV1SelfSubjectRulesReview = keyof Response$createAuthorizationV1SelfSubjectRulesReview$Status$200 | keyof Response$createAuthorizationV1SelfSubjectRulesReview$Status$201 | keyof Response$createAuthorizationV1SelfSubjectRulesReview$Status$202; +export interface Params$createAuthorizationV1SelfSubjectRulesReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthorizationV1SelfSubjectRulesReview; + requestBody: RequestBody$createAuthorizationV1SelfSubjectRulesReview["*/*"]; +} +export type RequestContentType$createAuthorizationV1SubjectAccessReview = keyof RequestBody$createAuthorizationV1SubjectAccessReview; +export type ResponseContentType$createAuthorizationV1SubjectAccessReview = keyof Response$createAuthorizationV1SubjectAccessReview$Status$200 | keyof Response$createAuthorizationV1SubjectAccessReview$Status$201 | keyof Response$createAuthorizationV1SubjectAccessReview$Status$202; +export interface Params$createAuthorizationV1SubjectAccessReview { + headers: { + Accept: U; + }; + parameter: Parameter$createAuthorizationV1SubjectAccessReview; + requestBody: RequestBody$createAuthorizationV1SubjectAccessReview["*/*"]; +} +export type ResponseContentType$getAutoscalingAPIGroup = keyof Response$getAutoscalingAPIGroup$Status$200; +export interface Params$getAutoscalingAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getAutoscalingV1APIResources = keyof Response$getAutoscalingV1APIResources$Status$200; +export interface Params$getAutoscalingV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces = keyof Response$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces$Status$200; +export interface Params$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces; +} +export type ResponseContentType$listAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof Response$listAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$listAutoscalingV1NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$listAutoscalingV1NamespacedHorizontalPodAutoscaler; +} +export type RequestContentType$createAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof RequestBody$createAutoscalingV1NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$createAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 | keyof Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202; +export interface Params$createAutoscalingV1NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$createAutoscalingV1NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$createAutoscalingV1NamespacedHorizontalPodAutoscaler["*/*"]; +} +export type RequestContentType$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler = keyof RequestBody$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler; +export type ResponseContentType$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler = keyof Response$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler["*/*"]; +} +export type ResponseContentType$readAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$readAutoscalingV1NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscaler; +} +export type RequestContentType$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201; +export interface Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler["*/*"]; +} +export type RequestContentType$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof RequestBody$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202; +export interface Params$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler["*/*"]; +} +export type RequestContentType$patchAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$patchAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201; +export interface Params$patchAutoscalingV1NamespacedHorizontalPodAutoscaler { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscaler[T]; +} +export type ResponseContentType$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = keyof Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200; +export interface Params$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus; +} +export type RequestContentType$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = keyof RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus; +export type ResponseContentType$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = keyof Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | keyof Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201; +export interface Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus; + requestBody: RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus["*/*"]; +} +export type RequestContentType$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = keyof RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus; +export type ResponseContentType$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = keyof Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | keyof Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201; +export interface Params$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus; + requestBody: RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus[T]; +} +export type ResponseContentType$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces = keyof Response$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces$Status$200; +export interface Params$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces; +} +export type ResponseContentType$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList = keyof Response$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList$Status$200; +export interface Params$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList; +} +export type ResponseContentType$watchAutoscalingV1NamespacedHorizontalPodAutoscaler = keyof Response$watchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler; +} +export type ResponseContentType$getAutoscalingV2APIResources = keyof Response$getAutoscalingV2APIResources$Status$200; +export interface Params$getAutoscalingV2APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces = keyof Response$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces$Status$200; +export interface Params$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces; +} +export type ResponseContentType$listAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof Response$listAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$listAutoscalingV2NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$listAutoscalingV2NamespacedHorizontalPodAutoscaler; +} +export type RequestContentType$createAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof RequestBody$createAutoscalingV2NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$createAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 | keyof Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202; +export interface Params$createAutoscalingV2NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$createAutoscalingV2NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$createAutoscalingV2NamespacedHorizontalPodAutoscaler["*/*"]; +} +export type RequestContentType$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler = keyof RequestBody$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler; +export type ResponseContentType$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler = keyof Response$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler["*/*"]; +} +export type ResponseContentType$readAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof Response$readAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$readAutoscalingV2NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$readAutoscalingV2NamespacedHorizontalPodAutoscaler; +} +export type RequestContentType$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201; +export interface Params$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler["*/*"]; +} +export type RequestContentType$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof RequestBody$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202; +export interface Params$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler["*/*"]; +} +export type RequestContentType$patchAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscaler; +export type ResponseContentType$patchAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | keyof Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201; +export interface Params$patchAutoscalingV2NamespacedHorizontalPodAutoscaler { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscaler; + requestBody: RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscaler[T]; +} +export type ResponseContentType$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = keyof Response$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200; +export interface Params$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus; +} +export type RequestContentType$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = keyof RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus; +export type ResponseContentType$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = keyof Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 | keyof Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201; +export interface Params$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus; + requestBody: RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus["*/*"]; +} +export type RequestContentType$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = keyof RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus; +export type ResponseContentType$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = keyof Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 | keyof Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201; +export interface Params$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus; + requestBody: RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus[T]; +} +export type ResponseContentType$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces = keyof Response$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces$Status$200; +export interface Params$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces; +} +export type ResponseContentType$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList = keyof Response$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList$Status$200; +export interface Params$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList { + headers: { + Accept: U; + }; + parameter: Parameter$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList; +} +export type ResponseContentType$watchAutoscalingV2NamespacedHorizontalPodAutoscaler = keyof Response$watchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200; +export interface Params$watchAutoscalingV2NamespacedHorizontalPodAutoscaler { + headers: { + Accept: U; + }; + parameter: Parameter$watchAutoscalingV2NamespacedHorizontalPodAutoscaler; +} +export type ResponseContentType$getBatchAPIGroup = keyof Response$getBatchAPIGroup$Status$200; +export interface Params$getBatchAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getBatchV1APIResources = keyof Response$getBatchV1APIResources$Status$200; +export interface Params$getBatchV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listBatchV1CronJobForAllNamespaces = keyof Response$listBatchV1CronJobForAllNamespaces$Status$200; +export interface Params$listBatchV1CronJobForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listBatchV1CronJobForAllNamespaces; +} +export type ResponseContentType$listBatchV1JobForAllNamespaces = keyof Response$listBatchV1JobForAllNamespaces$Status$200; +export interface Params$listBatchV1JobForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listBatchV1JobForAllNamespaces; +} +export type ResponseContentType$listBatchV1NamespacedCronJob = keyof Response$listBatchV1NamespacedCronJob$Status$200; +export interface Params$listBatchV1NamespacedCronJob { + headers: { + Accept: U; + }; + parameter: Parameter$listBatchV1NamespacedCronJob; +} +export type RequestContentType$createBatchV1NamespacedCronJob = keyof RequestBody$createBatchV1NamespacedCronJob; +export type ResponseContentType$createBatchV1NamespacedCronJob = keyof Response$createBatchV1NamespacedCronJob$Status$200 | keyof Response$createBatchV1NamespacedCronJob$Status$201 | keyof Response$createBatchV1NamespacedCronJob$Status$202; +export interface Params$createBatchV1NamespacedCronJob { + headers: { + Accept: U; + }; + parameter: Parameter$createBatchV1NamespacedCronJob; + requestBody: RequestBody$createBatchV1NamespacedCronJob["*/*"]; +} +export type RequestContentType$deleteBatchV1CollectionNamespacedCronJob = keyof RequestBody$deleteBatchV1CollectionNamespacedCronJob; +export type ResponseContentType$deleteBatchV1CollectionNamespacedCronJob = keyof Response$deleteBatchV1CollectionNamespacedCronJob$Status$200; +export interface Params$deleteBatchV1CollectionNamespacedCronJob { + headers: { + Accept: U; + }; + parameter: Parameter$deleteBatchV1CollectionNamespacedCronJob; + requestBody: RequestBody$deleteBatchV1CollectionNamespacedCronJob["*/*"]; +} +export type ResponseContentType$readBatchV1NamespacedCronJob = keyof Response$readBatchV1NamespacedCronJob$Status$200; +export interface Params$readBatchV1NamespacedCronJob { + headers: { + Accept: U; + }; + parameter: Parameter$readBatchV1NamespacedCronJob; +} +export type RequestContentType$replaceBatchV1NamespacedCronJob = keyof RequestBody$replaceBatchV1NamespacedCronJob; +export type ResponseContentType$replaceBatchV1NamespacedCronJob = keyof Response$replaceBatchV1NamespacedCronJob$Status$200 | keyof Response$replaceBatchV1NamespacedCronJob$Status$201; +export interface Params$replaceBatchV1NamespacedCronJob { + headers: { + Accept: U; + }; + parameter: Parameter$replaceBatchV1NamespacedCronJob; + requestBody: RequestBody$replaceBatchV1NamespacedCronJob["*/*"]; +} +export type RequestContentType$deleteBatchV1NamespacedCronJob = keyof RequestBody$deleteBatchV1NamespacedCronJob; +export type ResponseContentType$deleteBatchV1NamespacedCronJob = keyof Response$deleteBatchV1NamespacedCronJob$Status$200 | keyof Response$deleteBatchV1NamespacedCronJob$Status$202; +export interface Params$deleteBatchV1NamespacedCronJob { + headers: { + Accept: U; + }; + parameter: Parameter$deleteBatchV1NamespacedCronJob; + requestBody: RequestBody$deleteBatchV1NamespacedCronJob["*/*"]; +} +export type RequestContentType$patchBatchV1NamespacedCronJob = keyof RequestBody$patchBatchV1NamespacedCronJob; +export type ResponseContentType$patchBatchV1NamespacedCronJob = keyof Response$patchBatchV1NamespacedCronJob$Status$200 | keyof Response$patchBatchV1NamespacedCronJob$Status$201; +export interface Params$patchBatchV1NamespacedCronJob { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchBatchV1NamespacedCronJob; + requestBody: RequestBody$patchBatchV1NamespacedCronJob[T]; +} +export type ResponseContentType$readBatchV1NamespacedCronJobStatus = keyof Response$readBatchV1NamespacedCronJobStatus$Status$200; +export interface Params$readBatchV1NamespacedCronJobStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readBatchV1NamespacedCronJobStatus; +} +export type RequestContentType$replaceBatchV1NamespacedCronJobStatus = keyof RequestBody$replaceBatchV1NamespacedCronJobStatus; +export type ResponseContentType$replaceBatchV1NamespacedCronJobStatus = keyof Response$replaceBatchV1NamespacedCronJobStatus$Status$200 | keyof Response$replaceBatchV1NamespacedCronJobStatus$Status$201; +export interface Params$replaceBatchV1NamespacedCronJobStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceBatchV1NamespacedCronJobStatus; + requestBody: RequestBody$replaceBatchV1NamespacedCronJobStatus["*/*"]; +} +export type RequestContentType$patchBatchV1NamespacedCronJobStatus = keyof RequestBody$patchBatchV1NamespacedCronJobStatus; +export type ResponseContentType$patchBatchV1NamespacedCronJobStatus = keyof Response$patchBatchV1NamespacedCronJobStatus$Status$200 | keyof Response$patchBatchV1NamespacedCronJobStatus$Status$201; +export interface Params$patchBatchV1NamespacedCronJobStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchBatchV1NamespacedCronJobStatus; + requestBody: RequestBody$patchBatchV1NamespacedCronJobStatus[T]; +} +export type ResponseContentType$listBatchV1NamespacedJob = keyof Response$listBatchV1NamespacedJob$Status$200; +export interface Params$listBatchV1NamespacedJob { + headers: { + Accept: U; + }; + parameter: Parameter$listBatchV1NamespacedJob; +} +export type RequestContentType$createBatchV1NamespacedJob = keyof RequestBody$createBatchV1NamespacedJob; +export type ResponseContentType$createBatchV1NamespacedJob = keyof Response$createBatchV1NamespacedJob$Status$200 | keyof Response$createBatchV1NamespacedJob$Status$201 | keyof Response$createBatchV1NamespacedJob$Status$202; +export interface Params$createBatchV1NamespacedJob { + headers: { + Accept: U; + }; + parameter: Parameter$createBatchV1NamespacedJob; + requestBody: RequestBody$createBatchV1NamespacedJob["*/*"]; +} +export type RequestContentType$deleteBatchV1CollectionNamespacedJob = keyof RequestBody$deleteBatchV1CollectionNamespacedJob; +export type ResponseContentType$deleteBatchV1CollectionNamespacedJob = keyof Response$deleteBatchV1CollectionNamespacedJob$Status$200; +export interface Params$deleteBatchV1CollectionNamespacedJob { + headers: { + Accept: U; + }; + parameter: Parameter$deleteBatchV1CollectionNamespacedJob; + requestBody: RequestBody$deleteBatchV1CollectionNamespacedJob["*/*"]; +} +export type ResponseContentType$readBatchV1NamespacedJob = keyof Response$readBatchV1NamespacedJob$Status$200; +export interface Params$readBatchV1NamespacedJob { + headers: { + Accept: U; + }; + parameter: Parameter$readBatchV1NamespacedJob; +} +export type RequestContentType$replaceBatchV1NamespacedJob = keyof RequestBody$replaceBatchV1NamespacedJob; +export type ResponseContentType$replaceBatchV1NamespacedJob = keyof Response$replaceBatchV1NamespacedJob$Status$200 | keyof Response$replaceBatchV1NamespacedJob$Status$201; +export interface Params$replaceBatchV1NamespacedJob { + headers: { + Accept: U; + }; + parameter: Parameter$replaceBatchV1NamespacedJob; + requestBody: RequestBody$replaceBatchV1NamespacedJob["*/*"]; +} +export type RequestContentType$deleteBatchV1NamespacedJob = keyof RequestBody$deleteBatchV1NamespacedJob; +export type ResponseContentType$deleteBatchV1NamespacedJob = keyof Response$deleteBatchV1NamespacedJob$Status$200 | keyof Response$deleteBatchV1NamespacedJob$Status$202; +export interface Params$deleteBatchV1NamespacedJob { + headers: { + Accept: U; + }; + parameter: Parameter$deleteBatchV1NamespacedJob; + requestBody: RequestBody$deleteBatchV1NamespacedJob["*/*"]; +} +export type RequestContentType$patchBatchV1NamespacedJob = keyof RequestBody$patchBatchV1NamespacedJob; +export type ResponseContentType$patchBatchV1NamespacedJob = keyof Response$patchBatchV1NamespacedJob$Status$200 | keyof Response$patchBatchV1NamespacedJob$Status$201; +export interface Params$patchBatchV1NamespacedJob { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchBatchV1NamespacedJob; + requestBody: RequestBody$patchBatchV1NamespacedJob[T]; +} +export type ResponseContentType$readBatchV1NamespacedJobStatus = keyof Response$readBatchV1NamespacedJobStatus$Status$200; +export interface Params$readBatchV1NamespacedJobStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readBatchV1NamespacedJobStatus; +} +export type RequestContentType$replaceBatchV1NamespacedJobStatus = keyof RequestBody$replaceBatchV1NamespacedJobStatus; +export type ResponseContentType$replaceBatchV1NamespacedJobStatus = keyof Response$replaceBatchV1NamespacedJobStatus$Status$200 | keyof Response$replaceBatchV1NamespacedJobStatus$Status$201; +export interface Params$replaceBatchV1NamespacedJobStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceBatchV1NamespacedJobStatus; + requestBody: RequestBody$replaceBatchV1NamespacedJobStatus["*/*"]; +} +export type RequestContentType$patchBatchV1NamespacedJobStatus = keyof RequestBody$patchBatchV1NamespacedJobStatus; +export type ResponseContentType$patchBatchV1NamespacedJobStatus = keyof Response$patchBatchV1NamespacedJobStatus$Status$200 | keyof Response$patchBatchV1NamespacedJobStatus$Status$201; +export interface Params$patchBatchV1NamespacedJobStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchBatchV1NamespacedJobStatus; + requestBody: RequestBody$patchBatchV1NamespacedJobStatus[T]; +} +export type ResponseContentType$watchBatchV1CronJobListForAllNamespaces = keyof Response$watchBatchV1CronJobListForAllNamespaces$Status$200; +export interface Params$watchBatchV1CronJobListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchBatchV1CronJobListForAllNamespaces; +} +export type ResponseContentType$watchBatchV1JobListForAllNamespaces = keyof Response$watchBatchV1JobListForAllNamespaces$Status$200; +export interface Params$watchBatchV1JobListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchBatchV1JobListForAllNamespaces; +} +export type ResponseContentType$watchBatchV1NamespacedCronJobList = keyof Response$watchBatchV1NamespacedCronJobList$Status$200; +export interface Params$watchBatchV1NamespacedCronJobList { + headers: { + Accept: U; + }; + parameter: Parameter$watchBatchV1NamespacedCronJobList; +} +export type ResponseContentType$watchBatchV1NamespacedCronJob = keyof Response$watchBatchV1NamespacedCronJob$Status$200; +export interface Params$watchBatchV1NamespacedCronJob { + headers: { + Accept: U; + }; + parameter: Parameter$watchBatchV1NamespacedCronJob; +} +export type ResponseContentType$watchBatchV1NamespacedJobList = keyof Response$watchBatchV1NamespacedJobList$Status$200; +export interface Params$watchBatchV1NamespacedJobList { + headers: { + Accept: U; + }; + parameter: Parameter$watchBatchV1NamespacedJobList; +} +export type ResponseContentType$watchBatchV1NamespacedJob = keyof Response$watchBatchV1NamespacedJob$Status$200; +export interface Params$watchBatchV1NamespacedJob { + headers: { + Accept: U; + }; + parameter: Parameter$watchBatchV1NamespacedJob; +} +export type ResponseContentType$getCertificatesAPIGroup = keyof Response$getCertificatesAPIGroup$Status$200; +export interface Params$getCertificatesAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getCertificatesV1APIResources = keyof Response$getCertificatesV1APIResources$Status$200; +export interface Params$getCertificatesV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listCertificatesV1CertificateSigningRequest = keyof Response$listCertificatesV1CertificateSigningRequest$Status$200; +export interface Params$listCertificatesV1CertificateSigningRequest { + headers: { + Accept: U; + }; + parameter: Parameter$listCertificatesV1CertificateSigningRequest; +} +export type RequestContentType$createCertificatesV1CertificateSigningRequest = keyof RequestBody$createCertificatesV1CertificateSigningRequest; +export type ResponseContentType$createCertificatesV1CertificateSigningRequest = keyof Response$createCertificatesV1CertificateSigningRequest$Status$200 | keyof Response$createCertificatesV1CertificateSigningRequest$Status$201 | keyof Response$createCertificatesV1CertificateSigningRequest$Status$202; +export interface Params$createCertificatesV1CertificateSigningRequest { + headers: { + Accept: U; + }; + parameter: Parameter$createCertificatesV1CertificateSigningRequest; + requestBody: RequestBody$createCertificatesV1CertificateSigningRequest["*/*"]; +} +export type RequestContentType$deleteCertificatesV1CollectionCertificateSigningRequest = keyof RequestBody$deleteCertificatesV1CollectionCertificateSigningRequest; +export type ResponseContentType$deleteCertificatesV1CollectionCertificateSigningRequest = keyof Response$deleteCertificatesV1CollectionCertificateSigningRequest$Status$200; +export interface Params$deleteCertificatesV1CollectionCertificateSigningRequest { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCertificatesV1CollectionCertificateSigningRequest; + requestBody: RequestBody$deleteCertificatesV1CollectionCertificateSigningRequest["*/*"]; +} +export type ResponseContentType$readCertificatesV1CertificateSigningRequest = keyof Response$readCertificatesV1CertificateSigningRequest$Status$200; +export interface Params$readCertificatesV1CertificateSigningRequest { + headers: { + Accept: U; + }; + parameter: Parameter$readCertificatesV1CertificateSigningRequest; +} +export type RequestContentType$replaceCertificatesV1CertificateSigningRequest = keyof RequestBody$replaceCertificatesV1CertificateSigningRequest; +export type ResponseContentType$replaceCertificatesV1CertificateSigningRequest = keyof Response$replaceCertificatesV1CertificateSigningRequest$Status$200 | keyof Response$replaceCertificatesV1CertificateSigningRequest$Status$201; +export interface Params$replaceCertificatesV1CertificateSigningRequest { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCertificatesV1CertificateSigningRequest; + requestBody: RequestBody$replaceCertificatesV1CertificateSigningRequest["*/*"]; +} +export type RequestContentType$deleteCertificatesV1CertificateSigningRequest = keyof RequestBody$deleteCertificatesV1CertificateSigningRequest; +export type ResponseContentType$deleteCertificatesV1CertificateSigningRequest = keyof Response$deleteCertificatesV1CertificateSigningRequest$Status$200 | keyof Response$deleteCertificatesV1CertificateSigningRequest$Status$202; +export interface Params$deleteCertificatesV1CertificateSigningRequest { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCertificatesV1CertificateSigningRequest; + requestBody: RequestBody$deleteCertificatesV1CertificateSigningRequest["*/*"]; +} +export type RequestContentType$patchCertificatesV1CertificateSigningRequest = keyof RequestBody$patchCertificatesV1CertificateSigningRequest; +export type ResponseContentType$patchCertificatesV1CertificateSigningRequest = keyof Response$patchCertificatesV1CertificateSigningRequest$Status$200 | keyof Response$patchCertificatesV1CertificateSigningRequest$Status$201; +export interface Params$patchCertificatesV1CertificateSigningRequest { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCertificatesV1CertificateSigningRequest; + requestBody: RequestBody$patchCertificatesV1CertificateSigningRequest[T]; +} +export type ResponseContentType$readCertificatesV1CertificateSigningRequestApproval = keyof Response$readCertificatesV1CertificateSigningRequestApproval$Status$200; +export interface Params$readCertificatesV1CertificateSigningRequestApproval { + headers: { + Accept: U; + }; + parameter: Parameter$readCertificatesV1CertificateSigningRequestApproval; +} +export type RequestContentType$replaceCertificatesV1CertificateSigningRequestApproval = keyof RequestBody$replaceCertificatesV1CertificateSigningRequestApproval; +export type ResponseContentType$replaceCertificatesV1CertificateSigningRequestApproval = keyof Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$200 | keyof Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$201; +export interface Params$replaceCertificatesV1CertificateSigningRequestApproval { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCertificatesV1CertificateSigningRequestApproval; + requestBody: RequestBody$replaceCertificatesV1CertificateSigningRequestApproval["*/*"]; +} +export type RequestContentType$patchCertificatesV1CertificateSigningRequestApproval = keyof RequestBody$patchCertificatesV1CertificateSigningRequestApproval; +export type ResponseContentType$patchCertificatesV1CertificateSigningRequestApproval = keyof Response$patchCertificatesV1CertificateSigningRequestApproval$Status$200 | keyof Response$patchCertificatesV1CertificateSigningRequestApproval$Status$201; +export interface Params$patchCertificatesV1CertificateSigningRequestApproval { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCertificatesV1CertificateSigningRequestApproval; + requestBody: RequestBody$patchCertificatesV1CertificateSigningRequestApproval[T]; +} +export type ResponseContentType$readCertificatesV1CertificateSigningRequestStatus = keyof Response$readCertificatesV1CertificateSigningRequestStatus$Status$200; +export interface Params$readCertificatesV1CertificateSigningRequestStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readCertificatesV1CertificateSigningRequestStatus; +} +export type RequestContentType$replaceCertificatesV1CertificateSigningRequestStatus = keyof RequestBody$replaceCertificatesV1CertificateSigningRequestStatus; +export type ResponseContentType$replaceCertificatesV1CertificateSigningRequestStatus = keyof Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$200 | keyof Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$201; +export interface Params$replaceCertificatesV1CertificateSigningRequestStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCertificatesV1CertificateSigningRequestStatus; + requestBody: RequestBody$replaceCertificatesV1CertificateSigningRequestStatus["*/*"]; +} +export type RequestContentType$patchCertificatesV1CertificateSigningRequestStatus = keyof RequestBody$patchCertificatesV1CertificateSigningRequestStatus; +export type ResponseContentType$patchCertificatesV1CertificateSigningRequestStatus = keyof Response$patchCertificatesV1CertificateSigningRequestStatus$Status$200 | keyof Response$patchCertificatesV1CertificateSigningRequestStatus$Status$201; +export interface Params$patchCertificatesV1CertificateSigningRequestStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCertificatesV1CertificateSigningRequestStatus; + requestBody: RequestBody$patchCertificatesV1CertificateSigningRequestStatus[T]; +} +export type ResponseContentType$watchCertificatesV1CertificateSigningRequestList = keyof Response$watchCertificatesV1CertificateSigningRequestList$Status$200; +export interface Params$watchCertificatesV1CertificateSigningRequestList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCertificatesV1CertificateSigningRequestList; +} +export type ResponseContentType$watchCertificatesV1CertificateSigningRequest = keyof Response$watchCertificatesV1CertificateSigningRequest$Status$200; +export interface Params$watchCertificatesV1CertificateSigningRequest { + headers: { + Accept: U; + }; + parameter: Parameter$watchCertificatesV1CertificateSigningRequest; +} +export type ResponseContentType$getCertificatesV1alpha1APIResources = keyof Response$getCertificatesV1alpha1APIResources$Status$200; +export interface Params$getCertificatesV1alpha1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listCertificatesV1alpha1ClusterTrustBundle = keyof Response$listCertificatesV1alpha1ClusterTrustBundle$Status$200; +export interface Params$listCertificatesV1alpha1ClusterTrustBundle { + headers: { + Accept: U; + }; + parameter: Parameter$listCertificatesV1alpha1ClusterTrustBundle; +} +export type RequestContentType$createCertificatesV1alpha1ClusterTrustBundle = keyof RequestBody$createCertificatesV1alpha1ClusterTrustBundle; +export type ResponseContentType$createCertificatesV1alpha1ClusterTrustBundle = keyof Response$createCertificatesV1alpha1ClusterTrustBundle$Status$200 | keyof Response$createCertificatesV1alpha1ClusterTrustBundle$Status$201 | keyof Response$createCertificatesV1alpha1ClusterTrustBundle$Status$202; +export interface Params$createCertificatesV1alpha1ClusterTrustBundle { + headers: { + Accept: U; + }; + parameter: Parameter$createCertificatesV1alpha1ClusterTrustBundle; + requestBody: RequestBody$createCertificatesV1alpha1ClusterTrustBundle["*/*"]; +} +export type RequestContentType$deleteCertificatesV1alpha1CollectionClusterTrustBundle = keyof RequestBody$deleteCertificatesV1alpha1CollectionClusterTrustBundle; +export type ResponseContentType$deleteCertificatesV1alpha1CollectionClusterTrustBundle = keyof Response$deleteCertificatesV1alpha1CollectionClusterTrustBundle$Status$200; +export interface Params$deleteCertificatesV1alpha1CollectionClusterTrustBundle { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCertificatesV1alpha1CollectionClusterTrustBundle; + requestBody: RequestBody$deleteCertificatesV1alpha1CollectionClusterTrustBundle["*/*"]; +} +export type ResponseContentType$readCertificatesV1alpha1ClusterTrustBundle = keyof Response$readCertificatesV1alpha1ClusterTrustBundle$Status$200; +export interface Params$readCertificatesV1alpha1ClusterTrustBundle { + headers: { + Accept: U; + }; + parameter: Parameter$readCertificatesV1alpha1ClusterTrustBundle; +} +export type RequestContentType$replaceCertificatesV1alpha1ClusterTrustBundle = keyof RequestBody$replaceCertificatesV1alpha1ClusterTrustBundle; +export type ResponseContentType$replaceCertificatesV1alpha1ClusterTrustBundle = keyof Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$200 | keyof Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$201; +export interface Params$replaceCertificatesV1alpha1ClusterTrustBundle { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCertificatesV1alpha1ClusterTrustBundle; + requestBody: RequestBody$replaceCertificatesV1alpha1ClusterTrustBundle["*/*"]; +} +export type RequestContentType$deleteCertificatesV1alpha1ClusterTrustBundle = keyof RequestBody$deleteCertificatesV1alpha1ClusterTrustBundle; +export type ResponseContentType$deleteCertificatesV1alpha1ClusterTrustBundle = keyof Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$200 | keyof Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$202; +export interface Params$deleteCertificatesV1alpha1ClusterTrustBundle { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCertificatesV1alpha1ClusterTrustBundle; + requestBody: RequestBody$deleteCertificatesV1alpha1ClusterTrustBundle["*/*"]; +} +export type RequestContentType$patchCertificatesV1alpha1ClusterTrustBundle = keyof RequestBody$patchCertificatesV1alpha1ClusterTrustBundle; +export type ResponseContentType$patchCertificatesV1alpha1ClusterTrustBundle = keyof Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$200 | keyof Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$201; +export interface Params$patchCertificatesV1alpha1ClusterTrustBundle { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCertificatesV1alpha1ClusterTrustBundle; + requestBody: RequestBody$patchCertificatesV1alpha1ClusterTrustBundle[T]; +} +export type ResponseContentType$watchCertificatesV1alpha1ClusterTrustBundleList = keyof Response$watchCertificatesV1alpha1ClusterTrustBundleList$Status$200; +export interface Params$watchCertificatesV1alpha1ClusterTrustBundleList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCertificatesV1alpha1ClusterTrustBundleList; +} +export type ResponseContentType$watchCertificatesV1alpha1ClusterTrustBundle = keyof Response$watchCertificatesV1alpha1ClusterTrustBundle$Status$200; +export interface Params$watchCertificatesV1alpha1ClusterTrustBundle { + headers: { + Accept: U; + }; + parameter: Parameter$watchCertificatesV1alpha1ClusterTrustBundle; +} +export type ResponseContentType$getCoordinationAPIGroup = keyof Response$getCoordinationAPIGroup$Status$200; +export interface Params$getCoordinationAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getCoordinationV1APIResources = keyof Response$getCoordinationV1APIResources$Status$200; +export interface Params$getCoordinationV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listCoordinationV1LeaseForAllNamespaces = keyof Response$listCoordinationV1LeaseForAllNamespaces$Status$200; +export interface Params$listCoordinationV1LeaseForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listCoordinationV1LeaseForAllNamespaces; +} +export type ResponseContentType$listCoordinationV1NamespacedLease = keyof Response$listCoordinationV1NamespacedLease$Status$200; +export interface Params$listCoordinationV1NamespacedLease { + headers: { + Accept: U; + }; + parameter: Parameter$listCoordinationV1NamespacedLease; +} +export type RequestContentType$createCoordinationV1NamespacedLease = keyof RequestBody$createCoordinationV1NamespacedLease; +export type ResponseContentType$createCoordinationV1NamespacedLease = keyof Response$createCoordinationV1NamespacedLease$Status$200 | keyof Response$createCoordinationV1NamespacedLease$Status$201 | keyof Response$createCoordinationV1NamespacedLease$Status$202; +export interface Params$createCoordinationV1NamespacedLease { + headers: { + Accept: U; + }; + parameter: Parameter$createCoordinationV1NamespacedLease; + requestBody: RequestBody$createCoordinationV1NamespacedLease["*/*"]; +} +export type RequestContentType$deleteCoordinationV1CollectionNamespacedLease = keyof RequestBody$deleteCoordinationV1CollectionNamespacedLease; +export type ResponseContentType$deleteCoordinationV1CollectionNamespacedLease = keyof Response$deleteCoordinationV1CollectionNamespacedLease$Status$200; +export interface Params$deleteCoordinationV1CollectionNamespacedLease { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoordinationV1CollectionNamespacedLease; + requestBody: RequestBody$deleteCoordinationV1CollectionNamespacedLease["*/*"]; +} +export type ResponseContentType$readCoordinationV1NamespacedLease = keyof Response$readCoordinationV1NamespacedLease$Status$200; +export interface Params$readCoordinationV1NamespacedLease { + headers: { + Accept: U; + }; + parameter: Parameter$readCoordinationV1NamespacedLease; +} +export type RequestContentType$replaceCoordinationV1NamespacedLease = keyof RequestBody$replaceCoordinationV1NamespacedLease; +export type ResponseContentType$replaceCoordinationV1NamespacedLease = keyof Response$replaceCoordinationV1NamespacedLease$Status$200 | keyof Response$replaceCoordinationV1NamespacedLease$Status$201; +export interface Params$replaceCoordinationV1NamespacedLease { + headers: { + Accept: U; + }; + parameter: Parameter$replaceCoordinationV1NamespacedLease; + requestBody: RequestBody$replaceCoordinationV1NamespacedLease["*/*"]; +} +export type RequestContentType$deleteCoordinationV1NamespacedLease = keyof RequestBody$deleteCoordinationV1NamespacedLease; +export type ResponseContentType$deleteCoordinationV1NamespacedLease = keyof Response$deleteCoordinationV1NamespacedLease$Status$200 | keyof Response$deleteCoordinationV1NamespacedLease$Status$202; +export interface Params$deleteCoordinationV1NamespacedLease { + headers: { + Accept: U; + }; + parameter: Parameter$deleteCoordinationV1NamespacedLease; + requestBody: RequestBody$deleteCoordinationV1NamespacedLease["*/*"]; +} +export type RequestContentType$patchCoordinationV1NamespacedLease = keyof RequestBody$patchCoordinationV1NamespacedLease; +export type ResponseContentType$patchCoordinationV1NamespacedLease = keyof Response$patchCoordinationV1NamespacedLease$Status$200 | keyof Response$patchCoordinationV1NamespacedLease$Status$201; +export interface Params$patchCoordinationV1NamespacedLease { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchCoordinationV1NamespacedLease; + requestBody: RequestBody$patchCoordinationV1NamespacedLease[T]; +} +export type ResponseContentType$watchCoordinationV1LeaseListForAllNamespaces = keyof Response$watchCoordinationV1LeaseListForAllNamespaces$Status$200; +export interface Params$watchCoordinationV1LeaseListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoordinationV1LeaseListForAllNamespaces; +} +export type ResponseContentType$watchCoordinationV1NamespacedLeaseList = keyof Response$watchCoordinationV1NamespacedLeaseList$Status$200; +export interface Params$watchCoordinationV1NamespacedLeaseList { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoordinationV1NamespacedLeaseList; +} +export type ResponseContentType$watchCoordinationV1NamespacedLease = keyof Response$watchCoordinationV1NamespacedLease$Status$200; +export interface Params$watchCoordinationV1NamespacedLease { + headers: { + Accept: U; + }; + parameter: Parameter$watchCoordinationV1NamespacedLease; +} +export type ResponseContentType$getDiscoveryAPIGroup = keyof Response$getDiscoveryAPIGroup$Status$200; +export interface Params$getDiscoveryAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getDiscoveryV1APIResources = keyof Response$getDiscoveryV1APIResources$Status$200; +export interface Params$getDiscoveryV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listDiscoveryV1EndpointSliceForAllNamespaces = keyof Response$listDiscoveryV1EndpointSliceForAllNamespaces$Status$200; +export interface Params$listDiscoveryV1EndpointSliceForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listDiscoveryV1EndpointSliceForAllNamespaces; +} +export type ResponseContentType$listDiscoveryV1NamespacedEndpointSlice = keyof Response$listDiscoveryV1NamespacedEndpointSlice$Status$200; +export interface Params$listDiscoveryV1NamespacedEndpointSlice { + headers: { + Accept: U; + }; + parameter: Parameter$listDiscoveryV1NamespacedEndpointSlice; +} +export type RequestContentType$createDiscoveryV1NamespacedEndpointSlice = keyof RequestBody$createDiscoveryV1NamespacedEndpointSlice; +export type ResponseContentType$createDiscoveryV1NamespacedEndpointSlice = keyof Response$createDiscoveryV1NamespacedEndpointSlice$Status$200 | keyof Response$createDiscoveryV1NamespacedEndpointSlice$Status$201 | keyof Response$createDiscoveryV1NamespacedEndpointSlice$Status$202; +export interface Params$createDiscoveryV1NamespacedEndpointSlice { + headers: { + Accept: U; + }; + parameter: Parameter$createDiscoveryV1NamespacedEndpointSlice; + requestBody: RequestBody$createDiscoveryV1NamespacedEndpointSlice["*/*"]; +} +export type RequestContentType$deleteDiscoveryV1CollectionNamespacedEndpointSlice = keyof RequestBody$deleteDiscoveryV1CollectionNamespacedEndpointSlice; +export type ResponseContentType$deleteDiscoveryV1CollectionNamespacedEndpointSlice = keyof Response$deleteDiscoveryV1CollectionNamespacedEndpointSlice$Status$200; +export interface Params$deleteDiscoveryV1CollectionNamespacedEndpointSlice { + headers: { + Accept: U; + }; + parameter: Parameter$deleteDiscoveryV1CollectionNamespacedEndpointSlice; + requestBody: RequestBody$deleteDiscoveryV1CollectionNamespacedEndpointSlice["*/*"]; +} +export type ResponseContentType$readDiscoveryV1NamespacedEndpointSlice = keyof Response$readDiscoveryV1NamespacedEndpointSlice$Status$200; +export interface Params$readDiscoveryV1NamespacedEndpointSlice { + headers: { + Accept: U; + }; + parameter: Parameter$readDiscoveryV1NamespacedEndpointSlice; +} +export type RequestContentType$replaceDiscoveryV1NamespacedEndpointSlice = keyof RequestBody$replaceDiscoveryV1NamespacedEndpointSlice; +export type ResponseContentType$replaceDiscoveryV1NamespacedEndpointSlice = keyof Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$200 | keyof Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$201; +export interface Params$replaceDiscoveryV1NamespacedEndpointSlice { + headers: { + Accept: U; + }; + parameter: Parameter$replaceDiscoveryV1NamespacedEndpointSlice; + requestBody: RequestBody$replaceDiscoveryV1NamespacedEndpointSlice["*/*"]; +} +export type RequestContentType$deleteDiscoveryV1NamespacedEndpointSlice = keyof RequestBody$deleteDiscoveryV1NamespacedEndpointSlice; +export type ResponseContentType$deleteDiscoveryV1NamespacedEndpointSlice = keyof Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$200 | keyof Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$202; +export interface Params$deleteDiscoveryV1NamespacedEndpointSlice { + headers: { + Accept: U; + }; + parameter: Parameter$deleteDiscoveryV1NamespacedEndpointSlice; + requestBody: RequestBody$deleteDiscoveryV1NamespacedEndpointSlice["*/*"]; +} +export type RequestContentType$patchDiscoveryV1NamespacedEndpointSlice = keyof RequestBody$patchDiscoveryV1NamespacedEndpointSlice; +export type ResponseContentType$patchDiscoveryV1NamespacedEndpointSlice = keyof Response$patchDiscoveryV1NamespacedEndpointSlice$Status$200 | keyof Response$patchDiscoveryV1NamespacedEndpointSlice$Status$201; +export interface Params$patchDiscoveryV1NamespacedEndpointSlice { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchDiscoveryV1NamespacedEndpointSlice; + requestBody: RequestBody$patchDiscoveryV1NamespacedEndpointSlice[T]; +} +export type ResponseContentType$watchDiscoveryV1EndpointSliceListForAllNamespaces = keyof Response$watchDiscoveryV1EndpointSliceListForAllNamespaces$Status$200; +export interface Params$watchDiscoveryV1EndpointSliceListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchDiscoveryV1EndpointSliceListForAllNamespaces; +} +export type ResponseContentType$watchDiscoveryV1NamespacedEndpointSliceList = keyof Response$watchDiscoveryV1NamespacedEndpointSliceList$Status$200; +export interface Params$watchDiscoveryV1NamespacedEndpointSliceList { + headers: { + Accept: U; + }; + parameter: Parameter$watchDiscoveryV1NamespacedEndpointSliceList; +} +export type ResponseContentType$watchDiscoveryV1NamespacedEndpointSlice = keyof Response$watchDiscoveryV1NamespacedEndpointSlice$Status$200; +export interface Params$watchDiscoveryV1NamespacedEndpointSlice { + headers: { + Accept: U; + }; + parameter: Parameter$watchDiscoveryV1NamespacedEndpointSlice; +} +export type ResponseContentType$getEventsAPIGroup = keyof Response$getEventsAPIGroup$Status$200; +export interface Params$getEventsAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getEventsV1APIResources = keyof Response$getEventsV1APIResources$Status$200; +export interface Params$getEventsV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listEventsV1EventForAllNamespaces = keyof Response$listEventsV1EventForAllNamespaces$Status$200; +export interface Params$listEventsV1EventForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listEventsV1EventForAllNamespaces; +} +export type ResponseContentType$listEventsV1NamespacedEvent = keyof Response$listEventsV1NamespacedEvent$Status$200; +export interface Params$listEventsV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$listEventsV1NamespacedEvent; +} +export type RequestContentType$createEventsV1NamespacedEvent = keyof RequestBody$createEventsV1NamespacedEvent; +export type ResponseContentType$createEventsV1NamespacedEvent = keyof Response$createEventsV1NamespacedEvent$Status$200 | keyof Response$createEventsV1NamespacedEvent$Status$201 | keyof Response$createEventsV1NamespacedEvent$Status$202; +export interface Params$createEventsV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$createEventsV1NamespacedEvent; + requestBody: RequestBody$createEventsV1NamespacedEvent["*/*"]; +} +export type RequestContentType$deleteEventsV1CollectionNamespacedEvent = keyof RequestBody$deleteEventsV1CollectionNamespacedEvent; +export type ResponseContentType$deleteEventsV1CollectionNamespacedEvent = keyof Response$deleteEventsV1CollectionNamespacedEvent$Status$200; +export interface Params$deleteEventsV1CollectionNamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$deleteEventsV1CollectionNamespacedEvent; + requestBody: RequestBody$deleteEventsV1CollectionNamespacedEvent["*/*"]; +} +export type ResponseContentType$readEventsV1NamespacedEvent = keyof Response$readEventsV1NamespacedEvent$Status$200; +export interface Params$readEventsV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$readEventsV1NamespacedEvent; +} +export type RequestContentType$replaceEventsV1NamespacedEvent = keyof RequestBody$replaceEventsV1NamespacedEvent; +export type ResponseContentType$replaceEventsV1NamespacedEvent = keyof Response$replaceEventsV1NamespacedEvent$Status$200 | keyof Response$replaceEventsV1NamespacedEvent$Status$201; +export interface Params$replaceEventsV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$replaceEventsV1NamespacedEvent; + requestBody: RequestBody$replaceEventsV1NamespacedEvent["*/*"]; +} +export type RequestContentType$deleteEventsV1NamespacedEvent = keyof RequestBody$deleteEventsV1NamespacedEvent; +export type ResponseContentType$deleteEventsV1NamespacedEvent = keyof Response$deleteEventsV1NamespacedEvent$Status$200 | keyof Response$deleteEventsV1NamespacedEvent$Status$202; +export interface Params$deleteEventsV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$deleteEventsV1NamespacedEvent; + requestBody: RequestBody$deleteEventsV1NamespacedEvent["*/*"]; +} +export type RequestContentType$patchEventsV1NamespacedEvent = keyof RequestBody$patchEventsV1NamespacedEvent; +export type ResponseContentType$patchEventsV1NamespacedEvent = keyof Response$patchEventsV1NamespacedEvent$Status$200 | keyof Response$patchEventsV1NamespacedEvent$Status$201; +export interface Params$patchEventsV1NamespacedEvent { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchEventsV1NamespacedEvent; + requestBody: RequestBody$patchEventsV1NamespacedEvent[T]; +} +export type ResponseContentType$watchEventsV1EventListForAllNamespaces = keyof Response$watchEventsV1EventListForAllNamespaces$Status$200; +export interface Params$watchEventsV1EventListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchEventsV1EventListForAllNamespaces; +} +export type ResponseContentType$watchEventsV1NamespacedEventList = keyof Response$watchEventsV1NamespacedEventList$Status$200; +export interface Params$watchEventsV1NamespacedEventList { + headers: { + Accept: U; + }; + parameter: Parameter$watchEventsV1NamespacedEventList; +} +export type ResponseContentType$watchEventsV1NamespacedEvent = keyof Response$watchEventsV1NamespacedEvent$Status$200; +export interface Params$watchEventsV1NamespacedEvent { + headers: { + Accept: U; + }; + parameter: Parameter$watchEventsV1NamespacedEvent; +} +export type ResponseContentType$getFlowcontrolApiserverAPIGroup = keyof Response$getFlowcontrolApiserverAPIGroup$Status$200; +export interface Params$getFlowcontrolApiserverAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getFlowcontrolApiserverV1beta2APIResources = keyof Response$getFlowcontrolApiserverV1beta2APIResources$Status$200; +export interface Params$getFlowcontrolApiserverV1beta2APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listFlowcontrolApiserverV1beta2FlowSchema = keyof Response$listFlowcontrolApiserverV1beta2FlowSchema$Status$200; +export interface Params$listFlowcontrolApiserverV1beta2FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$listFlowcontrolApiserverV1beta2FlowSchema; +} +export type RequestContentType$createFlowcontrolApiserverV1beta2FlowSchema = keyof RequestBody$createFlowcontrolApiserverV1beta2FlowSchema; +export type ResponseContentType$createFlowcontrolApiserverV1beta2FlowSchema = keyof Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$200 | keyof Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$201 | keyof Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$202; +export interface Params$createFlowcontrolApiserverV1beta2FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$createFlowcontrolApiserverV1beta2FlowSchema; + requestBody: RequestBody$createFlowcontrolApiserverV1beta2FlowSchema["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema = keyof RequestBody$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema = keyof Response$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema$Status$200; +export interface Params$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema["*/*"]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta2FlowSchema = keyof Response$readFlowcontrolApiserverV1beta2FlowSchema$Status$200; +export interface Params$readFlowcontrolApiserverV1beta2FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta2FlowSchema; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta2FlowSchema = keyof RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchema; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta2FlowSchema = keyof Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta2FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta2FlowSchema; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchema["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta2FlowSchema = keyof RequestBody$deleteFlowcontrolApiserverV1beta2FlowSchema; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta2FlowSchema = keyof Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$200 | keyof Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$202; +export interface Params$deleteFlowcontrolApiserverV1beta2FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta2FlowSchema; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta2FlowSchema["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta2FlowSchema = keyof RequestBody$patchFlowcontrolApiserverV1beta2FlowSchema; +export type ResponseContentType$patchFlowcontrolApiserverV1beta2FlowSchema = keyof Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta2FlowSchema { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta2FlowSchema; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta2FlowSchema[T]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta2FlowSchemaStatus = keyof Response$readFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200; +export interface Params$readFlowcontrolApiserverV1beta2FlowSchemaStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta2FlowSchemaStatus; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus = keyof RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus = keyof Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta2FlowSchemaStatus = keyof RequestBody$patchFlowcontrolApiserverV1beta2FlowSchemaStatus; +export type ResponseContentType$patchFlowcontrolApiserverV1beta2FlowSchemaStatus = keyof Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta2FlowSchemaStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta2FlowSchemaStatus; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta2FlowSchemaStatus[T]; +} +export type ResponseContentType$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof Response$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200; +export interface Params$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration; +} +export type RequestContentType$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof RequestBody$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration; +export type ResponseContentType$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | keyof Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 | keyof Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202; +export interface Params$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration; + requestBody: RequestBody$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration = keyof RequestBody$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration = keyof Response$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration$Status$200; +export interface Params$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration["*/*"]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof Response$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200; +export interface Params$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof RequestBody$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | keyof Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202; +export interface Params$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration; +export type ResponseContentType$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration[T]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = keyof Response$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200; +export interface Params$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = keyof RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = keyof Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = keyof RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus; +export type ResponseContentType$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = keyof Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus[T]; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta2FlowSchemaList = keyof Response$watchFlowcontrolApiserverV1beta2FlowSchemaList$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta2FlowSchemaList { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta2FlowSchemaList; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta2FlowSchema = keyof Response$watchFlowcontrolApiserverV1beta2FlowSchema$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta2FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta2FlowSchema; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList = keyof Response$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration = keyof Response$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration; +} +export type ResponseContentType$getFlowcontrolApiserverV1beta3APIResources = keyof Response$getFlowcontrolApiserverV1beta3APIResources$Status$200; +export interface Params$getFlowcontrolApiserverV1beta3APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listFlowcontrolApiserverV1beta3FlowSchema = keyof Response$listFlowcontrolApiserverV1beta3FlowSchema$Status$200; +export interface Params$listFlowcontrolApiserverV1beta3FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$listFlowcontrolApiserverV1beta3FlowSchema; +} +export type RequestContentType$createFlowcontrolApiserverV1beta3FlowSchema = keyof RequestBody$createFlowcontrolApiserverV1beta3FlowSchema; +export type ResponseContentType$createFlowcontrolApiserverV1beta3FlowSchema = keyof Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$200 | keyof Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$201 | keyof Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$202; +export interface Params$createFlowcontrolApiserverV1beta3FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$createFlowcontrolApiserverV1beta3FlowSchema; + requestBody: RequestBody$createFlowcontrolApiserverV1beta3FlowSchema["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema = keyof RequestBody$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema = keyof Response$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema$Status$200; +export interface Params$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema["*/*"]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta3FlowSchema = keyof Response$readFlowcontrolApiserverV1beta3FlowSchema$Status$200; +export interface Params$readFlowcontrolApiserverV1beta3FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta3FlowSchema; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta3FlowSchema = keyof RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchema; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta3FlowSchema = keyof Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta3FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta3FlowSchema; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchema["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta3FlowSchema = keyof RequestBody$deleteFlowcontrolApiserverV1beta3FlowSchema; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta3FlowSchema = keyof Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$200 | keyof Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$202; +export interface Params$deleteFlowcontrolApiserverV1beta3FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta3FlowSchema; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta3FlowSchema["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta3FlowSchema = keyof RequestBody$patchFlowcontrolApiserverV1beta3FlowSchema; +export type ResponseContentType$patchFlowcontrolApiserverV1beta3FlowSchema = keyof Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta3FlowSchema { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta3FlowSchema; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta3FlowSchema[T]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta3FlowSchemaStatus = keyof Response$readFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200; +export interface Params$readFlowcontrolApiserverV1beta3FlowSchemaStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta3FlowSchemaStatus; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus = keyof RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus = keyof Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta3FlowSchemaStatus = keyof RequestBody$patchFlowcontrolApiserverV1beta3FlowSchemaStatus; +export type ResponseContentType$patchFlowcontrolApiserverV1beta3FlowSchemaStatus = keyof Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta3FlowSchemaStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta3FlowSchemaStatus; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta3FlowSchemaStatus[T]; +} +export type ResponseContentType$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof Response$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200; +export interface Params$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration; +} +export type RequestContentType$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof RequestBody$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration; +export type ResponseContentType$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | keyof Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 | keyof Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202; +export interface Params$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration; + requestBody: RequestBody$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration = keyof RequestBody$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration = keyof Response$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration$Status$200; +export interface Params$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration["*/*"]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof Response$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200; +export interface Params$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration["*/*"]; +} +export type RequestContentType$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof RequestBody$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration; +export type ResponseContentType$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | keyof Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202; +export interface Params$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration; + requestBody: RequestBody$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration; +export type ResponseContentType$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration[T]; +} +export type ResponseContentType$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = keyof Response$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200; +export interface Params$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus; +} +export type RequestContentType$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = keyof RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus; +export type ResponseContentType$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = keyof Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 | keyof Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201; +export interface Params$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus; + requestBody: RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus["*/*"]; +} +export type RequestContentType$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = keyof RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus; +export type ResponseContentType$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = keyof Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 | keyof Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201; +export interface Params$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus; + requestBody: RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus[T]; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta3FlowSchemaList = keyof Response$watchFlowcontrolApiserverV1beta3FlowSchemaList$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta3FlowSchemaList { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta3FlowSchemaList; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta3FlowSchema = keyof Response$watchFlowcontrolApiserverV1beta3FlowSchema$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta3FlowSchema { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta3FlowSchema; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList = keyof Response$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList; +} +export type ResponseContentType$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration = keyof Response$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200; +export interface Params$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + headers: { + Accept: U; + }; + parameter: Parameter$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration; +} +export type ResponseContentType$getInternalApiserverAPIGroup = keyof Response$getInternalApiserverAPIGroup$Status$200; +export interface Params$getInternalApiserverAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getInternalApiserverV1alpha1APIResources = keyof Response$getInternalApiserverV1alpha1APIResources$Status$200; +export interface Params$getInternalApiserverV1alpha1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listInternalApiserverV1alpha1StorageVersion = keyof Response$listInternalApiserverV1alpha1StorageVersion$Status$200; +export interface Params$listInternalApiserverV1alpha1StorageVersion { + headers: { + Accept: U; + }; + parameter: Parameter$listInternalApiserverV1alpha1StorageVersion; +} +export type RequestContentType$createInternalApiserverV1alpha1StorageVersion = keyof RequestBody$createInternalApiserverV1alpha1StorageVersion; +export type ResponseContentType$createInternalApiserverV1alpha1StorageVersion = keyof Response$createInternalApiserverV1alpha1StorageVersion$Status$200 | keyof Response$createInternalApiserverV1alpha1StorageVersion$Status$201 | keyof Response$createInternalApiserverV1alpha1StorageVersion$Status$202; +export interface Params$createInternalApiserverV1alpha1StorageVersion { + headers: { + Accept: U; + }; + parameter: Parameter$createInternalApiserverV1alpha1StorageVersion; + requestBody: RequestBody$createInternalApiserverV1alpha1StorageVersion["*/*"]; +} +export type RequestContentType$deleteInternalApiserverV1alpha1CollectionStorageVersion = keyof RequestBody$deleteInternalApiserverV1alpha1CollectionStorageVersion; +export type ResponseContentType$deleteInternalApiserverV1alpha1CollectionStorageVersion = keyof Response$deleteInternalApiserverV1alpha1CollectionStorageVersion$Status$200; +export interface Params$deleteInternalApiserverV1alpha1CollectionStorageVersion { + headers: { + Accept: U; + }; + parameter: Parameter$deleteInternalApiserverV1alpha1CollectionStorageVersion; + requestBody: RequestBody$deleteInternalApiserverV1alpha1CollectionStorageVersion["*/*"]; +} +export type ResponseContentType$readInternalApiserverV1alpha1StorageVersion = keyof Response$readInternalApiserverV1alpha1StorageVersion$Status$200; +export interface Params$readInternalApiserverV1alpha1StorageVersion { + headers: { + Accept: U; + }; + parameter: Parameter$readInternalApiserverV1alpha1StorageVersion; +} +export type RequestContentType$replaceInternalApiserverV1alpha1StorageVersion = keyof RequestBody$replaceInternalApiserverV1alpha1StorageVersion; +export type ResponseContentType$replaceInternalApiserverV1alpha1StorageVersion = keyof Response$replaceInternalApiserverV1alpha1StorageVersion$Status$200 | keyof Response$replaceInternalApiserverV1alpha1StorageVersion$Status$201; +export interface Params$replaceInternalApiserverV1alpha1StorageVersion { + headers: { + Accept: U; + }; + parameter: Parameter$replaceInternalApiserverV1alpha1StorageVersion; + requestBody: RequestBody$replaceInternalApiserverV1alpha1StorageVersion["*/*"]; +} +export type RequestContentType$deleteInternalApiserverV1alpha1StorageVersion = keyof RequestBody$deleteInternalApiserverV1alpha1StorageVersion; +export type ResponseContentType$deleteInternalApiserverV1alpha1StorageVersion = keyof Response$deleteInternalApiserverV1alpha1StorageVersion$Status$200 | keyof Response$deleteInternalApiserverV1alpha1StorageVersion$Status$202; +export interface Params$deleteInternalApiserverV1alpha1StorageVersion { + headers: { + Accept: U; + }; + parameter: Parameter$deleteInternalApiserverV1alpha1StorageVersion; + requestBody: RequestBody$deleteInternalApiserverV1alpha1StorageVersion["*/*"]; +} +export type RequestContentType$patchInternalApiserverV1alpha1StorageVersion = keyof RequestBody$patchInternalApiserverV1alpha1StorageVersion; +export type ResponseContentType$patchInternalApiserverV1alpha1StorageVersion = keyof Response$patchInternalApiserverV1alpha1StorageVersion$Status$200 | keyof Response$patchInternalApiserverV1alpha1StorageVersion$Status$201; +export interface Params$patchInternalApiserverV1alpha1StorageVersion { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchInternalApiserverV1alpha1StorageVersion; + requestBody: RequestBody$patchInternalApiserverV1alpha1StorageVersion[T]; +} +export type ResponseContentType$readInternalApiserverV1alpha1StorageVersionStatus = keyof Response$readInternalApiserverV1alpha1StorageVersionStatus$Status$200; +export interface Params$readInternalApiserverV1alpha1StorageVersionStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readInternalApiserverV1alpha1StorageVersionStatus; +} +export type RequestContentType$replaceInternalApiserverV1alpha1StorageVersionStatus = keyof RequestBody$replaceInternalApiserverV1alpha1StorageVersionStatus; +export type ResponseContentType$replaceInternalApiserverV1alpha1StorageVersionStatus = keyof Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$200 | keyof Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$201; +export interface Params$replaceInternalApiserverV1alpha1StorageVersionStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceInternalApiserverV1alpha1StorageVersionStatus; + requestBody: RequestBody$replaceInternalApiserverV1alpha1StorageVersionStatus["*/*"]; +} +export type RequestContentType$patchInternalApiserverV1alpha1StorageVersionStatus = keyof RequestBody$patchInternalApiserverV1alpha1StorageVersionStatus; +export type ResponseContentType$patchInternalApiserverV1alpha1StorageVersionStatus = keyof Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$200 | keyof Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$201; +export interface Params$patchInternalApiserverV1alpha1StorageVersionStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchInternalApiserverV1alpha1StorageVersionStatus; + requestBody: RequestBody$patchInternalApiserverV1alpha1StorageVersionStatus[T]; +} +export type ResponseContentType$watchInternalApiserverV1alpha1StorageVersionList = keyof Response$watchInternalApiserverV1alpha1StorageVersionList$Status$200; +export interface Params$watchInternalApiserverV1alpha1StorageVersionList { + headers: { + Accept: U; + }; + parameter: Parameter$watchInternalApiserverV1alpha1StorageVersionList; +} +export type ResponseContentType$watchInternalApiserverV1alpha1StorageVersion = keyof Response$watchInternalApiserverV1alpha1StorageVersion$Status$200; +export interface Params$watchInternalApiserverV1alpha1StorageVersion { + headers: { + Accept: U; + }; + parameter: Parameter$watchInternalApiserverV1alpha1StorageVersion; +} +export type ResponseContentType$getNetworkingAPIGroup = keyof Response$getNetworkingAPIGroup$Status$200; +export interface Params$getNetworkingAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getNetworkingV1APIResources = keyof Response$getNetworkingV1APIResources$Status$200; +export interface Params$getNetworkingV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listNetworkingV1IngressClass = keyof Response$listNetworkingV1IngressClass$Status$200; +export interface Params$listNetworkingV1IngressClass { + headers: { + Accept: U; + }; + parameter: Parameter$listNetworkingV1IngressClass; +} +export type RequestContentType$createNetworkingV1IngressClass = keyof RequestBody$createNetworkingV1IngressClass; +export type ResponseContentType$createNetworkingV1IngressClass = keyof Response$createNetworkingV1IngressClass$Status$200 | keyof Response$createNetworkingV1IngressClass$Status$201 | keyof Response$createNetworkingV1IngressClass$Status$202; +export interface Params$createNetworkingV1IngressClass { + headers: { + Accept: U; + }; + parameter: Parameter$createNetworkingV1IngressClass; + requestBody: RequestBody$createNetworkingV1IngressClass["*/*"]; +} +export type RequestContentType$deleteNetworkingV1CollectionIngressClass = keyof RequestBody$deleteNetworkingV1CollectionIngressClass; +export type ResponseContentType$deleteNetworkingV1CollectionIngressClass = keyof Response$deleteNetworkingV1CollectionIngressClass$Status$200; +export interface Params$deleteNetworkingV1CollectionIngressClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1CollectionIngressClass; + requestBody: RequestBody$deleteNetworkingV1CollectionIngressClass["*/*"]; +} +export type ResponseContentType$readNetworkingV1IngressClass = keyof Response$readNetworkingV1IngressClass$Status$200; +export interface Params$readNetworkingV1IngressClass { + headers: { + Accept: U; + }; + parameter: Parameter$readNetworkingV1IngressClass; +} +export type RequestContentType$replaceNetworkingV1IngressClass = keyof RequestBody$replaceNetworkingV1IngressClass; +export type ResponseContentType$replaceNetworkingV1IngressClass = keyof Response$replaceNetworkingV1IngressClass$Status$200 | keyof Response$replaceNetworkingV1IngressClass$Status$201; +export interface Params$replaceNetworkingV1IngressClass { + headers: { + Accept: U; + }; + parameter: Parameter$replaceNetworkingV1IngressClass; + requestBody: RequestBody$replaceNetworkingV1IngressClass["*/*"]; +} +export type RequestContentType$deleteNetworkingV1IngressClass = keyof RequestBody$deleteNetworkingV1IngressClass; +export type ResponseContentType$deleteNetworkingV1IngressClass = keyof Response$deleteNetworkingV1IngressClass$Status$200 | keyof Response$deleteNetworkingV1IngressClass$Status$202; +export interface Params$deleteNetworkingV1IngressClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1IngressClass; + requestBody: RequestBody$deleteNetworkingV1IngressClass["*/*"]; +} +export type RequestContentType$patchNetworkingV1IngressClass = keyof RequestBody$patchNetworkingV1IngressClass; +export type ResponseContentType$patchNetworkingV1IngressClass = keyof Response$patchNetworkingV1IngressClass$Status$200 | keyof Response$patchNetworkingV1IngressClass$Status$201; +export interface Params$patchNetworkingV1IngressClass { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchNetworkingV1IngressClass; + requestBody: RequestBody$patchNetworkingV1IngressClass[T]; +} +export type ResponseContentType$listNetworkingV1IngressForAllNamespaces = keyof Response$listNetworkingV1IngressForAllNamespaces$Status$200; +export interface Params$listNetworkingV1IngressForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listNetworkingV1IngressForAllNamespaces; +} +export type ResponseContentType$listNetworkingV1NamespacedIngress = keyof Response$listNetworkingV1NamespacedIngress$Status$200; +export interface Params$listNetworkingV1NamespacedIngress { + headers: { + Accept: U; + }; + parameter: Parameter$listNetworkingV1NamespacedIngress; +} +export type RequestContentType$createNetworkingV1NamespacedIngress = keyof RequestBody$createNetworkingV1NamespacedIngress; +export type ResponseContentType$createNetworkingV1NamespacedIngress = keyof Response$createNetworkingV1NamespacedIngress$Status$200 | keyof Response$createNetworkingV1NamespacedIngress$Status$201 | keyof Response$createNetworkingV1NamespacedIngress$Status$202; +export interface Params$createNetworkingV1NamespacedIngress { + headers: { + Accept: U; + }; + parameter: Parameter$createNetworkingV1NamespacedIngress; + requestBody: RequestBody$createNetworkingV1NamespacedIngress["*/*"]; +} +export type RequestContentType$deleteNetworkingV1CollectionNamespacedIngress = keyof RequestBody$deleteNetworkingV1CollectionNamespacedIngress; +export type ResponseContentType$deleteNetworkingV1CollectionNamespacedIngress = keyof Response$deleteNetworkingV1CollectionNamespacedIngress$Status$200; +export interface Params$deleteNetworkingV1CollectionNamespacedIngress { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1CollectionNamespacedIngress; + requestBody: RequestBody$deleteNetworkingV1CollectionNamespacedIngress["*/*"]; +} +export type ResponseContentType$readNetworkingV1NamespacedIngress = keyof Response$readNetworkingV1NamespacedIngress$Status$200; +export interface Params$readNetworkingV1NamespacedIngress { + headers: { + Accept: U; + }; + parameter: Parameter$readNetworkingV1NamespacedIngress; +} +export type RequestContentType$replaceNetworkingV1NamespacedIngress = keyof RequestBody$replaceNetworkingV1NamespacedIngress; +export type ResponseContentType$replaceNetworkingV1NamespacedIngress = keyof Response$replaceNetworkingV1NamespacedIngress$Status$200 | keyof Response$replaceNetworkingV1NamespacedIngress$Status$201; +export interface Params$replaceNetworkingV1NamespacedIngress { + headers: { + Accept: U; + }; + parameter: Parameter$replaceNetworkingV1NamespacedIngress; + requestBody: RequestBody$replaceNetworkingV1NamespacedIngress["*/*"]; +} +export type RequestContentType$deleteNetworkingV1NamespacedIngress = keyof RequestBody$deleteNetworkingV1NamespacedIngress; +export type ResponseContentType$deleteNetworkingV1NamespacedIngress = keyof Response$deleteNetworkingV1NamespacedIngress$Status$200 | keyof Response$deleteNetworkingV1NamespacedIngress$Status$202; +export interface Params$deleteNetworkingV1NamespacedIngress { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1NamespacedIngress; + requestBody: RequestBody$deleteNetworkingV1NamespacedIngress["*/*"]; +} +export type RequestContentType$patchNetworkingV1NamespacedIngress = keyof RequestBody$patchNetworkingV1NamespacedIngress; +export type ResponseContentType$patchNetworkingV1NamespacedIngress = keyof Response$patchNetworkingV1NamespacedIngress$Status$200 | keyof Response$patchNetworkingV1NamespacedIngress$Status$201; +export interface Params$patchNetworkingV1NamespacedIngress { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchNetworkingV1NamespacedIngress; + requestBody: RequestBody$patchNetworkingV1NamespacedIngress[T]; +} +export type ResponseContentType$readNetworkingV1NamespacedIngressStatus = keyof Response$readNetworkingV1NamespacedIngressStatus$Status$200; +export interface Params$readNetworkingV1NamespacedIngressStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readNetworkingV1NamespacedIngressStatus; +} +export type RequestContentType$replaceNetworkingV1NamespacedIngressStatus = keyof RequestBody$replaceNetworkingV1NamespacedIngressStatus; +export type ResponseContentType$replaceNetworkingV1NamespacedIngressStatus = keyof Response$replaceNetworkingV1NamespacedIngressStatus$Status$200 | keyof Response$replaceNetworkingV1NamespacedIngressStatus$Status$201; +export interface Params$replaceNetworkingV1NamespacedIngressStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceNetworkingV1NamespacedIngressStatus; + requestBody: RequestBody$replaceNetworkingV1NamespacedIngressStatus["*/*"]; +} +export type RequestContentType$patchNetworkingV1NamespacedIngressStatus = keyof RequestBody$patchNetworkingV1NamespacedIngressStatus; +export type ResponseContentType$patchNetworkingV1NamespacedIngressStatus = keyof Response$patchNetworkingV1NamespacedIngressStatus$Status$200 | keyof Response$patchNetworkingV1NamespacedIngressStatus$Status$201; +export interface Params$patchNetworkingV1NamespacedIngressStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchNetworkingV1NamespacedIngressStatus; + requestBody: RequestBody$patchNetworkingV1NamespacedIngressStatus[T]; +} +export type ResponseContentType$listNetworkingV1NamespacedNetworkPolicy = keyof Response$listNetworkingV1NamespacedNetworkPolicy$Status$200; +export interface Params$listNetworkingV1NamespacedNetworkPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$listNetworkingV1NamespacedNetworkPolicy; +} +export type RequestContentType$createNetworkingV1NamespacedNetworkPolicy = keyof RequestBody$createNetworkingV1NamespacedNetworkPolicy; +export type ResponseContentType$createNetworkingV1NamespacedNetworkPolicy = keyof Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 | keyof Response$createNetworkingV1NamespacedNetworkPolicy$Status$201 | keyof Response$createNetworkingV1NamespacedNetworkPolicy$Status$202; +export interface Params$createNetworkingV1NamespacedNetworkPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$createNetworkingV1NamespacedNetworkPolicy; + requestBody: RequestBody$createNetworkingV1NamespacedNetworkPolicy["*/*"]; +} +export type RequestContentType$deleteNetworkingV1CollectionNamespacedNetworkPolicy = keyof RequestBody$deleteNetworkingV1CollectionNamespacedNetworkPolicy; +export type ResponseContentType$deleteNetworkingV1CollectionNamespacedNetworkPolicy = keyof Response$deleteNetworkingV1CollectionNamespacedNetworkPolicy$Status$200; +export interface Params$deleteNetworkingV1CollectionNamespacedNetworkPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1CollectionNamespacedNetworkPolicy; + requestBody: RequestBody$deleteNetworkingV1CollectionNamespacedNetworkPolicy["*/*"]; +} +export type ResponseContentType$readNetworkingV1NamespacedNetworkPolicy = keyof Response$readNetworkingV1NamespacedNetworkPolicy$Status$200; +export interface Params$readNetworkingV1NamespacedNetworkPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$readNetworkingV1NamespacedNetworkPolicy; +} +export type RequestContentType$replaceNetworkingV1NamespacedNetworkPolicy = keyof RequestBody$replaceNetworkingV1NamespacedNetworkPolicy; +export type ResponseContentType$replaceNetworkingV1NamespacedNetworkPolicy = keyof Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 | keyof Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201; +export interface Params$replaceNetworkingV1NamespacedNetworkPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$replaceNetworkingV1NamespacedNetworkPolicy; + requestBody: RequestBody$replaceNetworkingV1NamespacedNetworkPolicy["*/*"]; +} +export type RequestContentType$deleteNetworkingV1NamespacedNetworkPolicy = keyof RequestBody$deleteNetworkingV1NamespacedNetworkPolicy; +export type ResponseContentType$deleteNetworkingV1NamespacedNetworkPolicy = keyof Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 | keyof Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202; +export interface Params$deleteNetworkingV1NamespacedNetworkPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1NamespacedNetworkPolicy; + requestBody: RequestBody$deleteNetworkingV1NamespacedNetworkPolicy["*/*"]; +} +export type RequestContentType$patchNetworkingV1NamespacedNetworkPolicy = keyof RequestBody$patchNetworkingV1NamespacedNetworkPolicy; +export type ResponseContentType$patchNetworkingV1NamespacedNetworkPolicy = keyof Response$patchNetworkingV1NamespacedNetworkPolicy$Status$200 | keyof Response$patchNetworkingV1NamespacedNetworkPolicy$Status$201; +export interface Params$patchNetworkingV1NamespacedNetworkPolicy { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchNetworkingV1NamespacedNetworkPolicy; + requestBody: RequestBody$patchNetworkingV1NamespacedNetworkPolicy[T]; +} +export type ResponseContentType$listNetworkingV1NetworkPolicyForAllNamespaces = keyof Response$listNetworkingV1NetworkPolicyForAllNamespaces$Status$200; +export interface Params$listNetworkingV1NetworkPolicyForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listNetworkingV1NetworkPolicyForAllNamespaces; +} +export type ResponseContentType$watchNetworkingV1IngressClassList = keyof Response$watchNetworkingV1IngressClassList$Status$200; +export interface Params$watchNetworkingV1IngressClassList { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1IngressClassList; +} +export type ResponseContentType$watchNetworkingV1IngressClass = keyof Response$watchNetworkingV1IngressClass$Status$200; +export interface Params$watchNetworkingV1IngressClass { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1IngressClass; +} +export type ResponseContentType$watchNetworkingV1IngressListForAllNamespaces = keyof Response$watchNetworkingV1IngressListForAllNamespaces$Status$200; +export interface Params$watchNetworkingV1IngressListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1IngressListForAllNamespaces; +} +export type ResponseContentType$watchNetworkingV1NamespacedIngressList = keyof Response$watchNetworkingV1NamespacedIngressList$Status$200; +export interface Params$watchNetworkingV1NamespacedIngressList { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1NamespacedIngressList; +} +export type ResponseContentType$watchNetworkingV1NamespacedIngress = keyof Response$watchNetworkingV1NamespacedIngress$Status$200; +export interface Params$watchNetworkingV1NamespacedIngress { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1NamespacedIngress; +} +export type ResponseContentType$watchNetworkingV1NamespacedNetworkPolicyList = keyof Response$watchNetworkingV1NamespacedNetworkPolicyList$Status$200; +export interface Params$watchNetworkingV1NamespacedNetworkPolicyList { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1NamespacedNetworkPolicyList; +} +export type ResponseContentType$watchNetworkingV1NamespacedNetworkPolicy = keyof Response$watchNetworkingV1NamespacedNetworkPolicy$Status$200; +export interface Params$watchNetworkingV1NamespacedNetworkPolicy { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1NamespacedNetworkPolicy; +} +export type ResponseContentType$watchNetworkingV1NetworkPolicyListForAllNamespaces = keyof Response$watchNetworkingV1NetworkPolicyListForAllNamespaces$Status$200; +export interface Params$watchNetworkingV1NetworkPolicyListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1NetworkPolicyListForAllNamespaces; +} +export type ResponseContentType$getNetworkingV1alpha1APIResources = keyof Response$getNetworkingV1alpha1APIResources$Status$200; +export interface Params$getNetworkingV1alpha1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listNetworkingV1alpha1ClusterCIDR = keyof Response$listNetworkingV1alpha1ClusterCIDR$Status$200; +export interface Params$listNetworkingV1alpha1ClusterCIDR { + headers: { + Accept: U; + }; + parameter: Parameter$listNetworkingV1alpha1ClusterCIDR; +} +export type RequestContentType$createNetworkingV1alpha1ClusterCIDR = keyof RequestBody$createNetworkingV1alpha1ClusterCIDR; +export type ResponseContentType$createNetworkingV1alpha1ClusterCIDR = keyof Response$createNetworkingV1alpha1ClusterCIDR$Status$200 | keyof Response$createNetworkingV1alpha1ClusterCIDR$Status$201 | keyof Response$createNetworkingV1alpha1ClusterCIDR$Status$202; +export interface Params$createNetworkingV1alpha1ClusterCIDR { + headers: { + Accept: U; + }; + parameter: Parameter$createNetworkingV1alpha1ClusterCIDR; + requestBody: RequestBody$createNetworkingV1alpha1ClusterCIDR["*/*"]; +} +export type RequestContentType$deleteNetworkingV1alpha1CollectionClusterCIDR = keyof RequestBody$deleteNetworkingV1alpha1CollectionClusterCIDR; +export type ResponseContentType$deleteNetworkingV1alpha1CollectionClusterCIDR = keyof Response$deleteNetworkingV1alpha1CollectionClusterCIDR$Status$200; +export interface Params$deleteNetworkingV1alpha1CollectionClusterCIDR { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1alpha1CollectionClusterCIDR; + requestBody: RequestBody$deleteNetworkingV1alpha1CollectionClusterCIDR["*/*"]; +} +export type ResponseContentType$readNetworkingV1alpha1ClusterCIDR = keyof Response$readNetworkingV1alpha1ClusterCIDR$Status$200; +export interface Params$readNetworkingV1alpha1ClusterCIDR { + headers: { + Accept: U; + }; + parameter: Parameter$readNetworkingV1alpha1ClusterCIDR; +} +export type RequestContentType$replaceNetworkingV1alpha1ClusterCIDR = keyof RequestBody$replaceNetworkingV1alpha1ClusterCIDR; +export type ResponseContentType$replaceNetworkingV1alpha1ClusterCIDR = keyof Response$replaceNetworkingV1alpha1ClusterCIDR$Status$200 | keyof Response$replaceNetworkingV1alpha1ClusterCIDR$Status$201; +export interface Params$replaceNetworkingV1alpha1ClusterCIDR { + headers: { + Accept: U; + }; + parameter: Parameter$replaceNetworkingV1alpha1ClusterCIDR; + requestBody: RequestBody$replaceNetworkingV1alpha1ClusterCIDR["*/*"]; +} +export type RequestContentType$deleteNetworkingV1alpha1ClusterCIDR = keyof RequestBody$deleteNetworkingV1alpha1ClusterCIDR; +export type ResponseContentType$deleteNetworkingV1alpha1ClusterCIDR = keyof Response$deleteNetworkingV1alpha1ClusterCIDR$Status$200 | keyof Response$deleteNetworkingV1alpha1ClusterCIDR$Status$202; +export interface Params$deleteNetworkingV1alpha1ClusterCIDR { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1alpha1ClusterCIDR; + requestBody: RequestBody$deleteNetworkingV1alpha1ClusterCIDR["*/*"]; +} +export type RequestContentType$patchNetworkingV1alpha1ClusterCIDR = keyof RequestBody$patchNetworkingV1alpha1ClusterCIDR; +export type ResponseContentType$patchNetworkingV1alpha1ClusterCIDR = keyof Response$patchNetworkingV1alpha1ClusterCIDR$Status$200 | keyof Response$patchNetworkingV1alpha1ClusterCIDR$Status$201; +export interface Params$patchNetworkingV1alpha1ClusterCIDR { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchNetworkingV1alpha1ClusterCIDR; + requestBody: RequestBody$patchNetworkingV1alpha1ClusterCIDR[T]; +} +export type ResponseContentType$listNetworkingV1alpha1IPAddress = keyof Response$listNetworkingV1alpha1IPAddress$Status$200; +export interface Params$listNetworkingV1alpha1IPAddress { + headers: { + Accept: U; + }; + parameter: Parameter$listNetworkingV1alpha1IPAddress; +} +export type RequestContentType$createNetworkingV1alpha1IPAddress = keyof RequestBody$createNetworkingV1alpha1IPAddress; +export type ResponseContentType$createNetworkingV1alpha1IPAddress = keyof Response$createNetworkingV1alpha1IPAddress$Status$200 | keyof Response$createNetworkingV1alpha1IPAddress$Status$201 | keyof Response$createNetworkingV1alpha1IPAddress$Status$202; +export interface Params$createNetworkingV1alpha1IPAddress { + headers: { + Accept: U; + }; + parameter: Parameter$createNetworkingV1alpha1IPAddress; + requestBody: RequestBody$createNetworkingV1alpha1IPAddress["*/*"]; +} +export type RequestContentType$deleteNetworkingV1alpha1CollectionIPAddress = keyof RequestBody$deleteNetworkingV1alpha1CollectionIPAddress; +export type ResponseContentType$deleteNetworkingV1alpha1CollectionIPAddress = keyof Response$deleteNetworkingV1alpha1CollectionIPAddress$Status$200; +export interface Params$deleteNetworkingV1alpha1CollectionIPAddress { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1alpha1CollectionIPAddress; + requestBody: RequestBody$deleteNetworkingV1alpha1CollectionIPAddress["*/*"]; +} +export type ResponseContentType$readNetworkingV1alpha1IPAddress = keyof Response$readNetworkingV1alpha1IPAddress$Status$200; +export interface Params$readNetworkingV1alpha1IPAddress { + headers: { + Accept: U; + }; + parameter: Parameter$readNetworkingV1alpha1IPAddress; +} +export type RequestContentType$replaceNetworkingV1alpha1IPAddress = keyof RequestBody$replaceNetworkingV1alpha1IPAddress; +export type ResponseContentType$replaceNetworkingV1alpha1IPAddress = keyof Response$replaceNetworkingV1alpha1IPAddress$Status$200 | keyof Response$replaceNetworkingV1alpha1IPAddress$Status$201; +export interface Params$replaceNetworkingV1alpha1IPAddress { + headers: { + Accept: U; + }; + parameter: Parameter$replaceNetworkingV1alpha1IPAddress; + requestBody: RequestBody$replaceNetworkingV1alpha1IPAddress["*/*"]; +} +export type RequestContentType$deleteNetworkingV1alpha1IPAddress = keyof RequestBody$deleteNetworkingV1alpha1IPAddress; +export type ResponseContentType$deleteNetworkingV1alpha1IPAddress = keyof Response$deleteNetworkingV1alpha1IPAddress$Status$200 | keyof Response$deleteNetworkingV1alpha1IPAddress$Status$202; +export interface Params$deleteNetworkingV1alpha1IPAddress { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNetworkingV1alpha1IPAddress; + requestBody: RequestBody$deleteNetworkingV1alpha1IPAddress["*/*"]; +} +export type RequestContentType$patchNetworkingV1alpha1IPAddress = keyof RequestBody$patchNetworkingV1alpha1IPAddress; +export type ResponseContentType$patchNetworkingV1alpha1IPAddress = keyof Response$patchNetworkingV1alpha1IPAddress$Status$200 | keyof Response$patchNetworkingV1alpha1IPAddress$Status$201; +export interface Params$patchNetworkingV1alpha1IPAddress { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchNetworkingV1alpha1IPAddress; + requestBody: RequestBody$patchNetworkingV1alpha1IPAddress[T]; +} +export type ResponseContentType$watchNetworkingV1alpha1ClusterCIDRList = keyof Response$watchNetworkingV1alpha1ClusterCIDRList$Status$200; +export interface Params$watchNetworkingV1alpha1ClusterCIDRList { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1alpha1ClusterCIDRList; +} +export type ResponseContentType$watchNetworkingV1alpha1ClusterCIDR = keyof Response$watchNetworkingV1alpha1ClusterCIDR$Status$200; +export interface Params$watchNetworkingV1alpha1ClusterCIDR { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1alpha1ClusterCIDR; +} +export type ResponseContentType$watchNetworkingV1alpha1IPAddressList = keyof Response$watchNetworkingV1alpha1IPAddressList$Status$200; +export interface Params$watchNetworkingV1alpha1IPAddressList { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1alpha1IPAddressList; +} +export type ResponseContentType$watchNetworkingV1alpha1IPAddress = keyof Response$watchNetworkingV1alpha1IPAddress$Status$200; +export interface Params$watchNetworkingV1alpha1IPAddress { + headers: { + Accept: U; + }; + parameter: Parameter$watchNetworkingV1alpha1IPAddress; +} +export type ResponseContentType$getNodeAPIGroup = keyof Response$getNodeAPIGroup$Status$200; +export interface Params$getNodeAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getNodeV1APIResources = keyof Response$getNodeV1APIResources$Status$200; +export interface Params$getNodeV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listNodeV1RuntimeClass = keyof Response$listNodeV1RuntimeClass$Status$200; +export interface Params$listNodeV1RuntimeClass { + headers: { + Accept: U; + }; + parameter: Parameter$listNodeV1RuntimeClass; +} +export type RequestContentType$createNodeV1RuntimeClass = keyof RequestBody$createNodeV1RuntimeClass; +export type ResponseContentType$createNodeV1RuntimeClass = keyof Response$createNodeV1RuntimeClass$Status$200 | keyof Response$createNodeV1RuntimeClass$Status$201 | keyof Response$createNodeV1RuntimeClass$Status$202; +export interface Params$createNodeV1RuntimeClass { + headers: { + Accept: U; + }; + parameter: Parameter$createNodeV1RuntimeClass; + requestBody: RequestBody$createNodeV1RuntimeClass["*/*"]; +} +export type RequestContentType$deleteNodeV1CollectionRuntimeClass = keyof RequestBody$deleteNodeV1CollectionRuntimeClass; +export type ResponseContentType$deleteNodeV1CollectionRuntimeClass = keyof Response$deleteNodeV1CollectionRuntimeClass$Status$200; +export interface Params$deleteNodeV1CollectionRuntimeClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNodeV1CollectionRuntimeClass; + requestBody: RequestBody$deleteNodeV1CollectionRuntimeClass["*/*"]; +} +export type ResponseContentType$readNodeV1RuntimeClass = keyof Response$readNodeV1RuntimeClass$Status$200; +export interface Params$readNodeV1RuntimeClass { + headers: { + Accept: U; + }; + parameter: Parameter$readNodeV1RuntimeClass; +} +export type RequestContentType$replaceNodeV1RuntimeClass = keyof RequestBody$replaceNodeV1RuntimeClass; +export type ResponseContentType$replaceNodeV1RuntimeClass = keyof Response$replaceNodeV1RuntimeClass$Status$200 | keyof Response$replaceNodeV1RuntimeClass$Status$201; +export interface Params$replaceNodeV1RuntimeClass { + headers: { + Accept: U; + }; + parameter: Parameter$replaceNodeV1RuntimeClass; + requestBody: RequestBody$replaceNodeV1RuntimeClass["*/*"]; +} +export type RequestContentType$deleteNodeV1RuntimeClass = keyof RequestBody$deleteNodeV1RuntimeClass; +export type ResponseContentType$deleteNodeV1RuntimeClass = keyof Response$deleteNodeV1RuntimeClass$Status$200 | keyof Response$deleteNodeV1RuntimeClass$Status$202; +export interface Params$deleteNodeV1RuntimeClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteNodeV1RuntimeClass; + requestBody: RequestBody$deleteNodeV1RuntimeClass["*/*"]; +} +export type RequestContentType$patchNodeV1RuntimeClass = keyof RequestBody$patchNodeV1RuntimeClass; +export type ResponseContentType$patchNodeV1RuntimeClass = keyof Response$patchNodeV1RuntimeClass$Status$200 | keyof Response$patchNodeV1RuntimeClass$Status$201; +export interface Params$patchNodeV1RuntimeClass { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchNodeV1RuntimeClass; + requestBody: RequestBody$patchNodeV1RuntimeClass[T]; +} +export type ResponseContentType$watchNodeV1RuntimeClassList = keyof Response$watchNodeV1RuntimeClassList$Status$200; +export interface Params$watchNodeV1RuntimeClassList { + headers: { + Accept: U; + }; + parameter: Parameter$watchNodeV1RuntimeClassList; +} +export type ResponseContentType$watchNodeV1RuntimeClass = keyof Response$watchNodeV1RuntimeClass$Status$200; +export interface Params$watchNodeV1RuntimeClass { + headers: { + Accept: U; + }; + parameter: Parameter$watchNodeV1RuntimeClass; +} +export type ResponseContentType$getPolicyAPIGroup = keyof Response$getPolicyAPIGroup$Status$200; +export interface Params$getPolicyAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getPolicyV1APIResources = keyof Response$getPolicyV1APIResources$Status$200; +export interface Params$getPolicyV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listPolicyV1NamespacedPodDisruptionBudget = keyof Response$listPolicyV1NamespacedPodDisruptionBudget$Status$200; +export interface Params$listPolicyV1NamespacedPodDisruptionBudget { + headers: { + Accept: U; + }; + parameter: Parameter$listPolicyV1NamespacedPodDisruptionBudget; +} +export type RequestContentType$createPolicyV1NamespacedPodDisruptionBudget = keyof RequestBody$createPolicyV1NamespacedPodDisruptionBudget; +export type ResponseContentType$createPolicyV1NamespacedPodDisruptionBudget = keyof Response$createPolicyV1NamespacedPodDisruptionBudget$Status$200 | keyof Response$createPolicyV1NamespacedPodDisruptionBudget$Status$201 | keyof Response$createPolicyV1NamespacedPodDisruptionBudget$Status$202; +export interface Params$createPolicyV1NamespacedPodDisruptionBudget { + headers: { + Accept: U; + }; + parameter: Parameter$createPolicyV1NamespacedPodDisruptionBudget; + requestBody: RequestBody$createPolicyV1NamespacedPodDisruptionBudget["*/*"]; +} +export type RequestContentType$deletePolicyV1CollectionNamespacedPodDisruptionBudget = keyof RequestBody$deletePolicyV1CollectionNamespacedPodDisruptionBudget; +export type ResponseContentType$deletePolicyV1CollectionNamespacedPodDisruptionBudget = keyof Response$deletePolicyV1CollectionNamespacedPodDisruptionBudget$Status$200; +export interface Params$deletePolicyV1CollectionNamespacedPodDisruptionBudget { + headers: { + Accept: U; + }; + parameter: Parameter$deletePolicyV1CollectionNamespacedPodDisruptionBudget; + requestBody: RequestBody$deletePolicyV1CollectionNamespacedPodDisruptionBudget["*/*"]; +} +export type ResponseContentType$readPolicyV1NamespacedPodDisruptionBudget = keyof Response$readPolicyV1NamespacedPodDisruptionBudget$Status$200; +export interface Params$readPolicyV1NamespacedPodDisruptionBudget { + headers: { + Accept: U; + }; + parameter: Parameter$readPolicyV1NamespacedPodDisruptionBudget; +} +export type RequestContentType$replacePolicyV1NamespacedPodDisruptionBudget = keyof RequestBody$replacePolicyV1NamespacedPodDisruptionBudget; +export type ResponseContentType$replacePolicyV1NamespacedPodDisruptionBudget = keyof Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$200 | keyof Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$201; +export interface Params$replacePolicyV1NamespacedPodDisruptionBudget { + headers: { + Accept: U; + }; + parameter: Parameter$replacePolicyV1NamespacedPodDisruptionBudget; + requestBody: RequestBody$replacePolicyV1NamespacedPodDisruptionBudget["*/*"]; +} +export type RequestContentType$deletePolicyV1NamespacedPodDisruptionBudget = keyof RequestBody$deletePolicyV1NamespacedPodDisruptionBudget; +export type ResponseContentType$deletePolicyV1NamespacedPodDisruptionBudget = keyof Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$200 | keyof Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$202; +export interface Params$deletePolicyV1NamespacedPodDisruptionBudget { + headers: { + Accept: U; + }; + parameter: Parameter$deletePolicyV1NamespacedPodDisruptionBudget; + requestBody: RequestBody$deletePolicyV1NamespacedPodDisruptionBudget["*/*"]; +} +export type RequestContentType$patchPolicyV1NamespacedPodDisruptionBudget = keyof RequestBody$patchPolicyV1NamespacedPodDisruptionBudget; +export type ResponseContentType$patchPolicyV1NamespacedPodDisruptionBudget = keyof Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$200 | keyof Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$201; +export interface Params$patchPolicyV1NamespacedPodDisruptionBudget { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchPolicyV1NamespacedPodDisruptionBudget; + requestBody: RequestBody$patchPolicyV1NamespacedPodDisruptionBudget[T]; +} +export type ResponseContentType$readPolicyV1NamespacedPodDisruptionBudgetStatus = keyof Response$readPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200; +export interface Params$readPolicyV1NamespacedPodDisruptionBudgetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readPolicyV1NamespacedPodDisruptionBudgetStatus; +} +export type RequestContentType$replacePolicyV1NamespacedPodDisruptionBudgetStatus = keyof RequestBody$replacePolicyV1NamespacedPodDisruptionBudgetStatus; +export type ResponseContentType$replacePolicyV1NamespacedPodDisruptionBudgetStatus = keyof Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 | keyof Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$201; +export interface Params$replacePolicyV1NamespacedPodDisruptionBudgetStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replacePolicyV1NamespacedPodDisruptionBudgetStatus; + requestBody: RequestBody$replacePolicyV1NamespacedPodDisruptionBudgetStatus["*/*"]; +} +export type RequestContentType$patchPolicyV1NamespacedPodDisruptionBudgetStatus = keyof RequestBody$patchPolicyV1NamespacedPodDisruptionBudgetStatus; +export type ResponseContentType$patchPolicyV1NamespacedPodDisruptionBudgetStatus = keyof Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 | keyof Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$201; +export interface Params$patchPolicyV1NamespacedPodDisruptionBudgetStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchPolicyV1NamespacedPodDisruptionBudgetStatus; + requestBody: RequestBody$patchPolicyV1NamespacedPodDisruptionBudgetStatus[T]; +} +export type ResponseContentType$listPolicyV1PodDisruptionBudgetForAllNamespaces = keyof Response$listPolicyV1PodDisruptionBudgetForAllNamespaces$Status$200; +export interface Params$listPolicyV1PodDisruptionBudgetForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listPolicyV1PodDisruptionBudgetForAllNamespaces; +} +export type ResponseContentType$watchPolicyV1NamespacedPodDisruptionBudgetList = keyof Response$watchPolicyV1NamespacedPodDisruptionBudgetList$Status$200; +export interface Params$watchPolicyV1NamespacedPodDisruptionBudgetList { + headers: { + Accept: U; + }; + parameter: Parameter$watchPolicyV1NamespacedPodDisruptionBudgetList; +} +export type ResponseContentType$watchPolicyV1NamespacedPodDisruptionBudget = keyof Response$watchPolicyV1NamespacedPodDisruptionBudget$Status$200; +export interface Params$watchPolicyV1NamespacedPodDisruptionBudget { + headers: { + Accept: U; + }; + parameter: Parameter$watchPolicyV1NamespacedPodDisruptionBudget; +} +export type ResponseContentType$watchPolicyV1PodDisruptionBudgetListForAllNamespaces = keyof Response$watchPolicyV1PodDisruptionBudgetListForAllNamespaces$Status$200; +export interface Params$watchPolicyV1PodDisruptionBudgetListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchPolicyV1PodDisruptionBudgetListForAllNamespaces; +} +export type ResponseContentType$getRbacAuthorizationAPIGroup = keyof Response$getRbacAuthorizationAPIGroup$Status$200; +export interface Params$getRbacAuthorizationAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getRbacAuthorizationV1APIResources = keyof Response$getRbacAuthorizationV1APIResources$Status$200; +export interface Params$getRbacAuthorizationV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listRbacAuthorizationV1ClusterRoleBinding = keyof Response$listRbacAuthorizationV1ClusterRoleBinding$Status$200; +export interface Params$listRbacAuthorizationV1ClusterRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$listRbacAuthorizationV1ClusterRoleBinding; +} +export type RequestContentType$createRbacAuthorizationV1ClusterRoleBinding = keyof RequestBody$createRbacAuthorizationV1ClusterRoleBinding; +export type ResponseContentType$createRbacAuthorizationV1ClusterRoleBinding = keyof Response$createRbacAuthorizationV1ClusterRoleBinding$Status$200 | keyof Response$createRbacAuthorizationV1ClusterRoleBinding$Status$201 | keyof Response$createRbacAuthorizationV1ClusterRoleBinding$Status$202; +export interface Params$createRbacAuthorizationV1ClusterRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$createRbacAuthorizationV1ClusterRoleBinding; + requestBody: RequestBody$createRbacAuthorizationV1ClusterRoleBinding["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1CollectionClusterRoleBinding = keyof RequestBody$deleteRbacAuthorizationV1CollectionClusterRoleBinding; +export type ResponseContentType$deleteRbacAuthorizationV1CollectionClusterRoleBinding = keyof Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$Status$200; +export interface Params$deleteRbacAuthorizationV1CollectionClusterRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1CollectionClusterRoleBinding; + requestBody: RequestBody$deleteRbacAuthorizationV1CollectionClusterRoleBinding["*/*"]; +} +export type ResponseContentType$readRbacAuthorizationV1ClusterRoleBinding = keyof Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200; +export interface Params$readRbacAuthorizationV1ClusterRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$readRbacAuthorizationV1ClusterRoleBinding; +} +export type RequestContentType$replaceRbacAuthorizationV1ClusterRoleBinding = keyof RequestBody$replaceRbacAuthorizationV1ClusterRoleBinding; +export type ResponseContentType$replaceRbacAuthorizationV1ClusterRoleBinding = keyof Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$200 | keyof Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$201; +export interface Params$replaceRbacAuthorizationV1ClusterRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$replaceRbacAuthorizationV1ClusterRoleBinding; + requestBody: RequestBody$replaceRbacAuthorizationV1ClusterRoleBinding["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1ClusterRoleBinding = keyof RequestBody$deleteRbacAuthorizationV1ClusterRoleBinding; +export type ResponseContentType$deleteRbacAuthorizationV1ClusterRoleBinding = keyof Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$200 | keyof Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202; +export interface Params$deleteRbacAuthorizationV1ClusterRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1ClusterRoleBinding; + requestBody: RequestBody$deleteRbacAuthorizationV1ClusterRoleBinding["*/*"]; +} +export type RequestContentType$patchRbacAuthorizationV1ClusterRoleBinding = keyof RequestBody$patchRbacAuthorizationV1ClusterRoleBinding; +export type ResponseContentType$patchRbacAuthorizationV1ClusterRoleBinding = keyof Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$200 | keyof Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$201; +export interface Params$patchRbacAuthorizationV1ClusterRoleBinding { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchRbacAuthorizationV1ClusterRoleBinding; + requestBody: RequestBody$patchRbacAuthorizationV1ClusterRoleBinding[T]; +} +export type ResponseContentType$listRbacAuthorizationV1ClusterRole = keyof Response$listRbacAuthorizationV1ClusterRole$Status$200; +export interface Params$listRbacAuthorizationV1ClusterRole { + headers: { + Accept: U; + }; + parameter: Parameter$listRbacAuthorizationV1ClusterRole; +} +export type RequestContentType$createRbacAuthorizationV1ClusterRole = keyof RequestBody$createRbacAuthorizationV1ClusterRole; +export type ResponseContentType$createRbacAuthorizationV1ClusterRole = keyof Response$createRbacAuthorizationV1ClusterRole$Status$200 | keyof Response$createRbacAuthorizationV1ClusterRole$Status$201 | keyof Response$createRbacAuthorizationV1ClusterRole$Status$202; +export interface Params$createRbacAuthorizationV1ClusterRole { + headers: { + Accept: U; + }; + parameter: Parameter$createRbacAuthorizationV1ClusterRole; + requestBody: RequestBody$createRbacAuthorizationV1ClusterRole["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1CollectionClusterRole = keyof RequestBody$deleteRbacAuthorizationV1CollectionClusterRole; +export type ResponseContentType$deleteRbacAuthorizationV1CollectionClusterRole = keyof Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$200; +export interface Params$deleteRbacAuthorizationV1CollectionClusterRole { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1CollectionClusterRole; + requestBody: RequestBody$deleteRbacAuthorizationV1CollectionClusterRole["*/*"]; +} +export type ResponseContentType$readRbacAuthorizationV1ClusterRole = keyof Response$readRbacAuthorizationV1ClusterRole$Status$200; +export interface Params$readRbacAuthorizationV1ClusterRole { + headers: { + Accept: U; + }; + parameter: Parameter$readRbacAuthorizationV1ClusterRole; +} +export type RequestContentType$replaceRbacAuthorizationV1ClusterRole = keyof RequestBody$replaceRbacAuthorizationV1ClusterRole; +export type ResponseContentType$replaceRbacAuthorizationV1ClusterRole = keyof Response$replaceRbacAuthorizationV1ClusterRole$Status$200 | keyof Response$replaceRbacAuthorizationV1ClusterRole$Status$201; +export interface Params$replaceRbacAuthorizationV1ClusterRole { + headers: { + Accept: U; + }; + parameter: Parameter$replaceRbacAuthorizationV1ClusterRole; + requestBody: RequestBody$replaceRbacAuthorizationV1ClusterRole["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1ClusterRole = keyof RequestBody$deleteRbacAuthorizationV1ClusterRole; +export type ResponseContentType$deleteRbacAuthorizationV1ClusterRole = keyof Response$deleteRbacAuthorizationV1ClusterRole$Status$200 | keyof Response$deleteRbacAuthorizationV1ClusterRole$Status$202; +export interface Params$deleteRbacAuthorizationV1ClusterRole { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1ClusterRole; + requestBody: RequestBody$deleteRbacAuthorizationV1ClusterRole["*/*"]; +} +export type RequestContentType$patchRbacAuthorizationV1ClusterRole = keyof RequestBody$patchRbacAuthorizationV1ClusterRole; +export type ResponseContentType$patchRbacAuthorizationV1ClusterRole = keyof Response$patchRbacAuthorizationV1ClusterRole$Status$200 | keyof Response$patchRbacAuthorizationV1ClusterRole$Status$201; +export interface Params$patchRbacAuthorizationV1ClusterRole { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchRbacAuthorizationV1ClusterRole; + requestBody: RequestBody$patchRbacAuthorizationV1ClusterRole[T]; +} +export type ResponseContentType$listRbacAuthorizationV1NamespacedRoleBinding = keyof Response$listRbacAuthorizationV1NamespacedRoleBinding$Status$200; +export interface Params$listRbacAuthorizationV1NamespacedRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$listRbacAuthorizationV1NamespacedRoleBinding; +} +export type RequestContentType$createRbacAuthorizationV1NamespacedRoleBinding = keyof RequestBody$createRbacAuthorizationV1NamespacedRoleBinding; +export type ResponseContentType$createRbacAuthorizationV1NamespacedRoleBinding = keyof Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 | keyof Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$201 | keyof Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$202; +export interface Params$createRbacAuthorizationV1NamespacedRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$createRbacAuthorizationV1NamespacedRoleBinding; + requestBody: RequestBody$createRbacAuthorizationV1NamespacedRoleBinding["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding = keyof RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding; +export type ResponseContentType$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding = keyof Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding$Status$200; +export interface Params$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding; + requestBody: RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding["*/*"]; +} +export type ResponseContentType$readRbacAuthorizationV1NamespacedRoleBinding = keyof Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$200; +export interface Params$readRbacAuthorizationV1NamespacedRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$readRbacAuthorizationV1NamespacedRoleBinding; +} +export type RequestContentType$replaceRbacAuthorizationV1NamespacedRoleBinding = keyof RequestBody$replaceRbacAuthorizationV1NamespacedRoleBinding; +export type ResponseContentType$replaceRbacAuthorizationV1NamespacedRoleBinding = keyof Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 | keyof Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$201; +export interface Params$replaceRbacAuthorizationV1NamespacedRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$replaceRbacAuthorizationV1NamespacedRoleBinding; + requestBody: RequestBody$replaceRbacAuthorizationV1NamespacedRoleBinding["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1NamespacedRoleBinding = keyof RequestBody$deleteRbacAuthorizationV1NamespacedRoleBinding; +export type ResponseContentType$deleteRbacAuthorizationV1NamespacedRoleBinding = keyof Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 | keyof Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$202; +export interface Params$deleteRbacAuthorizationV1NamespacedRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1NamespacedRoleBinding; + requestBody: RequestBody$deleteRbacAuthorizationV1NamespacedRoleBinding["*/*"]; +} +export type RequestContentType$patchRbacAuthorizationV1NamespacedRoleBinding = keyof RequestBody$patchRbacAuthorizationV1NamespacedRoleBinding; +export type ResponseContentType$patchRbacAuthorizationV1NamespacedRoleBinding = keyof Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$200 | keyof Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$201; +export interface Params$patchRbacAuthorizationV1NamespacedRoleBinding { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchRbacAuthorizationV1NamespacedRoleBinding; + requestBody: RequestBody$patchRbacAuthorizationV1NamespacedRoleBinding[T]; +} +export type ResponseContentType$listRbacAuthorizationV1NamespacedRole = keyof Response$listRbacAuthorizationV1NamespacedRole$Status$200; +export interface Params$listRbacAuthorizationV1NamespacedRole { + headers: { + Accept: U; + }; + parameter: Parameter$listRbacAuthorizationV1NamespacedRole; +} +export type RequestContentType$createRbacAuthorizationV1NamespacedRole = keyof RequestBody$createRbacAuthorizationV1NamespacedRole; +export type ResponseContentType$createRbacAuthorizationV1NamespacedRole = keyof Response$createRbacAuthorizationV1NamespacedRole$Status$200 | keyof Response$createRbacAuthorizationV1NamespacedRole$Status$201 | keyof Response$createRbacAuthorizationV1NamespacedRole$Status$202; +export interface Params$createRbacAuthorizationV1NamespacedRole { + headers: { + Accept: U; + }; + parameter: Parameter$createRbacAuthorizationV1NamespacedRole; + requestBody: RequestBody$createRbacAuthorizationV1NamespacedRole["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1CollectionNamespacedRole = keyof RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRole; +export type ResponseContentType$deleteRbacAuthorizationV1CollectionNamespacedRole = keyof Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Status$200; +export interface Params$deleteRbacAuthorizationV1CollectionNamespacedRole { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1CollectionNamespacedRole; + requestBody: RequestBody$deleteRbacAuthorizationV1CollectionNamespacedRole["*/*"]; +} +export type ResponseContentType$readRbacAuthorizationV1NamespacedRole = keyof Response$readRbacAuthorizationV1NamespacedRole$Status$200; +export interface Params$readRbacAuthorizationV1NamespacedRole { + headers: { + Accept: U; + }; + parameter: Parameter$readRbacAuthorizationV1NamespacedRole; +} +export type RequestContentType$replaceRbacAuthorizationV1NamespacedRole = keyof RequestBody$replaceRbacAuthorizationV1NamespacedRole; +export type ResponseContentType$replaceRbacAuthorizationV1NamespacedRole = keyof Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 | keyof Response$replaceRbacAuthorizationV1NamespacedRole$Status$201; +export interface Params$replaceRbacAuthorizationV1NamespacedRole { + headers: { + Accept: U; + }; + parameter: Parameter$replaceRbacAuthorizationV1NamespacedRole; + requestBody: RequestBody$replaceRbacAuthorizationV1NamespacedRole["*/*"]; +} +export type RequestContentType$deleteRbacAuthorizationV1NamespacedRole = keyof RequestBody$deleteRbacAuthorizationV1NamespacedRole; +export type ResponseContentType$deleteRbacAuthorizationV1NamespacedRole = keyof Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 | keyof Response$deleteRbacAuthorizationV1NamespacedRole$Status$202; +export interface Params$deleteRbacAuthorizationV1NamespacedRole { + headers: { + Accept: U; + }; + parameter: Parameter$deleteRbacAuthorizationV1NamespacedRole; + requestBody: RequestBody$deleteRbacAuthorizationV1NamespacedRole["*/*"]; +} +export type RequestContentType$patchRbacAuthorizationV1NamespacedRole = keyof RequestBody$patchRbacAuthorizationV1NamespacedRole; +export type ResponseContentType$patchRbacAuthorizationV1NamespacedRole = keyof Response$patchRbacAuthorizationV1NamespacedRole$Status$200 | keyof Response$patchRbacAuthorizationV1NamespacedRole$Status$201; +export interface Params$patchRbacAuthorizationV1NamespacedRole { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchRbacAuthorizationV1NamespacedRole; + requestBody: RequestBody$patchRbacAuthorizationV1NamespacedRole[T]; +} +export type ResponseContentType$listRbacAuthorizationV1RoleBindingForAllNamespaces = keyof Response$listRbacAuthorizationV1RoleBindingForAllNamespaces$Status$200; +export interface Params$listRbacAuthorizationV1RoleBindingForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listRbacAuthorizationV1RoleBindingForAllNamespaces; +} +export type ResponseContentType$listRbacAuthorizationV1RoleForAllNamespaces = keyof Response$listRbacAuthorizationV1RoleForAllNamespaces$Status$200; +export interface Params$listRbacAuthorizationV1RoleForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listRbacAuthorizationV1RoleForAllNamespaces; +} +export type ResponseContentType$watchRbacAuthorizationV1ClusterRoleBindingList = keyof Response$watchRbacAuthorizationV1ClusterRoleBindingList$Status$200; +export interface Params$watchRbacAuthorizationV1ClusterRoleBindingList { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1ClusterRoleBindingList; +} +export type ResponseContentType$watchRbacAuthorizationV1ClusterRoleBinding = keyof Response$watchRbacAuthorizationV1ClusterRoleBinding$Status$200; +export interface Params$watchRbacAuthorizationV1ClusterRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1ClusterRoleBinding; +} +export type ResponseContentType$watchRbacAuthorizationV1ClusterRoleList = keyof Response$watchRbacAuthorizationV1ClusterRoleList$Status$200; +export interface Params$watchRbacAuthorizationV1ClusterRoleList { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1ClusterRoleList; +} +export type ResponseContentType$watchRbacAuthorizationV1ClusterRole = keyof Response$watchRbacAuthorizationV1ClusterRole$Status$200; +export interface Params$watchRbacAuthorizationV1ClusterRole { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1ClusterRole; +} +export type ResponseContentType$watchRbacAuthorizationV1NamespacedRoleBindingList = keyof Response$watchRbacAuthorizationV1NamespacedRoleBindingList$Status$200; +export interface Params$watchRbacAuthorizationV1NamespacedRoleBindingList { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1NamespacedRoleBindingList; +} +export type ResponseContentType$watchRbacAuthorizationV1NamespacedRoleBinding = keyof Response$watchRbacAuthorizationV1NamespacedRoleBinding$Status$200; +export interface Params$watchRbacAuthorizationV1NamespacedRoleBinding { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1NamespacedRoleBinding; +} +export type ResponseContentType$watchRbacAuthorizationV1NamespacedRoleList = keyof Response$watchRbacAuthorizationV1NamespacedRoleList$Status$200; +export interface Params$watchRbacAuthorizationV1NamespacedRoleList { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1NamespacedRoleList; +} +export type ResponseContentType$watchRbacAuthorizationV1NamespacedRole = keyof Response$watchRbacAuthorizationV1NamespacedRole$Status$200; +export interface Params$watchRbacAuthorizationV1NamespacedRole { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1NamespacedRole; +} +export type ResponseContentType$watchRbacAuthorizationV1RoleBindingListForAllNamespaces = keyof Response$watchRbacAuthorizationV1RoleBindingListForAllNamespaces$Status$200; +export interface Params$watchRbacAuthorizationV1RoleBindingListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1RoleBindingListForAllNamespaces; +} +export type ResponseContentType$watchRbacAuthorizationV1RoleListForAllNamespaces = keyof Response$watchRbacAuthorizationV1RoleListForAllNamespaces$Status$200; +export interface Params$watchRbacAuthorizationV1RoleListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchRbacAuthorizationV1RoleListForAllNamespaces; +} +export type ResponseContentType$getResourceAPIGroup = keyof Response$getResourceAPIGroup$Status$200; +export interface Params$getResourceAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getResourceV1alpha2APIResources = keyof Response$getResourceV1alpha2APIResources$Status$200; +export interface Params$getResourceV1alpha2APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listResourceV1alpha2NamespacedPodSchedulingContext = keyof Response$listResourceV1alpha2NamespacedPodSchedulingContext$Status$200; +export interface Params$listResourceV1alpha2NamespacedPodSchedulingContext { + headers: { + Accept: U; + }; + parameter: Parameter$listResourceV1alpha2NamespacedPodSchedulingContext; +} +export type RequestContentType$createResourceV1alpha2NamespacedPodSchedulingContext = keyof RequestBody$createResourceV1alpha2NamespacedPodSchedulingContext; +export type ResponseContentType$createResourceV1alpha2NamespacedPodSchedulingContext = keyof Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | keyof Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$201 | keyof Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$202; +export interface Params$createResourceV1alpha2NamespacedPodSchedulingContext { + headers: { + Accept: U; + }; + parameter: Parameter$createResourceV1alpha2NamespacedPodSchedulingContext; + requestBody: RequestBody$createResourceV1alpha2NamespacedPodSchedulingContext["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext = keyof RequestBody$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext; +export type ResponseContentType$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext = keyof Response$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext$Status$200; +export interface Params$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext; + requestBody: RequestBody$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext["*/*"]; +} +export type ResponseContentType$readResourceV1alpha2NamespacedPodSchedulingContext = keyof Response$readResourceV1alpha2NamespacedPodSchedulingContext$Status$200; +export interface Params$readResourceV1alpha2NamespacedPodSchedulingContext { + headers: { + Accept: U; + }; + parameter: Parameter$readResourceV1alpha2NamespacedPodSchedulingContext; +} +export type RequestContentType$replaceResourceV1alpha2NamespacedPodSchedulingContext = keyof RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContext; +export type ResponseContentType$replaceResourceV1alpha2NamespacedPodSchedulingContext = keyof Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | keyof Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$201; +export interface Params$replaceResourceV1alpha2NamespacedPodSchedulingContext { + headers: { + Accept: U; + }; + parameter: Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContext; + requestBody: RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContext["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2NamespacedPodSchedulingContext = keyof RequestBody$deleteResourceV1alpha2NamespacedPodSchedulingContext; +export type ResponseContentType$deleteResourceV1alpha2NamespacedPodSchedulingContext = keyof Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | keyof Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$202; +export interface Params$deleteResourceV1alpha2NamespacedPodSchedulingContext { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2NamespacedPodSchedulingContext; + requestBody: RequestBody$deleteResourceV1alpha2NamespacedPodSchedulingContext["*/*"]; +} +export type RequestContentType$patchResourceV1alpha2NamespacedPodSchedulingContext = keyof RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContext; +export type ResponseContentType$patchResourceV1alpha2NamespacedPodSchedulingContext = keyof Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | keyof Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$201; +export interface Params$patchResourceV1alpha2NamespacedPodSchedulingContext { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchResourceV1alpha2NamespacedPodSchedulingContext; + requestBody: RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContext[T]; +} +export type ResponseContentType$readResourceV1alpha2NamespacedPodSchedulingContextStatus = keyof Response$readResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200; +export interface Params$readResourceV1alpha2NamespacedPodSchedulingContextStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readResourceV1alpha2NamespacedPodSchedulingContextStatus; +} +export type RequestContentType$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus = keyof RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus; +export type ResponseContentType$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus = keyof Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 | keyof Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201; +export interface Params$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus; + requestBody: RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus["*/*"]; +} +export type RequestContentType$patchResourceV1alpha2NamespacedPodSchedulingContextStatus = keyof RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContextStatus; +export type ResponseContentType$patchResourceV1alpha2NamespacedPodSchedulingContextStatus = keyof Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 | keyof Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201; +export interface Params$patchResourceV1alpha2NamespacedPodSchedulingContextStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchResourceV1alpha2NamespacedPodSchedulingContextStatus; + requestBody: RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContextStatus[T]; +} +export type ResponseContentType$listResourceV1alpha2NamespacedResourceClaim = keyof Response$listResourceV1alpha2NamespacedResourceClaim$Status$200; +export interface Params$listResourceV1alpha2NamespacedResourceClaim { + headers: { + Accept: U; + }; + parameter: Parameter$listResourceV1alpha2NamespacedResourceClaim; +} +export type RequestContentType$createResourceV1alpha2NamespacedResourceClaim = keyof RequestBody$createResourceV1alpha2NamespacedResourceClaim; +export type ResponseContentType$createResourceV1alpha2NamespacedResourceClaim = keyof Response$createResourceV1alpha2NamespacedResourceClaim$Status$200 | keyof Response$createResourceV1alpha2NamespacedResourceClaim$Status$201 | keyof Response$createResourceV1alpha2NamespacedResourceClaim$Status$202; +export interface Params$createResourceV1alpha2NamespacedResourceClaim { + headers: { + Accept: U; + }; + parameter: Parameter$createResourceV1alpha2NamespacedResourceClaim; + requestBody: RequestBody$createResourceV1alpha2NamespacedResourceClaim["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2CollectionNamespacedResourceClaim = keyof RequestBody$deleteResourceV1alpha2CollectionNamespacedResourceClaim; +export type ResponseContentType$deleteResourceV1alpha2CollectionNamespacedResourceClaim = keyof Response$deleteResourceV1alpha2CollectionNamespacedResourceClaim$Status$200; +export interface Params$deleteResourceV1alpha2CollectionNamespacedResourceClaim { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2CollectionNamespacedResourceClaim; + requestBody: RequestBody$deleteResourceV1alpha2CollectionNamespacedResourceClaim["*/*"]; +} +export type ResponseContentType$readResourceV1alpha2NamespacedResourceClaim = keyof Response$readResourceV1alpha2NamespacedResourceClaim$Status$200; +export interface Params$readResourceV1alpha2NamespacedResourceClaim { + headers: { + Accept: U; + }; + parameter: Parameter$readResourceV1alpha2NamespacedResourceClaim; +} +export type RequestContentType$replaceResourceV1alpha2NamespacedResourceClaim = keyof RequestBody$replaceResourceV1alpha2NamespacedResourceClaim; +export type ResponseContentType$replaceResourceV1alpha2NamespacedResourceClaim = keyof Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$200 | keyof Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$201; +export interface Params$replaceResourceV1alpha2NamespacedResourceClaim { + headers: { + Accept: U; + }; + parameter: Parameter$replaceResourceV1alpha2NamespacedResourceClaim; + requestBody: RequestBody$replaceResourceV1alpha2NamespacedResourceClaim["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2NamespacedResourceClaim = keyof RequestBody$deleteResourceV1alpha2NamespacedResourceClaim; +export type ResponseContentType$deleteResourceV1alpha2NamespacedResourceClaim = keyof Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$200 | keyof Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$202; +export interface Params$deleteResourceV1alpha2NamespacedResourceClaim { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2NamespacedResourceClaim; + requestBody: RequestBody$deleteResourceV1alpha2NamespacedResourceClaim["*/*"]; +} +export type RequestContentType$patchResourceV1alpha2NamespacedResourceClaim = keyof RequestBody$patchResourceV1alpha2NamespacedResourceClaim; +export type ResponseContentType$patchResourceV1alpha2NamespacedResourceClaim = keyof Response$patchResourceV1alpha2NamespacedResourceClaim$Status$200 | keyof Response$patchResourceV1alpha2NamespacedResourceClaim$Status$201; +export interface Params$patchResourceV1alpha2NamespacedResourceClaim { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchResourceV1alpha2NamespacedResourceClaim; + requestBody: RequestBody$patchResourceV1alpha2NamespacedResourceClaim[T]; +} +export type ResponseContentType$readResourceV1alpha2NamespacedResourceClaimStatus = keyof Response$readResourceV1alpha2NamespacedResourceClaimStatus$Status$200; +export interface Params$readResourceV1alpha2NamespacedResourceClaimStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readResourceV1alpha2NamespacedResourceClaimStatus; +} +export type RequestContentType$replaceResourceV1alpha2NamespacedResourceClaimStatus = keyof RequestBody$replaceResourceV1alpha2NamespacedResourceClaimStatus; +export type ResponseContentType$replaceResourceV1alpha2NamespacedResourceClaimStatus = keyof Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$200 | keyof Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$201; +export interface Params$replaceResourceV1alpha2NamespacedResourceClaimStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceResourceV1alpha2NamespacedResourceClaimStatus; + requestBody: RequestBody$replaceResourceV1alpha2NamespacedResourceClaimStatus["*/*"]; +} +export type RequestContentType$patchResourceV1alpha2NamespacedResourceClaimStatus = keyof RequestBody$patchResourceV1alpha2NamespacedResourceClaimStatus; +export type ResponseContentType$patchResourceV1alpha2NamespacedResourceClaimStatus = keyof Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$200 | keyof Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$201; +export interface Params$patchResourceV1alpha2NamespacedResourceClaimStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchResourceV1alpha2NamespacedResourceClaimStatus; + requestBody: RequestBody$patchResourceV1alpha2NamespacedResourceClaimStatus[T]; +} +export type ResponseContentType$listResourceV1alpha2NamespacedResourceClaimTemplate = keyof Response$listResourceV1alpha2NamespacedResourceClaimTemplate$Status$200; +export interface Params$listResourceV1alpha2NamespacedResourceClaimTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$listResourceV1alpha2NamespacedResourceClaimTemplate; +} +export type RequestContentType$createResourceV1alpha2NamespacedResourceClaimTemplate = keyof RequestBody$createResourceV1alpha2NamespacedResourceClaimTemplate; +export type ResponseContentType$createResourceV1alpha2NamespacedResourceClaimTemplate = keyof Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | keyof Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 | keyof Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$202; +export interface Params$createResourceV1alpha2NamespacedResourceClaimTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$createResourceV1alpha2NamespacedResourceClaimTemplate; + requestBody: RequestBody$createResourceV1alpha2NamespacedResourceClaimTemplate["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate = keyof RequestBody$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate; +export type ResponseContentType$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate = keyof Response$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate$Status$200; +export interface Params$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate; + requestBody: RequestBody$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate["*/*"]; +} +export type ResponseContentType$readResourceV1alpha2NamespacedResourceClaimTemplate = keyof Response$readResourceV1alpha2NamespacedResourceClaimTemplate$Status$200; +export interface Params$readResourceV1alpha2NamespacedResourceClaimTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$readResourceV1alpha2NamespacedResourceClaimTemplate; +} +export type RequestContentType$replaceResourceV1alpha2NamespacedResourceClaimTemplate = keyof RequestBody$replaceResourceV1alpha2NamespacedResourceClaimTemplate; +export type ResponseContentType$replaceResourceV1alpha2NamespacedResourceClaimTemplate = keyof Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | keyof Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$201; +export interface Params$replaceResourceV1alpha2NamespacedResourceClaimTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$replaceResourceV1alpha2NamespacedResourceClaimTemplate; + requestBody: RequestBody$replaceResourceV1alpha2NamespacedResourceClaimTemplate["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2NamespacedResourceClaimTemplate = keyof RequestBody$deleteResourceV1alpha2NamespacedResourceClaimTemplate; +export type ResponseContentType$deleteResourceV1alpha2NamespacedResourceClaimTemplate = keyof Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | keyof Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$202; +export interface Params$deleteResourceV1alpha2NamespacedResourceClaimTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2NamespacedResourceClaimTemplate; + requestBody: RequestBody$deleteResourceV1alpha2NamespacedResourceClaimTemplate["*/*"]; +} +export type RequestContentType$patchResourceV1alpha2NamespacedResourceClaimTemplate = keyof RequestBody$patchResourceV1alpha2NamespacedResourceClaimTemplate; +export type ResponseContentType$patchResourceV1alpha2NamespacedResourceClaimTemplate = keyof Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | keyof Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$201; +export interface Params$patchResourceV1alpha2NamespacedResourceClaimTemplate { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchResourceV1alpha2NamespacedResourceClaimTemplate; + requestBody: RequestBody$patchResourceV1alpha2NamespacedResourceClaimTemplate[T]; +} +export type ResponseContentType$listResourceV1alpha2PodSchedulingContextForAllNamespaces = keyof Response$listResourceV1alpha2PodSchedulingContextForAllNamespaces$Status$200; +export interface Params$listResourceV1alpha2PodSchedulingContextForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listResourceV1alpha2PodSchedulingContextForAllNamespaces; +} +export type ResponseContentType$listResourceV1alpha2ResourceClaimForAllNamespaces = keyof Response$listResourceV1alpha2ResourceClaimForAllNamespaces$Status$200; +export interface Params$listResourceV1alpha2ResourceClaimForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listResourceV1alpha2ResourceClaimForAllNamespaces; +} +export type ResponseContentType$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces = keyof Response$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces$Status$200; +export interface Params$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces; +} +export type ResponseContentType$listResourceV1alpha2ResourceClass = keyof Response$listResourceV1alpha2ResourceClass$Status$200; +export interface Params$listResourceV1alpha2ResourceClass { + headers: { + Accept: U; + }; + parameter: Parameter$listResourceV1alpha2ResourceClass; +} +export type RequestContentType$createResourceV1alpha2ResourceClass = keyof RequestBody$createResourceV1alpha2ResourceClass; +export type ResponseContentType$createResourceV1alpha2ResourceClass = keyof Response$createResourceV1alpha2ResourceClass$Status$200 | keyof Response$createResourceV1alpha2ResourceClass$Status$201 | keyof Response$createResourceV1alpha2ResourceClass$Status$202; +export interface Params$createResourceV1alpha2ResourceClass { + headers: { + Accept: U; + }; + parameter: Parameter$createResourceV1alpha2ResourceClass; + requestBody: RequestBody$createResourceV1alpha2ResourceClass["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2CollectionResourceClass = keyof RequestBody$deleteResourceV1alpha2CollectionResourceClass; +export type ResponseContentType$deleteResourceV1alpha2CollectionResourceClass = keyof Response$deleteResourceV1alpha2CollectionResourceClass$Status$200; +export interface Params$deleteResourceV1alpha2CollectionResourceClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2CollectionResourceClass; + requestBody: RequestBody$deleteResourceV1alpha2CollectionResourceClass["*/*"]; +} +export type ResponseContentType$readResourceV1alpha2ResourceClass = keyof Response$readResourceV1alpha2ResourceClass$Status$200; +export interface Params$readResourceV1alpha2ResourceClass { + headers: { + Accept: U; + }; + parameter: Parameter$readResourceV1alpha2ResourceClass; +} +export type RequestContentType$replaceResourceV1alpha2ResourceClass = keyof RequestBody$replaceResourceV1alpha2ResourceClass; +export type ResponseContentType$replaceResourceV1alpha2ResourceClass = keyof Response$replaceResourceV1alpha2ResourceClass$Status$200 | keyof Response$replaceResourceV1alpha2ResourceClass$Status$201; +export interface Params$replaceResourceV1alpha2ResourceClass { + headers: { + Accept: U; + }; + parameter: Parameter$replaceResourceV1alpha2ResourceClass; + requestBody: RequestBody$replaceResourceV1alpha2ResourceClass["*/*"]; +} +export type RequestContentType$deleteResourceV1alpha2ResourceClass = keyof RequestBody$deleteResourceV1alpha2ResourceClass; +export type ResponseContentType$deleteResourceV1alpha2ResourceClass = keyof Response$deleteResourceV1alpha2ResourceClass$Status$200 | keyof Response$deleteResourceV1alpha2ResourceClass$Status$202; +export interface Params$deleteResourceV1alpha2ResourceClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteResourceV1alpha2ResourceClass; + requestBody: RequestBody$deleteResourceV1alpha2ResourceClass["*/*"]; +} +export type RequestContentType$patchResourceV1alpha2ResourceClass = keyof RequestBody$patchResourceV1alpha2ResourceClass; +export type ResponseContentType$patchResourceV1alpha2ResourceClass = keyof Response$patchResourceV1alpha2ResourceClass$Status$200 | keyof Response$patchResourceV1alpha2ResourceClass$Status$201; +export interface Params$patchResourceV1alpha2ResourceClass { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchResourceV1alpha2ResourceClass; + requestBody: RequestBody$patchResourceV1alpha2ResourceClass[T]; +} +export type ResponseContentType$watchResourceV1alpha2NamespacedPodSchedulingContextList = keyof Response$watchResourceV1alpha2NamespacedPodSchedulingContextList$Status$200; +export interface Params$watchResourceV1alpha2NamespacedPodSchedulingContextList { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2NamespacedPodSchedulingContextList; +} +export type ResponseContentType$watchResourceV1alpha2NamespacedPodSchedulingContext = keyof Response$watchResourceV1alpha2NamespacedPodSchedulingContext$Status$200; +export interface Params$watchResourceV1alpha2NamespacedPodSchedulingContext { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2NamespacedPodSchedulingContext; +} +export type ResponseContentType$watchResourceV1alpha2NamespacedResourceClaimList = keyof Response$watchResourceV1alpha2NamespacedResourceClaimList$Status$200; +export interface Params$watchResourceV1alpha2NamespacedResourceClaimList { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2NamespacedResourceClaimList; +} +export type ResponseContentType$watchResourceV1alpha2NamespacedResourceClaim = keyof Response$watchResourceV1alpha2NamespacedResourceClaim$Status$200; +export interface Params$watchResourceV1alpha2NamespacedResourceClaim { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2NamespacedResourceClaim; +} +export type ResponseContentType$watchResourceV1alpha2NamespacedResourceClaimTemplateList = keyof Response$watchResourceV1alpha2NamespacedResourceClaimTemplateList$Status$200; +export interface Params$watchResourceV1alpha2NamespacedResourceClaimTemplateList { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2NamespacedResourceClaimTemplateList; +} +export type ResponseContentType$watchResourceV1alpha2NamespacedResourceClaimTemplate = keyof Response$watchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200; +export interface Params$watchResourceV1alpha2NamespacedResourceClaimTemplate { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2NamespacedResourceClaimTemplate; +} +export type ResponseContentType$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces = keyof Response$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces$Status$200; +export interface Params$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces; +} +export type ResponseContentType$watchResourceV1alpha2ResourceClaimListForAllNamespaces = keyof Response$watchResourceV1alpha2ResourceClaimListForAllNamespaces$Status$200; +export interface Params$watchResourceV1alpha2ResourceClaimListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2ResourceClaimListForAllNamespaces; +} +export type ResponseContentType$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces = keyof Response$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces$Status$200; +export interface Params$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces; +} +export type ResponseContentType$watchResourceV1alpha2ResourceClassList = keyof Response$watchResourceV1alpha2ResourceClassList$Status$200; +export interface Params$watchResourceV1alpha2ResourceClassList { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2ResourceClassList; +} +export type ResponseContentType$watchResourceV1alpha2ResourceClass = keyof Response$watchResourceV1alpha2ResourceClass$Status$200; +export interface Params$watchResourceV1alpha2ResourceClass { + headers: { + Accept: U; + }; + parameter: Parameter$watchResourceV1alpha2ResourceClass; +} +export type ResponseContentType$getSchedulingAPIGroup = keyof Response$getSchedulingAPIGroup$Status$200; +export interface Params$getSchedulingAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getSchedulingV1APIResources = keyof Response$getSchedulingV1APIResources$Status$200; +export interface Params$getSchedulingV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listSchedulingV1PriorityClass = keyof Response$listSchedulingV1PriorityClass$Status$200; +export interface Params$listSchedulingV1PriorityClass { + headers: { + Accept: U; + }; + parameter: Parameter$listSchedulingV1PriorityClass; +} +export type RequestContentType$createSchedulingV1PriorityClass = keyof RequestBody$createSchedulingV1PriorityClass; +export type ResponseContentType$createSchedulingV1PriorityClass = keyof Response$createSchedulingV1PriorityClass$Status$200 | keyof Response$createSchedulingV1PriorityClass$Status$201 | keyof Response$createSchedulingV1PriorityClass$Status$202; +export interface Params$createSchedulingV1PriorityClass { + headers: { + Accept: U; + }; + parameter: Parameter$createSchedulingV1PriorityClass; + requestBody: RequestBody$createSchedulingV1PriorityClass["*/*"]; +} +export type RequestContentType$deleteSchedulingV1CollectionPriorityClass = keyof RequestBody$deleteSchedulingV1CollectionPriorityClass; +export type ResponseContentType$deleteSchedulingV1CollectionPriorityClass = keyof Response$deleteSchedulingV1CollectionPriorityClass$Status$200; +export interface Params$deleteSchedulingV1CollectionPriorityClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteSchedulingV1CollectionPriorityClass; + requestBody: RequestBody$deleteSchedulingV1CollectionPriorityClass["*/*"]; +} +export type ResponseContentType$readSchedulingV1PriorityClass = keyof Response$readSchedulingV1PriorityClass$Status$200; +export interface Params$readSchedulingV1PriorityClass { + headers: { + Accept: U; + }; + parameter: Parameter$readSchedulingV1PriorityClass; +} +export type RequestContentType$replaceSchedulingV1PriorityClass = keyof RequestBody$replaceSchedulingV1PriorityClass; +export type ResponseContentType$replaceSchedulingV1PriorityClass = keyof Response$replaceSchedulingV1PriorityClass$Status$200 | keyof Response$replaceSchedulingV1PriorityClass$Status$201; +export interface Params$replaceSchedulingV1PriorityClass { + headers: { + Accept: U; + }; + parameter: Parameter$replaceSchedulingV1PriorityClass; + requestBody: RequestBody$replaceSchedulingV1PriorityClass["*/*"]; +} +export type RequestContentType$deleteSchedulingV1PriorityClass = keyof RequestBody$deleteSchedulingV1PriorityClass; +export type ResponseContentType$deleteSchedulingV1PriorityClass = keyof Response$deleteSchedulingV1PriorityClass$Status$200 | keyof Response$deleteSchedulingV1PriorityClass$Status$202; +export interface Params$deleteSchedulingV1PriorityClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteSchedulingV1PriorityClass; + requestBody: RequestBody$deleteSchedulingV1PriorityClass["*/*"]; +} +export type RequestContentType$patchSchedulingV1PriorityClass = keyof RequestBody$patchSchedulingV1PriorityClass; +export type ResponseContentType$patchSchedulingV1PriorityClass = keyof Response$patchSchedulingV1PriorityClass$Status$200 | keyof Response$patchSchedulingV1PriorityClass$Status$201; +export interface Params$patchSchedulingV1PriorityClass { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchSchedulingV1PriorityClass; + requestBody: RequestBody$patchSchedulingV1PriorityClass[T]; +} +export type ResponseContentType$watchSchedulingV1PriorityClassList = keyof Response$watchSchedulingV1PriorityClassList$Status$200; +export interface Params$watchSchedulingV1PriorityClassList { + headers: { + Accept: U; + }; + parameter: Parameter$watchSchedulingV1PriorityClassList; +} +export type ResponseContentType$watchSchedulingV1PriorityClass = keyof Response$watchSchedulingV1PriorityClass$Status$200; +export interface Params$watchSchedulingV1PriorityClass { + headers: { + Accept: U; + }; + parameter: Parameter$watchSchedulingV1PriorityClass; +} +export type ResponseContentType$getStorageAPIGroup = keyof Response$getStorageAPIGroup$Status$200; +export interface Params$getStorageAPIGroup { + headers: { + Accept: U; + }; +} +export type ResponseContentType$getStorageV1APIResources = keyof Response$getStorageV1APIResources$Status$200; +export interface Params$getStorageV1APIResources { + headers: { + Accept: U; + }; +} +export type ResponseContentType$listStorageV1CSIDriver = keyof Response$listStorageV1CSIDriver$Status$200; +export interface Params$listStorageV1CSIDriver { + headers: { + Accept: U; + }; + parameter: Parameter$listStorageV1CSIDriver; +} +export type RequestContentType$createStorageV1CSIDriver = keyof RequestBody$createStorageV1CSIDriver; +export type ResponseContentType$createStorageV1CSIDriver = keyof Response$createStorageV1CSIDriver$Status$200 | keyof Response$createStorageV1CSIDriver$Status$201 | keyof Response$createStorageV1CSIDriver$Status$202; +export interface Params$createStorageV1CSIDriver { + headers: { + Accept: U; + }; + parameter: Parameter$createStorageV1CSIDriver; + requestBody: RequestBody$createStorageV1CSIDriver["*/*"]; +} +export type RequestContentType$deleteStorageV1CollectionCSIDriver = keyof RequestBody$deleteStorageV1CollectionCSIDriver; +export type ResponseContentType$deleteStorageV1CollectionCSIDriver = keyof Response$deleteStorageV1CollectionCSIDriver$Status$200; +export interface Params$deleteStorageV1CollectionCSIDriver { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1CollectionCSIDriver; + requestBody: RequestBody$deleteStorageV1CollectionCSIDriver["*/*"]; +} +export type ResponseContentType$readStorageV1CSIDriver = keyof Response$readStorageV1CSIDriver$Status$200; +export interface Params$readStorageV1CSIDriver { + headers: { + Accept: U; + }; + parameter: Parameter$readStorageV1CSIDriver; +} +export type RequestContentType$replaceStorageV1CSIDriver = keyof RequestBody$replaceStorageV1CSIDriver; +export type ResponseContentType$replaceStorageV1CSIDriver = keyof Response$replaceStorageV1CSIDriver$Status$200 | keyof Response$replaceStorageV1CSIDriver$Status$201; +export interface Params$replaceStorageV1CSIDriver { + headers: { + Accept: U; + }; + parameter: Parameter$replaceStorageV1CSIDriver; + requestBody: RequestBody$replaceStorageV1CSIDriver["*/*"]; +} +export type RequestContentType$deleteStorageV1CSIDriver = keyof RequestBody$deleteStorageV1CSIDriver; +export type ResponseContentType$deleteStorageV1CSIDriver = keyof Response$deleteStorageV1CSIDriver$Status$200 | keyof Response$deleteStorageV1CSIDriver$Status$202; +export interface Params$deleteStorageV1CSIDriver { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1CSIDriver; + requestBody: RequestBody$deleteStorageV1CSIDriver["*/*"]; +} +export type RequestContentType$patchStorageV1CSIDriver = keyof RequestBody$patchStorageV1CSIDriver; +export type ResponseContentType$patchStorageV1CSIDriver = keyof Response$patchStorageV1CSIDriver$Status$200 | keyof Response$patchStorageV1CSIDriver$Status$201; +export interface Params$patchStorageV1CSIDriver { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchStorageV1CSIDriver; + requestBody: RequestBody$patchStorageV1CSIDriver[T]; +} +export type ResponseContentType$listStorageV1CSINode = keyof Response$listStorageV1CSINode$Status$200; +export interface Params$listStorageV1CSINode { + headers: { + Accept: U; + }; + parameter: Parameter$listStorageV1CSINode; +} +export type RequestContentType$createStorageV1CSINode = keyof RequestBody$createStorageV1CSINode; +export type ResponseContentType$createStorageV1CSINode = keyof Response$createStorageV1CSINode$Status$200 | keyof Response$createStorageV1CSINode$Status$201 | keyof Response$createStorageV1CSINode$Status$202; +export interface Params$createStorageV1CSINode { + headers: { + Accept: U; + }; + parameter: Parameter$createStorageV1CSINode; + requestBody: RequestBody$createStorageV1CSINode["*/*"]; +} +export type RequestContentType$deleteStorageV1CollectionCSINode = keyof RequestBody$deleteStorageV1CollectionCSINode; +export type ResponseContentType$deleteStorageV1CollectionCSINode = keyof Response$deleteStorageV1CollectionCSINode$Status$200; +export interface Params$deleteStorageV1CollectionCSINode { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1CollectionCSINode; + requestBody: RequestBody$deleteStorageV1CollectionCSINode["*/*"]; +} +export type ResponseContentType$readStorageV1CSINode = keyof Response$readStorageV1CSINode$Status$200; +export interface Params$readStorageV1CSINode { + headers: { + Accept: U; + }; + parameter: Parameter$readStorageV1CSINode; +} +export type RequestContentType$replaceStorageV1CSINode = keyof RequestBody$replaceStorageV1CSINode; +export type ResponseContentType$replaceStorageV1CSINode = keyof Response$replaceStorageV1CSINode$Status$200 | keyof Response$replaceStorageV1CSINode$Status$201; +export interface Params$replaceStorageV1CSINode { + headers: { + Accept: U; + }; + parameter: Parameter$replaceStorageV1CSINode; + requestBody: RequestBody$replaceStorageV1CSINode["*/*"]; +} +export type RequestContentType$deleteStorageV1CSINode = keyof RequestBody$deleteStorageV1CSINode; +export type ResponseContentType$deleteStorageV1CSINode = keyof Response$deleteStorageV1CSINode$Status$200 | keyof Response$deleteStorageV1CSINode$Status$202; +export interface Params$deleteStorageV1CSINode { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1CSINode; + requestBody: RequestBody$deleteStorageV1CSINode["*/*"]; +} +export type RequestContentType$patchStorageV1CSINode = keyof RequestBody$patchStorageV1CSINode; +export type ResponseContentType$patchStorageV1CSINode = keyof Response$patchStorageV1CSINode$Status$200 | keyof Response$patchStorageV1CSINode$Status$201; +export interface Params$patchStorageV1CSINode { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchStorageV1CSINode; + requestBody: RequestBody$patchStorageV1CSINode[T]; +} +export type ResponseContentType$listStorageV1CSIStorageCapacityForAllNamespaces = keyof Response$listStorageV1CSIStorageCapacityForAllNamespaces$Status$200; +export interface Params$listStorageV1CSIStorageCapacityForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$listStorageV1CSIStorageCapacityForAllNamespaces; +} +export type ResponseContentType$listStorageV1NamespacedCSIStorageCapacity = keyof Response$listStorageV1NamespacedCSIStorageCapacity$Status$200; +export interface Params$listStorageV1NamespacedCSIStorageCapacity { + headers: { + Accept: U; + }; + parameter: Parameter$listStorageV1NamespacedCSIStorageCapacity; +} +export type RequestContentType$createStorageV1NamespacedCSIStorageCapacity = keyof RequestBody$createStorageV1NamespacedCSIStorageCapacity; +export type ResponseContentType$createStorageV1NamespacedCSIStorageCapacity = keyof Response$createStorageV1NamespacedCSIStorageCapacity$Status$200 | keyof Response$createStorageV1NamespacedCSIStorageCapacity$Status$201 | keyof Response$createStorageV1NamespacedCSIStorageCapacity$Status$202; +export interface Params$createStorageV1NamespacedCSIStorageCapacity { + headers: { + Accept: U; + }; + parameter: Parameter$createStorageV1NamespacedCSIStorageCapacity; + requestBody: RequestBody$createStorageV1NamespacedCSIStorageCapacity["*/*"]; +} +export type RequestContentType$deleteStorageV1CollectionNamespacedCSIStorageCapacity = keyof RequestBody$deleteStorageV1CollectionNamespacedCSIStorageCapacity; +export type ResponseContentType$deleteStorageV1CollectionNamespacedCSIStorageCapacity = keyof Response$deleteStorageV1CollectionNamespacedCSIStorageCapacity$Status$200; +export interface Params$deleteStorageV1CollectionNamespacedCSIStorageCapacity { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1CollectionNamespacedCSIStorageCapacity; + requestBody: RequestBody$deleteStorageV1CollectionNamespacedCSIStorageCapacity["*/*"]; +} +export type ResponseContentType$readStorageV1NamespacedCSIStorageCapacity = keyof Response$readStorageV1NamespacedCSIStorageCapacity$Status$200; +export interface Params$readStorageV1NamespacedCSIStorageCapacity { + headers: { + Accept: U; + }; + parameter: Parameter$readStorageV1NamespacedCSIStorageCapacity; +} +export type RequestContentType$replaceStorageV1NamespacedCSIStorageCapacity = keyof RequestBody$replaceStorageV1NamespacedCSIStorageCapacity; +export type ResponseContentType$replaceStorageV1NamespacedCSIStorageCapacity = keyof Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$200 | keyof Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$201; +export interface Params$replaceStorageV1NamespacedCSIStorageCapacity { + headers: { + Accept: U; + }; + parameter: Parameter$replaceStorageV1NamespacedCSIStorageCapacity; + requestBody: RequestBody$replaceStorageV1NamespacedCSIStorageCapacity["*/*"]; +} +export type RequestContentType$deleteStorageV1NamespacedCSIStorageCapacity = keyof RequestBody$deleteStorageV1NamespacedCSIStorageCapacity; +export type ResponseContentType$deleteStorageV1NamespacedCSIStorageCapacity = keyof Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$200 | keyof Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$202; +export interface Params$deleteStorageV1NamespacedCSIStorageCapacity { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1NamespacedCSIStorageCapacity; + requestBody: RequestBody$deleteStorageV1NamespacedCSIStorageCapacity["*/*"]; +} +export type RequestContentType$patchStorageV1NamespacedCSIStorageCapacity = keyof RequestBody$patchStorageV1NamespacedCSIStorageCapacity; +export type ResponseContentType$patchStorageV1NamespacedCSIStorageCapacity = keyof Response$patchStorageV1NamespacedCSIStorageCapacity$Status$200 | keyof Response$patchStorageV1NamespacedCSIStorageCapacity$Status$201; +export interface Params$patchStorageV1NamespacedCSIStorageCapacity { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchStorageV1NamespacedCSIStorageCapacity; + requestBody: RequestBody$patchStorageV1NamespacedCSIStorageCapacity[T]; +} +export type ResponseContentType$listStorageV1StorageClass = keyof Response$listStorageV1StorageClass$Status$200; +export interface Params$listStorageV1StorageClass { + headers: { + Accept: U; + }; + parameter: Parameter$listStorageV1StorageClass; +} +export type RequestContentType$createStorageV1StorageClass = keyof RequestBody$createStorageV1StorageClass; +export type ResponseContentType$createStorageV1StorageClass = keyof Response$createStorageV1StorageClass$Status$200 | keyof Response$createStorageV1StorageClass$Status$201 | keyof Response$createStorageV1StorageClass$Status$202; +export interface Params$createStorageV1StorageClass { + headers: { + Accept: U; + }; + parameter: Parameter$createStorageV1StorageClass; + requestBody: RequestBody$createStorageV1StorageClass["*/*"]; +} +export type RequestContentType$deleteStorageV1CollectionStorageClass = keyof RequestBody$deleteStorageV1CollectionStorageClass; +export type ResponseContentType$deleteStorageV1CollectionStorageClass = keyof Response$deleteStorageV1CollectionStorageClass$Status$200; +export interface Params$deleteStorageV1CollectionStorageClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1CollectionStorageClass; + requestBody: RequestBody$deleteStorageV1CollectionStorageClass["*/*"]; +} +export type ResponseContentType$readStorageV1StorageClass = keyof Response$readStorageV1StorageClass$Status$200; +export interface Params$readStorageV1StorageClass { + headers: { + Accept: U; + }; + parameter: Parameter$readStorageV1StorageClass; +} +export type RequestContentType$replaceStorageV1StorageClass = keyof RequestBody$replaceStorageV1StorageClass; +export type ResponseContentType$replaceStorageV1StorageClass = keyof Response$replaceStorageV1StorageClass$Status$200 | keyof Response$replaceStorageV1StorageClass$Status$201; +export interface Params$replaceStorageV1StorageClass { + headers: { + Accept: U; + }; + parameter: Parameter$replaceStorageV1StorageClass; + requestBody: RequestBody$replaceStorageV1StorageClass["*/*"]; +} +export type RequestContentType$deleteStorageV1StorageClass = keyof RequestBody$deleteStorageV1StorageClass; +export type ResponseContentType$deleteStorageV1StorageClass = keyof Response$deleteStorageV1StorageClass$Status$200 | keyof Response$deleteStorageV1StorageClass$Status$202; +export interface Params$deleteStorageV1StorageClass { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1StorageClass; + requestBody: RequestBody$deleteStorageV1StorageClass["*/*"]; +} +export type RequestContentType$patchStorageV1StorageClass = keyof RequestBody$patchStorageV1StorageClass; +export type ResponseContentType$patchStorageV1StorageClass = keyof Response$patchStorageV1StorageClass$Status$200 | keyof Response$patchStorageV1StorageClass$Status$201; +export interface Params$patchStorageV1StorageClass { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchStorageV1StorageClass; + requestBody: RequestBody$patchStorageV1StorageClass[T]; +} +export type ResponseContentType$listStorageV1VolumeAttachment = keyof Response$listStorageV1VolumeAttachment$Status$200; +export interface Params$listStorageV1VolumeAttachment { + headers: { + Accept: U; + }; + parameter: Parameter$listStorageV1VolumeAttachment; +} +export type RequestContentType$createStorageV1VolumeAttachment = keyof RequestBody$createStorageV1VolumeAttachment; +export type ResponseContentType$createStorageV1VolumeAttachment = keyof Response$createStorageV1VolumeAttachment$Status$200 | keyof Response$createStorageV1VolumeAttachment$Status$201 | keyof Response$createStorageV1VolumeAttachment$Status$202; +export interface Params$createStorageV1VolumeAttachment { + headers: { + Accept: U; + }; + parameter: Parameter$createStorageV1VolumeAttachment; + requestBody: RequestBody$createStorageV1VolumeAttachment["*/*"]; +} +export type RequestContentType$deleteStorageV1CollectionVolumeAttachment = keyof RequestBody$deleteStorageV1CollectionVolumeAttachment; +export type ResponseContentType$deleteStorageV1CollectionVolumeAttachment = keyof Response$deleteStorageV1CollectionVolumeAttachment$Status$200; +export interface Params$deleteStorageV1CollectionVolumeAttachment { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1CollectionVolumeAttachment; + requestBody: RequestBody$deleteStorageV1CollectionVolumeAttachment["*/*"]; +} +export type ResponseContentType$readStorageV1VolumeAttachment = keyof Response$readStorageV1VolumeAttachment$Status$200; +export interface Params$readStorageV1VolumeAttachment { + headers: { + Accept: U; + }; + parameter: Parameter$readStorageV1VolumeAttachment; +} +export type RequestContentType$replaceStorageV1VolumeAttachment = keyof RequestBody$replaceStorageV1VolumeAttachment; +export type ResponseContentType$replaceStorageV1VolumeAttachment = keyof Response$replaceStorageV1VolumeAttachment$Status$200 | keyof Response$replaceStorageV1VolumeAttachment$Status$201; +export interface Params$replaceStorageV1VolumeAttachment { + headers: { + Accept: U; + }; + parameter: Parameter$replaceStorageV1VolumeAttachment; + requestBody: RequestBody$replaceStorageV1VolumeAttachment["*/*"]; +} +export type RequestContentType$deleteStorageV1VolumeAttachment = keyof RequestBody$deleteStorageV1VolumeAttachment; +export type ResponseContentType$deleteStorageV1VolumeAttachment = keyof Response$deleteStorageV1VolumeAttachment$Status$200 | keyof Response$deleteStorageV1VolumeAttachment$Status$202; +export interface Params$deleteStorageV1VolumeAttachment { + headers: { + Accept: U; + }; + parameter: Parameter$deleteStorageV1VolumeAttachment; + requestBody: RequestBody$deleteStorageV1VolumeAttachment["*/*"]; +} +export type RequestContentType$patchStorageV1VolumeAttachment = keyof RequestBody$patchStorageV1VolumeAttachment; +export type ResponseContentType$patchStorageV1VolumeAttachment = keyof Response$patchStorageV1VolumeAttachment$Status$200 | keyof Response$patchStorageV1VolumeAttachment$Status$201; +export interface Params$patchStorageV1VolumeAttachment { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchStorageV1VolumeAttachment; + requestBody: RequestBody$patchStorageV1VolumeAttachment[T]; +} +export type ResponseContentType$readStorageV1VolumeAttachmentStatus = keyof Response$readStorageV1VolumeAttachmentStatus$Status$200; +export interface Params$readStorageV1VolumeAttachmentStatus { + headers: { + Accept: U; + }; + parameter: Parameter$readStorageV1VolumeAttachmentStatus; +} +export type RequestContentType$replaceStorageV1VolumeAttachmentStatus = keyof RequestBody$replaceStorageV1VolumeAttachmentStatus; +export type ResponseContentType$replaceStorageV1VolumeAttachmentStatus = keyof Response$replaceStorageV1VolumeAttachmentStatus$Status$200 | keyof Response$replaceStorageV1VolumeAttachmentStatus$Status$201; +export interface Params$replaceStorageV1VolumeAttachmentStatus { + headers: { + Accept: U; + }; + parameter: Parameter$replaceStorageV1VolumeAttachmentStatus; + requestBody: RequestBody$replaceStorageV1VolumeAttachmentStatus["*/*"]; +} +export type RequestContentType$patchStorageV1VolumeAttachmentStatus = keyof RequestBody$patchStorageV1VolumeAttachmentStatus; +export type ResponseContentType$patchStorageV1VolumeAttachmentStatus = keyof Response$patchStorageV1VolumeAttachmentStatus$Status$200 | keyof Response$patchStorageV1VolumeAttachmentStatus$Status$201; +export interface Params$patchStorageV1VolumeAttachmentStatus { + headers: { + "Content-Type": T; + Accept: U; + }; + parameter: Parameter$patchStorageV1VolumeAttachmentStatus; + requestBody: RequestBody$patchStorageV1VolumeAttachmentStatus[T]; +} +export type ResponseContentType$watchStorageV1CSIDriverList = keyof Response$watchStorageV1CSIDriverList$Status$200; +export interface Params$watchStorageV1CSIDriverList { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1CSIDriverList; +} +export type ResponseContentType$watchStorageV1CSIDriver = keyof Response$watchStorageV1CSIDriver$Status$200; +export interface Params$watchStorageV1CSIDriver { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1CSIDriver; +} +export type ResponseContentType$watchStorageV1CSINodeList = keyof Response$watchStorageV1CSINodeList$Status$200; +export interface Params$watchStorageV1CSINodeList { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1CSINodeList; +} +export type ResponseContentType$watchStorageV1CSINode = keyof Response$watchStorageV1CSINode$Status$200; +export interface Params$watchStorageV1CSINode { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1CSINode; +} +export type ResponseContentType$watchStorageV1CSIStorageCapacityListForAllNamespaces = keyof Response$watchStorageV1CSIStorageCapacityListForAllNamespaces$Status$200; +export interface Params$watchStorageV1CSIStorageCapacityListForAllNamespaces { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1CSIStorageCapacityListForAllNamespaces; +} +export type ResponseContentType$watchStorageV1NamespacedCSIStorageCapacityList = keyof Response$watchStorageV1NamespacedCSIStorageCapacityList$Status$200; +export interface Params$watchStorageV1NamespacedCSIStorageCapacityList { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1NamespacedCSIStorageCapacityList; +} +export type ResponseContentType$watchStorageV1NamespacedCSIStorageCapacity = keyof Response$watchStorageV1NamespacedCSIStorageCapacity$Status$200; +export interface Params$watchStorageV1NamespacedCSIStorageCapacity { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1NamespacedCSIStorageCapacity; +} +export type ResponseContentType$watchStorageV1StorageClassList = keyof Response$watchStorageV1StorageClassList$Status$200; +export interface Params$watchStorageV1StorageClassList { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1StorageClassList; +} +export type ResponseContentType$watchStorageV1StorageClass = keyof Response$watchStorageV1StorageClass$Status$200; +export interface Params$watchStorageV1StorageClass { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1StorageClass; +} +export type ResponseContentType$watchStorageV1VolumeAttachmentList = keyof Response$watchStorageV1VolumeAttachmentList$Status$200; +export interface Params$watchStorageV1VolumeAttachmentList { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1VolumeAttachmentList; +} +export type ResponseContentType$watchStorageV1VolumeAttachment = keyof Response$watchStorageV1VolumeAttachment$Status$200; +export interface Params$watchStorageV1VolumeAttachment { + headers: { + Accept: U; + }; + parameter: Parameter$watchStorageV1VolumeAttachment; +} +export interface Params$logFileHandler { + parameter: Parameter$logFileHandler; +} +export type ResponseContentType$getServiceAccountIssuerOpenIDKeyset = keyof Response$getServiceAccountIssuerOpenIDKeyset$Status$200; +export type ResponseContentType$getCodeVersion = keyof Response$getCodeVersion$Status$200; +export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH" | "TRACE"; +export interface ObjectLike { + [key: string]: any; +} +export interface QueryParameter { + value: any; + style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + explode: boolean; +} +export interface QueryParameters { + [key: string]: QueryParameter; +} +export type SuccessResponses = Response$getServiceAccountIssuerOpenIDConfiguration$Status$200 | Response$getCoreAPIVersions$Status$200 | Response$getCoreV1APIResources$Status$200 | Response$listCoreV1ComponentStatus$Status$200 | Response$readCoreV1ComponentStatus$Status$200 | Response$listCoreV1ConfigMapForAllNamespaces$Status$200 | Response$listCoreV1EndpointsForAllNamespaces$Status$200 | Response$listCoreV1EventForAllNamespaces$Status$200 | Response$listCoreV1LimitRangeForAllNamespaces$Status$200 | Response$listCoreV1Namespace$Status$200 | Response$createCoreV1Namespace$Status$200 | Response$createCoreV1Namespace$Status$201 | Response$createCoreV1Namespace$Status$202 | Response$createCoreV1NamespacedBinding$Status$200 | Response$createCoreV1NamespacedBinding$Status$201 | Response$createCoreV1NamespacedBinding$Status$202 | Response$listCoreV1NamespacedConfigMap$Status$200 | Response$createCoreV1NamespacedConfigMap$Status$200 | Response$createCoreV1NamespacedConfigMap$Status$201 | Response$createCoreV1NamespacedConfigMap$Status$202 | Response$deleteCoreV1CollectionNamespacedConfigMap$Status$200 | Response$readCoreV1NamespacedConfigMap$Status$200 | Response$replaceCoreV1NamespacedConfigMap$Status$200 | Response$replaceCoreV1NamespacedConfigMap$Status$201 | Response$deleteCoreV1NamespacedConfigMap$Status$200 | Response$deleteCoreV1NamespacedConfigMap$Status$202 | Response$patchCoreV1NamespacedConfigMap$Status$200 | Response$patchCoreV1NamespacedConfigMap$Status$201 | Response$listCoreV1NamespacedEndpoints$Status$200 | Response$createCoreV1NamespacedEndpoints$Status$200 | Response$createCoreV1NamespacedEndpoints$Status$201 | Response$createCoreV1NamespacedEndpoints$Status$202 | Response$deleteCoreV1CollectionNamespacedEndpoints$Status$200 | Response$readCoreV1NamespacedEndpoints$Status$200 | Response$replaceCoreV1NamespacedEndpoints$Status$200 | Response$replaceCoreV1NamespacedEndpoints$Status$201 | Response$deleteCoreV1NamespacedEndpoints$Status$200 | Response$deleteCoreV1NamespacedEndpoints$Status$202 | Response$patchCoreV1NamespacedEndpoints$Status$200 | Response$patchCoreV1NamespacedEndpoints$Status$201 | Response$listCoreV1NamespacedEvent$Status$200 | Response$createCoreV1NamespacedEvent$Status$200 | Response$createCoreV1NamespacedEvent$Status$201 | Response$createCoreV1NamespacedEvent$Status$202 | Response$deleteCoreV1CollectionNamespacedEvent$Status$200 | Response$readCoreV1NamespacedEvent$Status$200 | Response$replaceCoreV1NamespacedEvent$Status$200 | Response$replaceCoreV1NamespacedEvent$Status$201 | Response$deleteCoreV1NamespacedEvent$Status$200 | Response$deleteCoreV1NamespacedEvent$Status$202 | Response$patchCoreV1NamespacedEvent$Status$200 | Response$patchCoreV1NamespacedEvent$Status$201 | Response$listCoreV1NamespacedLimitRange$Status$200 | Response$createCoreV1NamespacedLimitRange$Status$200 | Response$createCoreV1NamespacedLimitRange$Status$201 | Response$createCoreV1NamespacedLimitRange$Status$202 | Response$deleteCoreV1CollectionNamespacedLimitRange$Status$200 | Response$readCoreV1NamespacedLimitRange$Status$200 | Response$replaceCoreV1NamespacedLimitRange$Status$200 | Response$replaceCoreV1NamespacedLimitRange$Status$201 | Response$deleteCoreV1NamespacedLimitRange$Status$200 | Response$deleteCoreV1NamespacedLimitRange$Status$202 | Response$patchCoreV1NamespacedLimitRange$Status$200 | Response$patchCoreV1NamespacedLimitRange$Status$201 | Response$listCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$201 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202 | Response$deleteCoreV1CollectionNamespacedPersistentVolumeClaim$Status$200 | Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$201 | Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202 | Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$201 | Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$201 | Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$201 | Response$listCoreV1NamespacedPod$Status$200 | Response$createCoreV1NamespacedPod$Status$200 | Response$createCoreV1NamespacedPod$Status$201 | Response$createCoreV1NamespacedPod$Status$202 | Response$deleteCoreV1CollectionNamespacedPod$Status$200 | Response$readCoreV1NamespacedPod$Status$200 | Response$replaceCoreV1NamespacedPod$Status$200 | Response$replaceCoreV1NamespacedPod$Status$201 | Response$deleteCoreV1NamespacedPod$Status$200 | Response$deleteCoreV1NamespacedPod$Status$202 | Response$patchCoreV1NamespacedPod$Status$200 | Response$patchCoreV1NamespacedPod$Status$201 | Response$connectCoreV1GetNamespacedPodAttach$Status$200 | Response$connectCoreV1PostNamespacedPodAttach$Status$200 | Response$createCoreV1NamespacedPodBinding$Status$200 | Response$createCoreV1NamespacedPodBinding$Status$201 | Response$createCoreV1NamespacedPodBinding$Status$202 | Response$readCoreV1NamespacedPodEphemeralcontainers$Status$200 | Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$200 | Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$201 | Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$200 | Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$201 | Response$createCoreV1NamespacedPodEviction$Status$200 | Response$createCoreV1NamespacedPodEviction$Status$201 | Response$createCoreV1NamespacedPodEviction$Status$202 | Response$connectCoreV1GetNamespacedPodExec$Status$200 | Response$connectCoreV1PostNamespacedPodExec$Status$200 | Response$readCoreV1NamespacedPodLog$Status$200 | Response$connectCoreV1GetNamespacedPodPortforward$Status$200 | Response$connectCoreV1PostNamespacedPodPortforward$Status$200 | Response$connectCoreV1GetNamespacedPodProxy$Status$200 | Response$connectCoreV1PutNamespacedPodProxy$Status$200 | Response$connectCoreV1PostNamespacedPodProxy$Status$200 | Response$connectCoreV1DeleteNamespacedPodProxy$Status$200 | Response$connectCoreV1OptionsNamespacedPodProxy$Status$200 | Response$connectCoreV1HeadNamespacedPodProxy$Status$200 | Response$connectCoreV1PatchNamespacedPodProxy$Status$200 | Response$connectCoreV1GetNamespacedPodProxyWithPath$Status$200 | Response$connectCoreV1PutNamespacedPodProxyWithPath$Status$200 | Response$connectCoreV1PostNamespacedPodProxyWithPath$Status$200 | Response$connectCoreV1DeleteNamespacedPodProxyWithPath$Status$200 | Response$connectCoreV1OptionsNamespacedPodProxyWithPath$Status$200 | Response$connectCoreV1HeadNamespacedPodProxyWithPath$Status$200 | Response$connectCoreV1PatchNamespacedPodProxyWithPath$Status$200 | Response$readCoreV1NamespacedPodStatus$Status$200 | Response$replaceCoreV1NamespacedPodStatus$Status$200 | Response$replaceCoreV1NamespacedPodStatus$Status$201 | Response$patchCoreV1NamespacedPodStatus$Status$200 | Response$patchCoreV1NamespacedPodStatus$Status$201 | Response$listCoreV1NamespacedPodTemplate$Status$200 | Response$createCoreV1NamespacedPodTemplate$Status$200 | Response$createCoreV1NamespacedPodTemplate$Status$201 | Response$createCoreV1NamespacedPodTemplate$Status$202 | Response$deleteCoreV1CollectionNamespacedPodTemplate$Status$200 | Response$readCoreV1NamespacedPodTemplate$Status$200 | Response$replaceCoreV1NamespacedPodTemplate$Status$200 | Response$replaceCoreV1NamespacedPodTemplate$Status$201 | Response$deleteCoreV1NamespacedPodTemplate$Status$200 | Response$deleteCoreV1NamespacedPodTemplate$Status$202 | Response$patchCoreV1NamespacedPodTemplate$Status$200 | Response$patchCoreV1NamespacedPodTemplate$Status$201 | Response$listCoreV1NamespacedReplicationController$Status$200 | Response$createCoreV1NamespacedReplicationController$Status$200 | Response$createCoreV1NamespacedReplicationController$Status$201 | Response$createCoreV1NamespacedReplicationController$Status$202 | Response$deleteCoreV1CollectionNamespacedReplicationController$Status$200 | Response$readCoreV1NamespacedReplicationController$Status$200 | Response$replaceCoreV1NamespacedReplicationController$Status$200 | Response$replaceCoreV1NamespacedReplicationController$Status$201 | Response$deleteCoreV1NamespacedReplicationController$Status$200 | Response$deleteCoreV1NamespacedReplicationController$Status$202 | Response$patchCoreV1NamespacedReplicationController$Status$200 | Response$patchCoreV1NamespacedReplicationController$Status$201 | Response$readCoreV1NamespacedReplicationControllerScale$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerScale$Status$201 | Response$patchCoreV1NamespacedReplicationControllerScale$Status$200 | Response$patchCoreV1NamespacedReplicationControllerScale$Status$201 | Response$readCoreV1NamespacedReplicationControllerStatus$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$201 | Response$patchCoreV1NamespacedReplicationControllerStatus$Status$200 | Response$patchCoreV1NamespacedReplicationControllerStatus$Status$201 | Response$listCoreV1NamespacedResourceQuota$Status$200 | Response$createCoreV1NamespacedResourceQuota$Status$200 | Response$createCoreV1NamespacedResourceQuota$Status$201 | Response$createCoreV1NamespacedResourceQuota$Status$202 | Response$deleteCoreV1CollectionNamespacedResourceQuota$Status$200 | Response$readCoreV1NamespacedResourceQuota$Status$200 | Response$replaceCoreV1NamespacedResourceQuota$Status$200 | Response$replaceCoreV1NamespacedResourceQuota$Status$201 | Response$deleteCoreV1NamespacedResourceQuota$Status$200 | Response$deleteCoreV1NamespacedResourceQuota$Status$202 | Response$patchCoreV1NamespacedResourceQuota$Status$200 | Response$patchCoreV1NamespacedResourceQuota$Status$201 | Response$readCoreV1NamespacedResourceQuotaStatus$Status$200 | Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 | Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201 | Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 | Response$patchCoreV1NamespacedResourceQuotaStatus$Status$201 | Response$listCoreV1NamespacedSecret$Status$200 | Response$createCoreV1NamespacedSecret$Status$200 | Response$createCoreV1NamespacedSecret$Status$201 | Response$createCoreV1NamespacedSecret$Status$202 | Response$deleteCoreV1CollectionNamespacedSecret$Status$200 | Response$readCoreV1NamespacedSecret$Status$200 | Response$replaceCoreV1NamespacedSecret$Status$200 | Response$replaceCoreV1NamespacedSecret$Status$201 | Response$deleteCoreV1NamespacedSecret$Status$200 | Response$deleteCoreV1NamespacedSecret$Status$202 | Response$patchCoreV1NamespacedSecret$Status$200 | Response$patchCoreV1NamespacedSecret$Status$201 | Response$listCoreV1NamespacedServiceAccount$Status$200 | Response$createCoreV1NamespacedServiceAccount$Status$200 | Response$createCoreV1NamespacedServiceAccount$Status$201 | Response$createCoreV1NamespacedServiceAccount$Status$202 | Response$deleteCoreV1CollectionNamespacedServiceAccount$Status$200 | Response$readCoreV1NamespacedServiceAccount$Status$200 | Response$replaceCoreV1NamespacedServiceAccount$Status$200 | Response$replaceCoreV1NamespacedServiceAccount$Status$201 | Response$deleteCoreV1NamespacedServiceAccount$Status$200 | Response$deleteCoreV1NamespacedServiceAccount$Status$202 | Response$patchCoreV1NamespacedServiceAccount$Status$200 | Response$patchCoreV1NamespacedServiceAccount$Status$201 | Response$createCoreV1NamespacedServiceAccountToken$Status$200 | Response$createCoreV1NamespacedServiceAccountToken$Status$201 | Response$createCoreV1NamespacedServiceAccountToken$Status$202 | Response$listCoreV1NamespacedService$Status$200 | Response$createCoreV1NamespacedService$Status$200 | Response$createCoreV1NamespacedService$Status$201 | Response$createCoreV1NamespacedService$Status$202 | Response$deleteCoreV1CollectionNamespacedService$Status$200 | Response$readCoreV1NamespacedService$Status$200 | Response$replaceCoreV1NamespacedService$Status$200 | Response$replaceCoreV1NamespacedService$Status$201 | Response$deleteCoreV1NamespacedService$Status$200 | Response$deleteCoreV1NamespacedService$Status$202 | Response$patchCoreV1NamespacedService$Status$200 | Response$patchCoreV1NamespacedService$Status$201 | Response$connectCoreV1GetNamespacedServiceProxy$Status$200 | Response$connectCoreV1PutNamespacedServiceProxy$Status$200 | Response$connectCoreV1PostNamespacedServiceProxy$Status$200 | Response$connectCoreV1DeleteNamespacedServiceProxy$Status$200 | Response$connectCoreV1OptionsNamespacedServiceProxy$Status$200 | Response$connectCoreV1HeadNamespacedServiceProxy$Status$200 | Response$connectCoreV1PatchNamespacedServiceProxy$Status$200 | Response$connectCoreV1GetNamespacedServiceProxyWithPath$Status$200 | Response$connectCoreV1PutNamespacedServiceProxyWithPath$Status$200 | Response$connectCoreV1PostNamespacedServiceProxyWithPath$Status$200 | Response$connectCoreV1DeleteNamespacedServiceProxyWithPath$Status$200 | Response$connectCoreV1OptionsNamespacedServiceProxyWithPath$Status$200 | Response$connectCoreV1HeadNamespacedServiceProxyWithPath$Status$200 | Response$connectCoreV1PatchNamespacedServiceProxyWithPath$Status$200 | Response$readCoreV1NamespacedServiceStatus$Status$200 | Response$replaceCoreV1NamespacedServiceStatus$Status$200 | Response$replaceCoreV1NamespacedServiceStatus$Status$201 | Response$patchCoreV1NamespacedServiceStatus$Status$200 | Response$patchCoreV1NamespacedServiceStatus$Status$201 | Response$readCoreV1Namespace$Status$200 | Response$replaceCoreV1Namespace$Status$200 | Response$replaceCoreV1Namespace$Status$201 | Response$deleteCoreV1Namespace$Status$200 | Response$deleteCoreV1Namespace$Status$202 | Response$patchCoreV1Namespace$Status$200 | Response$patchCoreV1Namespace$Status$201 | Response$replaceCoreV1NamespaceFinalize$Status$200 | Response$replaceCoreV1NamespaceFinalize$Status$201 | Response$readCoreV1NamespaceStatus$Status$200 | Response$replaceCoreV1NamespaceStatus$Status$200 | Response$replaceCoreV1NamespaceStatus$Status$201 | Response$patchCoreV1NamespaceStatus$Status$200 | Response$patchCoreV1NamespaceStatus$Status$201 | Response$listCoreV1Node$Status$200 | Response$createCoreV1Node$Status$200 | Response$createCoreV1Node$Status$201 | Response$createCoreV1Node$Status$202 | Response$deleteCoreV1CollectionNode$Status$200 | Response$readCoreV1Node$Status$200 | Response$replaceCoreV1Node$Status$200 | Response$replaceCoreV1Node$Status$201 | Response$deleteCoreV1Node$Status$200 | Response$deleteCoreV1Node$Status$202 | Response$patchCoreV1Node$Status$200 | Response$patchCoreV1Node$Status$201 | Response$connectCoreV1GetNodeProxy$Status$200 | Response$connectCoreV1PutNodeProxy$Status$200 | Response$connectCoreV1PostNodeProxy$Status$200 | Response$connectCoreV1DeleteNodeProxy$Status$200 | Response$connectCoreV1OptionsNodeProxy$Status$200 | Response$connectCoreV1HeadNodeProxy$Status$200 | Response$connectCoreV1PatchNodeProxy$Status$200 | Response$connectCoreV1GetNodeProxyWithPath$Status$200 | Response$connectCoreV1PutNodeProxyWithPath$Status$200 | Response$connectCoreV1PostNodeProxyWithPath$Status$200 | Response$connectCoreV1DeleteNodeProxyWithPath$Status$200 | Response$connectCoreV1OptionsNodeProxyWithPath$Status$200 | Response$connectCoreV1HeadNodeProxyWithPath$Status$200 | Response$connectCoreV1PatchNodeProxyWithPath$Status$200 | Response$readCoreV1NodeStatus$Status$200 | Response$replaceCoreV1NodeStatus$Status$200 | Response$replaceCoreV1NodeStatus$Status$201 | Response$patchCoreV1NodeStatus$Status$200 | Response$patchCoreV1NodeStatus$Status$201 | Response$listCoreV1PersistentVolumeClaimForAllNamespaces$Status$200 | Response$listCoreV1PersistentVolume$Status$200 | Response$createCoreV1PersistentVolume$Status$200 | Response$createCoreV1PersistentVolume$Status$201 | Response$createCoreV1PersistentVolume$Status$202 | Response$deleteCoreV1CollectionPersistentVolume$Status$200 | Response$readCoreV1PersistentVolume$Status$200 | Response$replaceCoreV1PersistentVolume$Status$200 | Response$replaceCoreV1PersistentVolume$Status$201 | Response$deleteCoreV1PersistentVolume$Status$200 | Response$deleteCoreV1PersistentVolume$Status$202 | Response$patchCoreV1PersistentVolume$Status$200 | Response$patchCoreV1PersistentVolume$Status$201 | Response$readCoreV1PersistentVolumeStatus$Status$200 | Response$replaceCoreV1PersistentVolumeStatus$Status$200 | Response$replaceCoreV1PersistentVolumeStatus$Status$201 | Response$patchCoreV1PersistentVolumeStatus$Status$200 | Response$patchCoreV1PersistentVolumeStatus$Status$201 | Response$listCoreV1PodForAllNamespaces$Status$200 | Response$listCoreV1PodTemplateForAllNamespaces$Status$200 | Response$listCoreV1ReplicationControllerForAllNamespaces$Status$200 | Response$listCoreV1ResourceQuotaForAllNamespaces$Status$200 | Response$listCoreV1SecretForAllNamespaces$Status$200 | Response$listCoreV1ServiceAccountForAllNamespaces$Status$200 | Response$listCoreV1ServiceForAllNamespaces$Status$200 | Response$watchCoreV1ConfigMapListForAllNamespaces$Status$200 | Response$watchCoreV1EndpointsListForAllNamespaces$Status$200 | Response$watchCoreV1EventListForAllNamespaces$Status$200 | Response$watchCoreV1LimitRangeListForAllNamespaces$Status$200 | Response$watchCoreV1NamespaceList$Status$200 | Response$watchCoreV1NamespacedConfigMapList$Status$200 | Response$watchCoreV1NamespacedConfigMap$Status$200 | Response$watchCoreV1NamespacedEndpointsList$Status$200 | Response$watchCoreV1NamespacedEndpoints$Status$200 | Response$watchCoreV1NamespacedEventList$Status$200 | Response$watchCoreV1NamespacedEvent$Status$200 | Response$watchCoreV1NamespacedLimitRangeList$Status$200 | Response$watchCoreV1NamespacedLimitRange$Status$200 | Response$watchCoreV1NamespacedPersistentVolumeClaimList$Status$200 | Response$watchCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$watchCoreV1NamespacedPodList$Status$200 | Response$watchCoreV1NamespacedPod$Status$200 | Response$watchCoreV1NamespacedPodTemplateList$Status$200 | Response$watchCoreV1NamespacedPodTemplate$Status$200 | Response$watchCoreV1NamespacedReplicationControllerList$Status$200 | Response$watchCoreV1NamespacedReplicationController$Status$200 | Response$watchCoreV1NamespacedResourceQuotaList$Status$200 | Response$watchCoreV1NamespacedResourceQuota$Status$200 | Response$watchCoreV1NamespacedSecretList$Status$200 | Response$watchCoreV1NamespacedSecret$Status$200 | Response$watchCoreV1NamespacedServiceAccountList$Status$200 | Response$watchCoreV1NamespacedServiceAccount$Status$200 | Response$watchCoreV1NamespacedServiceList$Status$200 | Response$watchCoreV1NamespacedService$Status$200 | Response$watchCoreV1Namespace$Status$200 | Response$watchCoreV1NodeList$Status$200 | Response$watchCoreV1Node$Status$200 | Response$watchCoreV1PersistentVolumeClaimListForAllNamespaces$Status$200 | Response$watchCoreV1PersistentVolumeList$Status$200 | Response$watchCoreV1PersistentVolume$Status$200 | Response$watchCoreV1PodListForAllNamespaces$Status$200 | Response$watchCoreV1PodTemplateListForAllNamespaces$Status$200 | Response$watchCoreV1ReplicationControllerListForAllNamespaces$Status$200 | Response$watchCoreV1ResourceQuotaListForAllNamespaces$Status$200 | Response$watchCoreV1SecretListForAllNamespaces$Status$200 | Response$watchCoreV1ServiceAccountListForAllNamespaces$Status$200 | Response$watchCoreV1ServiceListForAllNamespaces$Status$200 | Response$getAPIVersions$Status$200 | Response$getAdmissionregistrationAPIGroup$Status$200 | Response$getAdmissionregistrationV1APIResources$Status$200 | Response$listAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$202 | Response$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration$Status$200 | Response$readAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 | Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$202 | Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 | Response$listAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202 | Response$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration$Status$200 | Response$readAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 | Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202 | Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 | Response$watchAdmissionregistrationV1MutatingWebhookConfigurationList$Status$200 | Response$watchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$watchAdmissionregistrationV1ValidatingWebhookConfigurationList$Status$200 | Response$watchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$getAdmissionregistrationV1alpha1APIResources$Status$200 | Response$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202 | Response$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy$Status$200 | Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 | Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 | Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201 | Response$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202 | Response$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding$Status$200 | Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 | Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 | Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList$Status$200 | Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList$Status$200 | Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$getAdmissionregistrationV1beta1APIResources$Status$200 | Response$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202 | Response$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy$Status$200 | Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 | Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 | Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201 | Response$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202 | Response$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding$Status$200 | Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 | Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 | Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList$Status$200 | Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList$Status$200 | Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$getApiextensionsAPIGroup$Status$200 | Response$getApiextensionsV1APIResources$Status$200 | Response$listApiextensionsV1CustomResourceDefinition$Status$200 | Response$createApiextensionsV1CustomResourceDefinition$Status$200 | Response$createApiextensionsV1CustomResourceDefinition$Status$201 | Response$createApiextensionsV1CustomResourceDefinition$Status$202 | Response$deleteApiextensionsV1CollectionCustomResourceDefinition$Status$200 | Response$readApiextensionsV1CustomResourceDefinition$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinition$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinition$Status$201 | Response$deleteApiextensionsV1CustomResourceDefinition$Status$200 | Response$deleteApiextensionsV1CustomResourceDefinition$Status$202 | Response$patchApiextensionsV1CustomResourceDefinition$Status$200 | Response$patchApiextensionsV1CustomResourceDefinition$Status$201 | Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$201 | Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$200 | Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$201 | Response$watchApiextensionsV1CustomResourceDefinitionList$Status$200 | Response$watchApiextensionsV1CustomResourceDefinition$Status$200 | Response$getApiregistrationAPIGroup$Status$200 | Response$getApiregistrationV1APIResources$Status$200 | Response$listApiregistrationV1APIService$Status$200 | Response$createApiregistrationV1APIService$Status$200 | Response$createApiregistrationV1APIService$Status$201 | Response$createApiregistrationV1APIService$Status$202 | Response$deleteApiregistrationV1CollectionAPIService$Status$200 | Response$readApiregistrationV1APIService$Status$200 | Response$replaceApiregistrationV1APIService$Status$200 | Response$replaceApiregistrationV1APIService$Status$201 | Response$deleteApiregistrationV1APIService$Status$200 | Response$deleteApiregistrationV1APIService$Status$202 | Response$patchApiregistrationV1APIService$Status$200 | Response$patchApiregistrationV1APIService$Status$201 | Response$readApiregistrationV1APIServiceStatus$Status$200 | Response$replaceApiregistrationV1APIServiceStatus$Status$200 | Response$replaceApiregistrationV1APIServiceStatus$Status$201 | Response$patchApiregistrationV1APIServiceStatus$Status$200 | Response$patchApiregistrationV1APIServiceStatus$Status$201 | Response$watchApiregistrationV1APIServiceList$Status$200 | Response$watchApiregistrationV1APIService$Status$200 | Response$getAppsAPIGroup$Status$200 | Response$getAppsV1APIResources$Status$200 | Response$listAppsV1ControllerRevisionForAllNamespaces$Status$200 | Response$listAppsV1DaemonSetForAllNamespaces$Status$200 | Response$listAppsV1DeploymentForAllNamespaces$Status$200 | Response$listAppsV1NamespacedControllerRevision$Status$200 | Response$createAppsV1NamespacedControllerRevision$Status$200 | Response$createAppsV1NamespacedControllerRevision$Status$201 | Response$createAppsV1NamespacedControllerRevision$Status$202 | Response$deleteAppsV1CollectionNamespacedControllerRevision$Status$200 | Response$readAppsV1NamespacedControllerRevision$Status$200 | Response$replaceAppsV1NamespacedControllerRevision$Status$200 | Response$replaceAppsV1NamespacedControllerRevision$Status$201 | Response$deleteAppsV1NamespacedControllerRevision$Status$200 | Response$deleteAppsV1NamespacedControllerRevision$Status$202 | Response$patchAppsV1NamespacedControllerRevision$Status$200 | Response$patchAppsV1NamespacedControllerRevision$Status$201 | Response$listAppsV1NamespacedDaemonSet$Status$200 | Response$createAppsV1NamespacedDaemonSet$Status$200 | Response$createAppsV1NamespacedDaemonSet$Status$201 | Response$createAppsV1NamespacedDaemonSet$Status$202 | Response$deleteAppsV1CollectionNamespacedDaemonSet$Status$200 | Response$readAppsV1NamespacedDaemonSet$Status$200 | Response$replaceAppsV1NamespacedDaemonSet$Status$200 | Response$replaceAppsV1NamespacedDaemonSet$Status$201 | Response$deleteAppsV1NamespacedDaemonSet$Status$200 | Response$deleteAppsV1NamespacedDaemonSet$Status$202 | Response$patchAppsV1NamespacedDaemonSet$Status$200 | Response$patchAppsV1NamespacedDaemonSet$Status$201 | Response$readAppsV1NamespacedDaemonSetStatus$Status$200 | Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 | Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201 | Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 | Response$patchAppsV1NamespacedDaemonSetStatus$Status$201 | Response$listAppsV1NamespacedDeployment$Status$200 | Response$createAppsV1NamespacedDeployment$Status$200 | Response$createAppsV1NamespacedDeployment$Status$201 | Response$createAppsV1NamespacedDeployment$Status$202 | Response$deleteAppsV1CollectionNamespacedDeployment$Status$200 | Response$readAppsV1NamespacedDeployment$Status$200 | Response$replaceAppsV1NamespacedDeployment$Status$200 | Response$replaceAppsV1NamespacedDeployment$Status$201 | Response$deleteAppsV1NamespacedDeployment$Status$200 | Response$deleteAppsV1NamespacedDeployment$Status$202 | Response$patchAppsV1NamespacedDeployment$Status$200 | Response$patchAppsV1NamespacedDeployment$Status$201 | Response$readAppsV1NamespacedDeploymentScale$Status$200 | Response$replaceAppsV1NamespacedDeploymentScale$Status$200 | Response$replaceAppsV1NamespacedDeploymentScale$Status$201 | Response$patchAppsV1NamespacedDeploymentScale$Status$200 | Response$patchAppsV1NamespacedDeploymentScale$Status$201 | Response$readAppsV1NamespacedDeploymentStatus$Status$200 | Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 | Response$replaceAppsV1NamespacedDeploymentStatus$Status$201 | Response$patchAppsV1NamespacedDeploymentStatus$Status$200 | Response$patchAppsV1NamespacedDeploymentStatus$Status$201 | Response$listAppsV1NamespacedReplicaSet$Status$200 | Response$createAppsV1NamespacedReplicaSet$Status$200 | Response$createAppsV1NamespacedReplicaSet$Status$201 | Response$createAppsV1NamespacedReplicaSet$Status$202 | Response$deleteAppsV1CollectionNamespacedReplicaSet$Status$200 | Response$readAppsV1NamespacedReplicaSet$Status$200 | Response$replaceAppsV1NamespacedReplicaSet$Status$200 | Response$replaceAppsV1NamespacedReplicaSet$Status$201 | Response$deleteAppsV1NamespacedReplicaSet$Status$200 | Response$deleteAppsV1NamespacedReplicaSet$Status$202 | Response$patchAppsV1NamespacedReplicaSet$Status$200 | Response$patchAppsV1NamespacedReplicaSet$Status$201 | Response$readAppsV1NamespacedReplicaSetScale$Status$200 | Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 | Response$replaceAppsV1NamespacedReplicaSetScale$Status$201 | Response$patchAppsV1NamespacedReplicaSetScale$Status$200 | Response$patchAppsV1NamespacedReplicaSetScale$Status$201 | Response$readAppsV1NamespacedReplicaSetStatus$Status$200 | Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 | Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201 | Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 | Response$patchAppsV1NamespacedReplicaSetStatus$Status$201 | Response$listAppsV1NamespacedStatefulSet$Status$200 | Response$createAppsV1NamespacedStatefulSet$Status$200 | Response$createAppsV1NamespacedStatefulSet$Status$201 | Response$createAppsV1NamespacedStatefulSet$Status$202 | Response$deleteAppsV1CollectionNamespacedStatefulSet$Status$200 | Response$readAppsV1NamespacedStatefulSet$Status$200 | Response$replaceAppsV1NamespacedStatefulSet$Status$200 | Response$replaceAppsV1NamespacedStatefulSet$Status$201 | Response$deleteAppsV1NamespacedStatefulSet$Status$200 | Response$deleteAppsV1NamespacedStatefulSet$Status$202 | Response$patchAppsV1NamespacedStatefulSet$Status$200 | Response$patchAppsV1NamespacedStatefulSet$Status$201 | Response$readAppsV1NamespacedStatefulSetScale$Status$200 | Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 | Response$replaceAppsV1NamespacedStatefulSetScale$Status$201 | Response$patchAppsV1NamespacedStatefulSetScale$Status$200 | Response$patchAppsV1NamespacedStatefulSetScale$Status$201 | Response$readAppsV1NamespacedStatefulSetStatus$Status$200 | Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 | Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201 | Response$patchAppsV1NamespacedStatefulSetStatus$Status$200 | Response$patchAppsV1NamespacedStatefulSetStatus$Status$201 | Response$listAppsV1ReplicaSetForAllNamespaces$Status$200 | Response$listAppsV1StatefulSetForAllNamespaces$Status$200 | Response$watchAppsV1ControllerRevisionListForAllNamespaces$Status$200 | Response$watchAppsV1DaemonSetListForAllNamespaces$Status$200 | Response$watchAppsV1DeploymentListForAllNamespaces$Status$200 | Response$watchAppsV1NamespacedControllerRevisionList$Status$200 | Response$watchAppsV1NamespacedControllerRevision$Status$200 | Response$watchAppsV1NamespacedDaemonSetList$Status$200 | Response$watchAppsV1NamespacedDaemonSet$Status$200 | Response$watchAppsV1NamespacedDeploymentList$Status$200 | Response$watchAppsV1NamespacedDeployment$Status$200 | Response$watchAppsV1NamespacedReplicaSetList$Status$200 | Response$watchAppsV1NamespacedReplicaSet$Status$200 | Response$watchAppsV1NamespacedStatefulSetList$Status$200 | Response$watchAppsV1NamespacedStatefulSet$Status$200 | Response$watchAppsV1ReplicaSetListForAllNamespaces$Status$200 | Response$watchAppsV1StatefulSetListForAllNamespaces$Status$200 | Response$getAuthenticationAPIGroup$Status$200 | Response$getAuthenticationV1APIResources$Status$200 | Response$createAuthenticationV1SelfSubjectReview$Status$200 | Response$createAuthenticationV1SelfSubjectReview$Status$201 | Response$createAuthenticationV1SelfSubjectReview$Status$202 | Response$createAuthenticationV1TokenReview$Status$200 | Response$createAuthenticationV1TokenReview$Status$201 | Response$createAuthenticationV1TokenReview$Status$202 | Response$getAuthenticationV1alpha1APIResources$Status$200 | Response$createAuthenticationV1alpha1SelfSubjectReview$Status$200 | Response$createAuthenticationV1alpha1SelfSubjectReview$Status$201 | Response$createAuthenticationV1alpha1SelfSubjectReview$Status$202 | Response$getAuthenticationV1beta1APIResources$Status$200 | Response$createAuthenticationV1beta1SelfSubjectReview$Status$200 | Response$createAuthenticationV1beta1SelfSubjectReview$Status$201 | Response$createAuthenticationV1beta1SelfSubjectReview$Status$202 | Response$getAuthorizationAPIGroup$Status$200 | Response$getAuthorizationV1APIResources$Status$200 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$200 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$201 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$202 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$200 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$201 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$202 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$200 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$201 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$202 | Response$createAuthorizationV1SubjectAccessReview$Status$200 | Response$createAuthorizationV1SubjectAccessReview$Status$201 | Response$createAuthorizationV1SubjectAccessReview$Status$202 | Response$getAutoscalingAPIGroup$Status$200 | Response$getAutoscalingV1APIResources$Status$200 | Response$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces$Status$200 | Response$listAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202 | Response$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler$Status$200 | Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 | Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202 | Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 | Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201 | Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201 | Response$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces$Status$200 | Response$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList$Status$200 | Response$watchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$getAutoscalingV2APIResources$Status$200 | Response$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces$Status$200 | Response$listAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202 | Response$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler$Status$200 | Response$readAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 | Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202 | Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 | Response$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201 | Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201 | Response$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces$Status$200 | Response$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList$Status$200 | Response$watchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$getBatchAPIGroup$Status$200 | Response$getBatchV1APIResources$Status$200 | Response$listBatchV1CronJobForAllNamespaces$Status$200 | Response$listBatchV1JobForAllNamespaces$Status$200 | Response$listBatchV1NamespacedCronJob$Status$200 | Response$createBatchV1NamespacedCronJob$Status$200 | Response$createBatchV1NamespacedCronJob$Status$201 | Response$createBatchV1NamespacedCronJob$Status$202 | Response$deleteBatchV1CollectionNamespacedCronJob$Status$200 | Response$readBatchV1NamespacedCronJob$Status$200 | Response$replaceBatchV1NamespacedCronJob$Status$200 | Response$replaceBatchV1NamespacedCronJob$Status$201 | Response$deleteBatchV1NamespacedCronJob$Status$200 | Response$deleteBatchV1NamespacedCronJob$Status$202 | Response$patchBatchV1NamespacedCronJob$Status$200 | Response$patchBatchV1NamespacedCronJob$Status$201 | Response$readBatchV1NamespacedCronJobStatus$Status$200 | Response$replaceBatchV1NamespacedCronJobStatus$Status$200 | Response$replaceBatchV1NamespacedCronJobStatus$Status$201 | Response$patchBatchV1NamespacedCronJobStatus$Status$200 | Response$patchBatchV1NamespacedCronJobStatus$Status$201 | Response$listBatchV1NamespacedJob$Status$200 | Response$createBatchV1NamespacedJob$Status$200 | Response$createBatchV1NamespacedJob$Status$201 | Response$createBatchV1NamespacedJob$Status$202 | Response$deleteBatchV1CollectionNamespacedJob$Status$200 | Response$readBatchV1NamespacedJob$Status$200 | Response$replaceBatchV1NamespacedJob$Status$200 | Response$replaceBatchV1NamespacedJob$Status$201 | Response$deleteBatchV1NamespacedJob$Status$200 | Response$deleteBatchV1NamespacedJob$Status$202 | Response$patchBatchV1NamespacedJob$Status$200 | Response$patchBatchV1NamespacedJob$Status$201 | Response$readBatchV1NamespacedJobStatus$Status$200 | Response$replaceBatchV1NamespacedJobStatus$Status$200 | Response$replaceBatchV1NamespacedJobStatus$Status$201 | Response$patchBatchV1NamespacedJobStatus$Status$200 | Response$patchBatchV1NamespacedJobStatus$Status$201 | Response$watchBatchV1CronJobListForAllNamespaces$Status$200 | Response$watchBatchV1JobListForAllNamespaces$Status$200 | Response$watchBatchV1NamespacedCronJobList$Status$200 | Response$watchBatchV1NamespacedCronJob$Status$200 | Response$watchBatchV1NamespacedJobList$Status$200 | Response$watchBatchV1NamespacedJob$Status$200 | Response$getCertificatesAPIGroup$Status$200 | Response$getCertificatesV1APIResources$Status$200 | Response$listCertificatesV1CertificateSigningRequest$Status$200 | Response$createCertificatesV1CertificateSigningRequest$Status$200 | Response$createCertificatesV1CertificateSigningRequest$Status$201 | Response$createCertificatesV1CertificateSigningRequest$Status$202 | Response$deleteCertificatesV1CollectionCertificateSigningRequest$Status$200 | Response$readCertificatesV1CertificateSigningRequest$Status$200 | Response$replaceCertificatesV1CertificateSigningRequest$Status$200 | Response$replaceCertificatesV1CertificateSigningRequest$Status$201 | Response$deleteCertificatesV1CertificateSigningRequest$Status$200 | Response$deleteCertificatesV1CertificateSigningRequest$Status$202 | Response$patchCertificatesV1CertificateSigningRequest$Status$200 | Response$patchCertificatesV1CertificateSigningRequest$Status$201 | Response$readCertificatesV1CertificateSigningRequestApproval$Status$200 | Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$200 | Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$201 | Response$patchCertificatesV1CertificateSigningRequestApproval$Status$200 | Response$patchCertificatesV1CertificateSigningRequestApproval$Status$201 | Response$readCertificatesV1CertificateSigningRequestStatus$Status$200 | Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$200 | Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$201 | Response$patchCertificatesV1CertificateSigningRequestStatus$Status$200 | Response$patchCertificatesV1CertificateSigningRequestStatus$Status$201 | Response$watchCertificatesV1CertificateSigningRequestList$Status$200 | Response$watchCertificatesV1CertificateSigningRequest$Status$200 | Response$getCertificatesV1alpha1APIResources$Status$200 | Response$listCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$createCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$createCertificatesV1alpha1ClusterTrustBundle$Status$201 | Response$createCertificatesV1alpha1ClusterTrustBundle$Status$202 | Response$deleteCertificatesV1alpha1CollectionClusterTrustBundle$Status$200 | Response$readCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$201 | Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$202 | Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$201 | Response$watchCertificatesV1alpha1ClusterTrustBundleList$Status$200 | Response$watchCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$getCoordinationAPIGroup$Status$200 | Response$getCoordinationV1APIResources$Status$200 | Response$listCoordinationV1LeaseForAllNamespaces$Status$200 | Response$listCoordinationV1NamespacedLease$Status$200 | Response$createCoordinationV1NamespacedLease$Status$200 | Response$createCoordinationV1NamespacedLease$Status$201 | Response$createCoordinationV1NamespacedLease$Status$202 | Response$deleteCoordinationV1CollectionNamespacedLease$Status$200 | Response$readCoordinationV1NamespacedLease$Status$200 | Response$replaceCoordinationV1NamespacedLease$Status$200 | Response$replaceCoordinationV1NamespacedLease$Status$201 | Response$deleteCoordinationV1NamespacedLease$Status$200 | Response$deleteCoordinationV1NamespacedLease$Status$202 | Response$patchCoordinationV1NamespacedLease$Status$200 | Response$patchCoordinationV1NamespacedLease$Status$201 | Response$watchCoordinationV1LeaseListForAllNamespaces$Status$200 | Response$watchCoordinationV1NamespacedLeaseList$Status$200 | Response$watchCoordinationV1NamespacedLease$Status$200 | Response$getDiscoveryAPIGroup$Status$200 | Response$getDiscoveryV1APIResources$Status$200 | Response$listDiscoveryV1EndpointSliceForAllNamespaces$Status$200 | Response$listDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$createDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$createDiscoveryV1NamespacedEndpointSlice$Status$201 | Response$createDiscoveryV1NamespacedEndpointSlice$Status$202 | Response$deleteDiscoveryV1CollectionNamespacedEndpointSlice$Status$200 | Response$readDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$201 | Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$202 | Response$patchDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$patchDiscoveryV1NamespacedEndpointSlice$Status$201 | Response$watchDiscoveryV1EndpointSliceListForAllNamespaces$Status$200 | Response$watchDiscoveryV1NamespacedEndpointSliceList$Status$200 | Response$watchDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$getEventsAPIGroup$Status$200 | Response$getEventsV1APIResources$Status$200 | Response$listEventsV1EventForAllNamespaces$Status$200 | Response$listEventsV1NamespacedEvent$Status$200 | Response$createEventsV1NamespacedEvent$Status$200 | Response$createEventsV1NamespacedEvent$Status$201 | Response$createEventsV1NamespacedEvent$Status$202 | Response$deleteEventsV1CollectionNamespacedEvent$Status$200 | Response$readEventsV1NamespacedEvent$Status$200 | Response$replaceEventsV1NamespacedEvent$Status$200 | Response$replaceEventsV1NamespacedEvent$Status$201 | Response$deleteEventsV1NamespacedEvent$Status$200 | Response$deleteEventsV1NamespacedEvent$Status$202 | Response$patchEventsV1NamespacedEvent$Status$200 | Response$patchEventsV1NamespacedEvent$Status$201 | Response$watchEventsV1EventListForAllNamespaces$Status$200 | Response$watchEventsV1NamespacedEventList$Status$200 | Response$watchEventsV1NamespacedEvent$Status$200 | Response$getFlowcontrolApiserverAPIGroup$Status$200 | Response$getFlowcontrolApiserverV1beta2APIResources$Status$200 | Response$listFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$201 | Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$202 | Response$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema$Status$200 | Response$readFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$201 | Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$202 | Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$201 | Response$readFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201 | Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201 | Response$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 | Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202 | Response$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration$Status$200 | Response$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 | Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202 | Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 | Response$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201 | Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201 | Response$watchFlowcontrolApiserverV1beta2FlowSchemaList$Status$200 | Response$watchFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList$Status$200 | Response$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$getFlowcontrolApiserverV1beta3APIResources$Status$200 | Response$listFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$201 | Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$202 | Response$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema$Status$200 | Response$readFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$201 | Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$202 | Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$201 | Response$readFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201 | Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201 | Response$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 | Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202 | Response$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration$Status$200 | Response$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 | Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202 | Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 | Response$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201 | Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201 | Response$watchFlowcontrolApiserverV1beta3FlowSchemaList$Status$200 | Response$watchFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList$Status$200 | Response$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$getInternalApiserverAPIGroup$Status$200 | Response$getInternalApiserverV1alpha1APIResources$Status$200 | Response$listInternalApiserverV1alpha1StorageVersion$Status$200 | Response$createInternalApiserverV1alpha1StorageVersion$Status$200 | Response$createInternalApiserverV1alpha1StorageVersion$Status$201 | Response$createInternalApiserverV1alpha1StorageVersion$Status$202 | Response$deleteInternalApiserverV1alpha1CollectionStorageVersion$Status$200 | Response$readInternalApiserverV1alpha1StorageVersion$Status$200 | Response$replaceInternalApiserverV1alpha1StorageVersion$Status$200 | Response$replaceInternalApiserverV1alpha1StorageVersion$Status$201 | Response$deleteInternalApiserverV1alpha1StorageVersion$Status$200 | Response$deleteInternalApiserverV1alpha1StorageVersion$Status$202 | Response$patchInternalApiserverV1alpha1StorageVersion$Status$200 | Response$patchInternalApiserverV1alpha1StorageVersion$Status$201 | Response$readInternalApiserverV1alpha1StorageVersionStatus$Status$200 | Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$200 | Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$201 | Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$200 | Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$201 | Response$watchInternalApiserverV1alpha1StorageVersionList$Status$200 | Response$watchInternalApiserverV1alpha1StorageVersion$Status$200 | Response$getNetworkingAPIGroup$Status$200 | Response$getNetworkingV1APIResources$Status$200 | Response$listNetworkingV1IngressClass$Status$200 | Response$createNetworkingV1IngressClass$Status$200 | Response$createNetworkingV1IngressClass$Status$201 | Response$createNetworkingV1IngressClass$Status$202 | Response$deleteNetworkingV1CollectionIngressClass$Status$200 | Response$readNetworkingV1IngressClass$Status$200 | Response$replaceNetworkingV1IngressClass$Status$200 | Response$replaceNetworkingV1IngressClass$Status$201 | Response$deleteNetworkingV1IngressClass$Status$200 | Response$deleteNetworkingV1IngressClass$Status$202 | Response$patchNetworkingV1IngressClass$Status$200 | Response$patchNetworkingV1IngressClass$Status$201 | Response$listNetworkingV1IngressForAllNamespaces$Status$200 | Response$listNetworkingV1NamespacedIngress$Status$200 | Response$createNetworkingV1NamespacedIngress$Status$200 | Response$createNetworkingV1NamespacedIngress$Status$201 | Response$createNetworkingV1NamespacedIngress$Status$202 | Response$deleteNetworkingV1CollectionNamespacedIngress$Status$200 | Response$readNetworkingV1NamespacedIngress$Status$200 | Response$replaceNetworkingV1NamespacedIngress$Status$200 | Response$replaceNetworkingV1NamespacedIngress$Status$201 | Response$deleteNetworkingV1NamespacedIngress$Status$200 | Response$deleteNetworkingV1NamespacedIngress$Status$202 | Response$patchNetworkingV1NamespacedIngress$Status$200 | Response$patchNetworkingV1NamespacedIngress$Status$201 | Response$readNetworkingV1NamespacedIngressStatus$Status$200 | Response$replaceNetworkingV1NamespacedIngressStatus$Status$200 | Response$replaceNetworkingV1NamespacedIngressStatus$Status$201 | Response$patchNetworkingV1NamespacedIngressStatus$Status$200 | Response$patchNetworkingV1NamespacedIngressStatus$Status$201 | Response$listNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$201 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$202 | Response$deleteNetworkingV1CollectionNamespacedNetworkPolicy$Status$200 | Response$readNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201 | Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202 | Response$patchNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$patchNetworkingV1NamespacedNetworkPolicy$Status$201 | Response$listNetworkingV1NetworkPolicyForAllNamespaces$Status$200 | Response$watchNetworkingV1IngressClassList$Status$200 | Response$watchNetworkingV1IngressClass$Status$200 | Response$watchNetworkingV1IngressListForAllNamespaces$Status$200 | Response$watchNetworkingV1NamespacedIngressList$Status$200 | Response$watchNetworkingV1NamespacedIngress$Status$200 | Response$watchNetworkingV1NamespacedNetworkPolicyList$Status$200 | Response$watchNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$watchNetworkingV1NetworkPolicyListForAllNamespaces$Status$200 | Response$getNetworkingV1alpha1APIResources$Status$200 | Response$listNetworkingV1alpha1ClusterCIDR$Status$200 | Response$createNetworkingV1alpha1ClusterCIDR$Status$200 | Response$createNetworkingV1alpha1ClusterCIDR$Status$201 | Response$createNetworkingV1alpha1ClusterCIDR$Status$202 | Response$deleteNetworkingV1alpha1CollectionClusterCIDR$Status$200 | Response$readNetworkingV1alpha1ClusterCIDR$Status$200 | Response$replaceNetworkingV1alpha1ClusterCIDR$Status$200 | Response$replaceNetworkingV1alpha1ClusterCIDR$Status$201 | Response$deleteNetworkingV1alpha1ClusterCIDR$Status$200 | Response$deleteNetworkingV1alpha1ClusterCIDR$Status$202 | Response$patchNetworkingV1alpha1ClusterCIDR$Status$200 | Response$patchNetworkingV1alpha1ClusterCIDR$Status$201 | Response$listNetworkingV1alpha1IPAddress$Status$200 | Response$createNetworkingV1alpha1IPAddress$Status$200 | Response$createNetworkingV1alpha1IPAddress$Status$201 | Response$createNetworkingV1alpha1IPAddress$Status$202 | Response$deleteNetworkingV1alpha1CollectionIPAddress$Status$200 | Response$readNetworkingV1alpha1IPAddress$Status$200 | Response$replaceNetworkingV1alpha1IPAddress$Status$200 | Response$replaceNetworkingV1alpha1IPAddress$Status$201 | Response$deleteNetworkingV1alpha1IPAddress$Status$200 | Response$deleteNetworkingV1alpha1IPAddress$Status$202 | Response$patchNetworkingV1alpha1IPAddress$Status$200 | Response$patchNetworkingV1alpha1IPAddress$Status$201 | Response$watchNetworkingV1alpha1ClusterCIDRList$Status$200 | Response$watchNetworkingV1alpha1ClusterCIDR$Status$200 | Response$watchNetworkingV1alpha1IPAddressList$Status$200 | Response$watchNetworkingV1alpha1IPAddress$Status$200 | Response$getNodeAPIGroup$Status$200 | Response$getNodeV1APIResources$Status$200 | Response$listNodeV1RuntimeClass$Status$200 | Response$createNodeV1RuntimeClass$Status$200 | Response$createNodeV1RuntimeClass$Status$201 | Response$createNodeV1RuntimeClass$Status$202 | Response$deleteNodeV1CollectionRuntimeClass$Status$200 | Response$readNodeV1RuntimeClass$Status$200 | Response$replaceNodeV1RuntimeClass$Status$200 | Response$replaceNodeV1RuntimeClass$Status$201 | Response$deleteNodeV1RuntimeClass$Status$200 | Response$deleteNodeV1RuntimeClass$Status$202 | Response$patchNodeV1RuntimeClass$Status$200 | Response$patchNodeV1RuntimeClass$Status$201 | Response$watchNodeV1RuntimeClassList$Status$200 | Response$watchNodeV1RuntimeClass$Status$200 | Response$getPolicyAPIGroup$Status$200 | Response$getPolicyV1APIResources$Status$200 | Response$listPolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$createPolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$createPolicyV1NamespacedPodDisruptionBudget$Status$201 | Response$createPolicyV1NamespacedPodDisruptionBudget$Status$202 | Response$deletePolicyV1CollectionNamespacedPodDisruptionBudget$Status$200 | Response$readPolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$201 | Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$202 | Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$201 | Response$readPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 | Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 | Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$201 | Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 | Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$201 | Response$listPolicyV1PodDisruptionBudgetForAllNamespaces$Status$200 | Response$watchPolicyV1NamespacedPodDisruptionBudgetList$Status$200 | Response$watchPolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$watchPolicyV1PodDisruptionBudgetListForAllNamespaces$Status$200 | Response$getRbacAuthorizationAPIGroup$Status$200 | Response$getRbacAuthorizationV1APIResources$Status$200 | Response$listRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$202 | Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$Status$200 | Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$201 | Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202 | Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$201 | Response$listRbacAuthorizationV1ClusterRole$Status$200 | Response$createRbacAuthorizationV1ClusterRole$Status$200 | Response$createRbacAuthorizationV1ClusterRole$Status$201 | Response$createRbacAuthorizationV1ClusterRole$Status$202 | Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$200 | Response$readRbacAuthorizationV1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1ClusterRole$Status$201 | Response$deleteRbacAuthorizationV1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1ClusterRole$Status$202 | Response$patchRbacAuthorizationV1ClusterRole$Status$200 | Response$patchRbacAuthorizationV1ClusterRole$Status$201 | Response$listRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$202 | Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding$Status$200 | Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$201 | Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$202 | Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$201 | Response$listRbacAuthorizationV1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1NamespacedRole$Status$202 | Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Status$200 | Response$readRbacAuthorizationV1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRole$Status$201 | Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRole$Status$202 | Response$patchRbacAuthorizationV1NamespacedRole$Status$200 | Response$patchRbacAuthorizationV1NamespacedRole$Status$201 | Response$listRbacAuthorizationV1RoleBindingForAllNamespaces$Status$200 | Response$listRbacAuthorizationV1RoleForAllNamespaces$Status$200 | Response$watchRbacAuthorizationV1ClusterRoleBindingList$Status$200 | Response$watchRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$watchRbacAuthorizationV1ClusterRoleList$Status$200 | Response$watchRbacAuthorizationV1ClusterRole$Status$200 | Response$watchRbacAuthorizationV1NamespacedRoleBindingList$Status$200 | Response$watchRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$watchRbacAuthorizationV1NamespacedRoleList$Status$200 | Response$watchRbacAuthorizationV1NamespacedRole$Status$200 | Response$watchRbacAuthorizationV1RoleBindingListForAllNamespaces$Status$200 | Response$watchRbacAuthorizationV1RoleListForAllNamespaces$Status$200 | Response$getResourceAPIGroup$Status$200 | Response$getResourceV1alpha2APIResources$Status$200 | Response$listResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$201 | Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$202 | Response$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext$Status$200 | Response$readResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$201 | Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$202 | Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$201 | Response$readResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 | Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 | Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201 | Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 | Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201 | Response$listResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$createResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$createResourceV1alpha2NamespacedResourceClaim$Status$201 | Response$createResourceV1alpha2NamespacedResourceClaim$Status$202 | Response$deleteResourceV1alpha2CollectionNamespacedResourceClaim$Status$200 | Response$readResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$201 | Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$202 | Response$patchResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$patchResourceV1alpha2NamespacedResourceClaim$Status$201 | Response$readResourceV1alpha2NamespacedResourceClaimStatus$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$201 | Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$200 | Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$201 | Response$listResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 | Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$202 | Response$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate$Status$200 | Response$readResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 | Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$202 | Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 | Response$listResourceV1alpha2PodSchedulingContextForAllNamespaces$Status$200 | Response$listResourceV1alpha2ResourceClaimForAllNamespaces$Status$200 | Response$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces$Status$200 | Response$listResourceV1alpha2ResourceClass$Status$200 | Response$createResourceV1alpha2ResourceClass$Status$200 | Response$createResourceV1alpha2ResourceClass$Status$201 | Response$createResourceV1alpha2ResourceClass$Status$202 | Response$deleteResourceV1alpha2CollectionResourceClass$Status$200 | Response$readResourceV1alpha2ResourceClass$Status$200 | Response$replaceResourceV1alpha2ResourceClass$Status$200 | Response$replaceResourceV1alpha2ResourceClass$Status$201 | Response$deleteResourceV1alpha2ResourceClass$Status$200 | Response$deleteResourceV1alpha2ResourceClass$Status$202 | Response$patchResourceV1alpha2ResourceClass$Status$200 | Response$patchResourceV1alpha2ResourceClass$Status$201 | Response$watchResourceV1alpha2NamespacedPodSchedulingContextList$Status$200 | Response$watchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$watchResourceV1alpha2NamespacedResourceClaimList$Status$200 | Response$watchResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$watchResourceV1alpha2NamespacedResourceClaimTemplateList$Status$200 | Response$watchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces$Status$200 | Response$watchResourceV1alpha2ResourceClaimListForAllNamespaces$Status$200 | Response$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces$Status$200 | Response$watchResourceV1alpha2ResourceClassList$Status$200 | Response$watchResourceV1alpha2ResourceClass$Status$200 | Response$getSchedulingAPIGroup$Status$200 | Response$getSchedulingV1APIResources$Status$200 | Response$listSchedulingV1PriorityClass$Status$200 | Response$createSchedulingV1PriorityClass$Status$200 | Response$createSchedulingV1PriorityClass$Status$201 | Response$createSchedulingV1PriorityClass$Status$202 | Response$deleteSchedulingV1CollectionPriorityClass$Status$200 | Response$readSchedulingV1PriorityClass$Status$200 | Response$replaceSchedulingV1PriorityClass$Status$200 | Response$replaceSchedulingV1PriorityClass$Status$201 | Response$deleteSchedulingV1PriorityClass$Status$200 | Response$deleteSchedulingV1PriorityClass$Status$202 | Response$patchSchedulingV1PriorityClass$Status$200 | Response$patchSchedulingV1PriorityClass$Status$201 | Response$watchSchedulingV1PriorityClassList$Status$200 | Response$watchSchedulingV1PriorityClass$Status$200 | Response$getStorageAPIGroup$Status$200 | Response$getStorageV1APIResources$Status$200 | Response$listStorageV1CSIDriver$Status$200 | Response$createStorageV1CSIDriver$Status$200 | Response$createStorageV1CSIDriver$Status$201 | Response$createStorageV1CSIDriver$Status$202 | Response$deleteStorageV1CollectionCSIDriver$Status$200 | Response$readStorageV1CSIDriver$Status$200 | Response$replaceStorageV1CSIDriver$Status$200 | Response$replaceStorageV1CSIDriver$Status$201 | Response$deleteStorageV1CSIDriver$Status$200 | Response$deleteStorageV1CSIDriver$Status$202 | Response$patchStorageV1CSIDriver$Status$200 | Response$patchStorageV1CSIDriver$Status$201 | Response$listStorageV1CSINode$Status$200 | Response$createStorageV1CSINode$Status$200 | Response$createStorageV1CSINode$Status$201 | Response$createStorageV1CSINode$Status$202 | Response$deleteStorageV1CollectionCSINode$Status$200 | Response$readStorageV1CSINode$Status$200 | Response$replaceStorageV1CSINode$Status$200 | Response$replaceStorageV1CSINode$Status$201 | Response$deleteStorageV1CSINode$Status$200 | Response$deleteStorageV1CSINode$Status$202 | Response$patchStorageV1CSINode$Status$200 | Response$patchStorageV1CSINode$Status$201 | Response$listStorageV1CSIStorageCapacityForAllNamespaces$Status$200 | Response$listStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$createStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$createStorageV1NamespacedCSIStorageCapacity$Status$201 | Response$createStorageV1NamespacedCSIStorageCapacity$Status$202 | Response$deleteStorageV1CollectionNamespacedCSIStorageCapacity$Status$200 | Response$readStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$201 | Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$202 | Response$patchStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$patchStorageV1NamespacedCSIStorageCapacity$Status$201 | Response$listStorageV1StorageClass$Status$200 | Response$createStorageV1StorageClass$Status$200 | Response$createStorageV1StorageClass$Status$201 | Response$createStorageV1StorageClass$Status$202 | Response$deleteStorageV1CollectionStorageClass$Status$200 | Response$readStorageV1StorageClass$Status$200 | Response$replaceStorageV1StorageClass$Status$200 | Response$replaceStorageV1StorageClass$Status$201 | Response$deleteStorageV1StorageClass$Status$200 | Response$deleteStorageV1StorageClass$Status$202 | Response$patchStorageV1StorageClass$Status$200 | Response$patchStorageV1StorageClass$Status$201 | Response$listStorageV1VolumeAttachment$Status$200 | Response$createStorageV1VolumeAttachment$Status$200 | Response$createStorageV1VolumeAttachment$Status$201 | Response$createStorageV1VolumeAttachment$Status$202 | Response$deleteStorageV1CollectionVolumeAttachment$Status$200 | Response$readStorageV1VolumeAttachment$Status$200 | Response$replaceStorageV1VolumeAttachment$Status$200 | Response$replaceStorageV1VolumeAttachment$Status$201 | Response$deleteStorageV1VolumeAttachment$Status$200 | Response$deleteStorageV1VolumeAttachment$Status$202 | Response$patchStorageV1VolumeAttachment$Status$200 | Response$patchStorageV1VolumeAttachment$Status$201 | Response$readStorageV1VolumeAttachmentStatus$Status$200 | Response$replaceStorageV1VolumeAttachmentStatus$Status$200 | Response$replaceStorageV1VolumeAttachmentStatus$Status$201 | Response$patchStorageV1VolumeAttachmentStatus$Status$200 | Response$patchStorageV1VolumeAttachmentStatus$Status$201 | Response$watchStorageV1CSIDriverList$Status$200 | Response$watchStorageV1CSIDriver$Status$200 | Response$watchStorageV1CSINodeList$Status$200 | Response$watchStorageV1CSINode$Status$200 | Response$watchStorageV1CSIStorageCapacityListForAllNamespaces$Status$200 | Response$watchStorageV1NamespacedCSIStorageCapacityList$Status$200 | Response$watchStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$watchStorageV1StorageClassList$Status$200 | Response$watchStorageV1StorageClass$Status$200 | Response$watchStorageV1VolumeAttachmentList$Status$200 | Response$watchStorageV1VolumeAttachment$Status$200 | Response$getServiceAccountIssuerOpenIDKeyset$Status$200 | Response$getCodeVersion$Status$200; +export namespace ErrorResponse { + export type getServiceAccountIssuerOpenIDConfiguration = void; + export type getCoreAPIVersions = void; + export type getCoreV1APIResources = void; + export type listCoreV1ComponentStatus = void; + export type readCoreV1ComponentStatus = void; + export type listCoreV1ConfigMapForAllNamespaces = void; + export type listCoreV1EndpointsForAllNamespaces = void; + export type listCoreV1EventForAllNamespaces = void; + export type listCoreV1LimitRangeForAllNamespaces = void; + export type listCoreV1Namespace = void; + export type createCoreV1Namespace = void; + export type createCoreV1NamespacedBinding = void; + export type listCoreV1NamespacedConfigMap = void; + export type createCoreV1NamespacedConfigMap = void; + export type deleteCoreV1CollectionNamespacedConfigMap = void; + export type readCoreV1NamespacedConfigMap = void; + export type replaceCoreV1NamespacedConfigMap = void; + export type deleteCoreV1NamespacedConfigMap = void; + export type patchCoreV1NamespacedConfigMap = void; + export type listCoreV1NamespacedEndpoints = void; + export type createCoreV1NamespacedEndpoints = void; + export type deleteCoreV1CollectionNamespacedEndpoints = void; + export type readCoreV1NamespacedEndpoints = void; + export type replaceCoreV1NamespacedEndpoints = void; + export type deleteCoreV1NamespacedEndpoints = void; + export type patchCoreV1NamespacedEndpoints = void; + export type listCoreV1NamespacedEvent = void; + export type createCoreV1NamespacedEvent = void; + export type deleteCoreV1CollectionNamespacedEvent = void; + export type readCoreV1NamespacedEvent = void; + export type replaceCoreV1NamespacedEvent = void; + export type deleteCoreV1NamespacedEvent = void; + export type patchCoreV1NamespacedEvent = void; + export type listCoreV1NamespacedLimitRange = void; + export type createCoreV1NamespacedLimitRange = void; + export type deleteCoreV1CollectionNamespacedLimitRange = void; + export type readCoreV1NamespacedLimitRange = void; + export type replaceCoreV1NamespacedLimitRange = void; + export type deleteCoreV1NamespacedLimitRange = void; + export type patchCoreV1NamespacedLimitRange = void; + export type listCoreV1NamespacedPersistentVolumeClaim = void; + export type createCoreV1NamespacedPersistentVolumeClaim = void; + export type deleteCoreV1CollectionNamespacedPersistentVolumeClaim = void; + export type readCoreV1NamespacedPersistentVolumeClaim = void; + export type replaceCoreV1NamespacedPersistentVolumeClaim = void; + export type deleteCoreV1NamespacedPersistentVolumeClaim = void; + export type patchCoreV1NamespacedPersistentVolumeClaim = void; + export type readCoreV1NamespacedPersistentVolumeClaimStatus = void; + export type replaceCoreV1NamespacedPersistentVolumeClaimStatus = void; + export type patchCoreV1NamespacedPersistentVolumeClaimStatus = void; + export type listCoreV1NamespacedPod = void; + export type createCoreV1NamespacedPod = void; + export type deleteCoreV1CollectionNamespacedPod = void; + export type readCoreV1NamespacedPod = void; + export type replaceCoreV1NamespacedPod = void; + export type deleteCoreV1NamespacedPod = void; + export type patchCoreV1NamespacedPod = void; + export type connectCoreV1GetNamespacedPodAttach = void; + export type connectCoreV1PostNamespacedPodAttach = void; + export type createCoreV1NamespacedPodBinding = void; + export type readCoreV1NamespacedPodEphemeralcontainers = void; + export type replaceCoreV1NamespacedPodEphemeralcontainers = void; + export type patchCoreV1NamespacedPodEphemeralcontainers = void; + export type createCoreV1NamespacedPodEviction = void; + export type connectCoreV1GetNamespacedPodExec = void; + export type connectCoreV1PostNamespacedPodExec = void; + export type readCoreV1NamespacedPodLog = void; + export type connectCoreV1GetNamespacedPodPortforward = void; + export type connectCoreV1PostNamespacedPodPortforward = void; + export type connectCoreV1GetNamespacedPodProxy = void; + export type connectCoreV1PutNamespacedPodProxy = void; + export type connectCoreV1PostNamespacedPodProxy = void; + export type connectCoreV1DeleteNamespacedPodProxy = void; + export type connectCoreV1OptionsNamespacedPodProxy = void; + export type connectCoreV1HeadNamespacedPodProxy = void; + export type connectCoreV1PatchNamespacedPodProxy = void; + export type connectCoreV1GetNamespacedPodProxyWithPath = void; + export type connectCoreV1PutNamespacedPodProxyWithPath = void; + export type connectCoreV1PostNamespacedPodProxyWithPath = void; + export type connectCoreV1DeleteNamespacedPodProxyWithPath = void; + export type connectCoreV1OptionsNamespacedPodProxyWithPath = void; + export type connectCoreV1HeadNamespacedPodProxyWithPath = void; + export type connectCoreV1PatchNamespacedPodProxyWithPath = void; + export type readCoreV1NamespacedPodStatus = void; + export type replaceCoreV1NamespacedPodStatus = void; + export type patchCoreV1NamespacedPodStatus = void; + export type listCoreV1NamespacedPodTemplate = void; + export type createCoreV1NamespacedPodTemplate = void; + export type deleteCoreV1CollectionNamespacedPodTemplate = void; + export type readCoreV1NamespacedPodTemplate = void; + export type replaceCoreV1NamespacedPodTemplate = void; + export type deleteCoreV1NamespacedPodTemplate = void; + export type patchCoreV1NamespacedPodTemplate = void; + export type listCoreV1NamespacedReplicationController = void; + export type createCoreV1NamespacedReplicationController = void; + export type deleteCoreV1CollectionNamespacedReplicationController = void; + export type readCoreV1NamespacedReplicationController = void; + export type replaceCoreV1NamespacedReplicationController = void; + export type deleteCoreV1NamespacedReplicationController = void; + export type patchCoreV1NamespacedReplicationController = void; + export type readCoreV1NamespacedReplicationControllerScale = void; + export type replaceCoreV1NamespacedReplicationControllerScale = void; + export type patchCoreV1NamespacedReplicationControllerScale = void; + export type readCoreV1NamespacedReplicationControllerStatus = void; + export type replaceCoreV1NamespacedReplicationControllerStatus = void; + export type patchCoreV1NamespacedReplicationControllerStatus = void; + export type listCoreV1NamespacedResourceQuota = void; + export type createCoreV1NamespacedResourceQuota = void; + export type deleteCoreV1CollectionNamespacedResourceQuota = void; + export type readCoreV1NamespacedResourceQuota = void; + export type replaceCoreV1NamespacedResourceQuota = void; + export type deleteCoreV1NamespacedResourceQuota = void; + export type patchCoreV1NamespacedResourceQuota = void; + export type readCoreV1NamespacedResourceQuotaStatus = void; + export type replaceCoreV1NamespacedResourceQuotaStatus = void; + export type patchCoreV1NamespacedResourceQuotaStatus = void; + export type listCoreV1NamespacedSecret = void; + export type createCoreV1NamespacedSecret = void; + export type deleteCoreV1CollectionNamespacedSecret = void; + export type readCoreV1NamespacedSecret = void; + export type replaceCoreV1NamespacedSecret = void; + export type deleteCoreV1NamespacedSecret = void; + export type patchCoreV1NamespacedSecret = void; + export type listCoreV1NamespacedServiceAccount = void; + export type createCoreV1NamespacedServiceAccount = void; + export type deleteCoreV1CollectionNamespacedServiceAccount = void; + export type readCoreV1NamespacedServiceAccount = void; + export type replaceCoreV1NamespacedServiceAccount = void; + export type deleteCoreV1NamespacedServiceAccount = void; + export type patchCoreV1NamespacedServiceAccount = void; + export type createCoreV1NamespacedServiceAccountToken = void; + export type listCoreV1NamespacedService = void; + export type createCoreV1NamespacedService = void; + export type deleteCoreV1CollectionNamespacedService = void; + export type readCoreV1NamespacedService = void; + export type replaceCoreV1NamespacedService = void; + export type deleteCoreV1NamespacedService = void; + export type patchCoreV1NamespacedService = void; + export type connectCoreV1GetNamespacedServiceProxy = void; + export type connectCoreV1PutNamespacedServiceProxy = void; + export type connectCoreV1PostNamespacedServiceProxy = void; + export type connectCoreV1DeleteNamespacedServiceProxy = void; + export type connectCoreV1OptionsNamespacedServiceProxy = void; + export type connectCoreV1HeadNamespacedServiceProxy = void; + export type connectCoreV1PatchNamespacedServiceProxy = void; + export type connectCoreV1GetNamespacedServiceProxyWithPath = void; + export type connectCoreV1PutNamespacedServiceProxyWithPath = void; + export type connectCoreV1PostNamespacedServiceProxyWithPath = void; + export type connectCoreV1DeleteNamespacedServiceProxyWithPath = void; + export type connectCoreV1OptionsNamespacedServiceProxyWithPath = void; + export type connectCoreV1HeadNamespacedServiceProxyWithPath = void; + export type connectCoreV1PatchNamespacedServiceProxyWithPath = void; + export type readCoreV1NamespacedServiceStatus = void; + export type replaceCoreV1NamespacedServiceStatus = void; + export type patchCoreV1NamespacedServiceStatus = void; + export type readCoreV1Namespace = void; + export type replaceCoreV1Namespace = void; + export type deleteCoreV1Namespace = void; + export type patchCoreV1Namespace = void; + export type replaceCoreV1NamespaceFinalize = void; + export type readCoreV1NamespaceStatus = void; + export type replaceCoreV1NamespaceStatus = void; + export type patchCoreV1NamespaceStatus = void; + export type listCoreV1Node = void; + export type createCoreV1Node = void; + export type deleteCoreV1CollectionNode = void; + export type readCoreV1Node = void; + export type replaceCoreV1Node = void; + export type deleteCoreV1Node = void; + export type patchCoreV1Node = void; + export type connectCoreV1GetNodeProxy = void; + export type connectCoreV1PutNodeProxy = void; + export type connectCoreV1PostNodeProxy = void; + export type connectCoreV1DeleteNodeProxy = void; + export type connectCoreV1OptionsNodeProxy = void; + export type connectCoreV1HeadNodeProxy = void; + export type connectCoreV1PatchNodeProxy = void; + export type connectCoreV1GetNodeProxyWithPath = void; + export type connectCoreV1PutNodeProxyWithPath = void; + export type connectCoreV1PostNodeProxyWithPath = void; + export type connectCoreV1DeleteNodeProxyWithPath = void; + export type connectCoreV1OptionsNodeProxyWithPath = void; + export type connectCoreV1HeadNodeProxyWithPath = void; + export type connectCoreV1PatchNodeProxyWithPath = void; + export type readCoreV1NodeStatus = void; + export type replaceCoreV1NodeStatus = void; + export type patchCoreV1NodeStatus = void; + export type listCoreV1PersistentVolumeClaimForAllNamespaces = void; + export type listCoreV1PersistentVolume = void; + export type createCoreV1PersistentVolume = void; + export type deleteCoreV1CollectionPersistentVolume = void; + export type readCoreV1PersistentVolume = void; + export type replaceCoreV1PersistentVolume = void; + export type deleteCoreV1PersistentVolume = void; + export type patchCoreV1PersistentVolume = void; + export type readCoreV1PersistentVolumeStatus = void; + export type replaceCoreV1PersistentVolumeStatus = void; + export type patchCoreV1PersistentVolumeStatus = void; + export type listCoreV1PodForAllNamespaces = void; + export type listCoreV1PodTemplateForAllNamespaces = void; + export type listCoreV1ReplicationControllerForAllNamespaces = void; + export type listCoreV1ResourceQuotaForAllNamespaces = void; + export type listCoreV1SecretForAllNamespaces = void; + export type listCoreV1ServiceAccountForAllNamespaces = void; + export type listCoreV1ServiceForAllNamespaces = void; + export type watchCoreV1ConfigMapListForAllNamespaces = void; + export type watchCoreV1EndpointsListForAllNamespaces = void; + export type watchCoreV1EventListForAllNamespaces = void; + export type watchCoreV1LimitRangeListForAllNamespaces = void; + export type watchCoreV1NamespaceList = void; + export type watchCoreV1NamespacedConfigMapList = void; + export type watchCoreV1NamespacedConfigMap = void; + export type watchCoreV1NamespacedEndpointsList = void; + export type watchCoreV1NamespacedEndpoints = void; + export type watchCoreV1NamespacedEventList = void; + export type watchCoreV1NamespacedEvent = void; + export type watchCoreV1NamespacedLimitRangeList = void; + export type watchCoreV1NamespacedLimitRange = void; + export type watchCoreV1NamespacedPersistentVolumeClaimList = void; + export type watchCoreV1NamespacedPersistentVolumeClaim = void; + export type watchCoreV1NamespacedPodList = void; + export type watchCoreV1NamespacedPod = void; + export type watchCoreV1NamespacedPodTemplateList = void; + export type watchCoreV1NamespacedPodTemplate = void; + export type watchCoreV1NamespacedReplicationControllerList = void; + export type watchCoreV1NamespacedReplicationController = void; + export type watchCoreV1NamespacedResourceQuotaList = void; + export type watchCoreV1NamespacedResourceQuota = void; + export type watchCoreV1NamespacedSecretList = void; + export type watchCoreV1NamespacedSecret = void; + export type watchCoreV1NamespacedServiceAccountList = void; + export type watchCoreV1NamespacedServiceAccount = void; + export type watchCoreV1NamespacedServiceList = void; + export type watchCoreV1NamespacedService = void; + export type watchCoreV1Namespace = void; + export type watchCoreV1NodeList = void; + export type watchCoreV1Node = void; + export type watchCoreV1PersistentVolumeClaimListForAllNamespaces = void; + export type watchCoreV1PersistentVolumeList = void; + export type watchCoreV1PersistentVolume = void; + export type watchCoreV1PodListForAllNamespaces = void; + export type watchCoreV1PodTemplateListForAllNamespaces = void; + export type watchCoreV1ReplicationControllerListForAllNamespaces = void; + export type watchCoreV1ResourceQuotaListForAllNamespaces = void; + export type watchCoreV1SecretListForAllNamespaces = void; + export type watchCoreV1ServiceAccountListForAllNamespaces = void; + export type watchCoreV1ServiceListForAllNamespaces = void; + export type getAPIVersions = void; + export type getAdmissionregistrationAPIGroup = void; + export type getAdmissionregistrationV1APIResources = void; + export type listAdmissionregistrationV1MutatingWebhookConfiguration = void; + export type createAdmissionregistrationV1MutatingWebhookConfiguration = void; + export type deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration = void; + export type readAdmissionregistrationV1MutatingWebhookConfiguration = void; + export type replaceAdmissionregistrationV1MutatingWebhookConfiguration = void; + export type deleteAdmissionregistrationV1MutatingWebhookConfiguration = void; + export type patchAdmissionregistrationV1MutatingWebhookConfiguration = void; + export type listAdmissionregistrationV1ValidatingWebhookConfiguration = void; + export type createAdmissionregistrationV1ValidatingWebhookConfiguration = void; + export type deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration = void; + export type readAdmissionregistrationV1ValidatingWebhookConfiguration = void; + export type replaceAdmissionregistrationV1ValidatingWebhookConfiguration = void; + export type deleteAdmissionregistrationV1ValidatingWebhookConfiguration = void; + export type patchAdmissionregistrationV1ValidatingWebhookConfiguration = void; + export type watchAdmissionregistrationV1MutatingWebhookConfigurationList = void; + export type watchAdmissionregistrationV1MutatingWebhookConfiguration = void; + export type watchAdmissionregistrationV1ValidatingWebhookConfigurationList = void; + export type watchAdmissionregistrationV1ValidatingWebhookConfiguration = void; + export type getAdmissionregistrationV1alpha1APIResources = void; + export type listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = void; + export type createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = void; + export type deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy = void; + export type readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = void; + export type replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = void; + export type deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = void; + export type patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = void; + export type readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = void; + export type replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = void; + export type patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = void; + export type listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = void; + export type createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = void; + export type deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding = void; + export type readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = void; + export type replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = void; + export type deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = void; + export type patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = void; + export type watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList = void; + export type watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = void; + export type watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList = void; + export type watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = void; + export type getAdmissionregistrationV1beta1APIResources = void; + export type listAdmissionregistrationV1beta1ValidatingAdmissionPolicy = void; + export type createAdmissionregistrationV1beta1ValidatingAdmissionPolicy = void; + export type deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy = void; + export type readAdmissionregistrationV1beta1ValidatingAdmissionPolicy = void; + export type replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy = void; + export type deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy = void; + export type patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy = void; + export type readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = void; + export type replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = void; + export type patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = void; + export type listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = void; + export type createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = void; + export type deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding = void; + export type readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = void; + export type replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = void; + export type deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = void; + export type patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = void; + export type watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList = void; + export type watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy = void; + export type watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList = void; + export type watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = void; + export type getApiextensionsAPIGroup = void; + export type getApiextensionsV1APIResources = void; + export type listApiextensionsV1CustomResourceDefinition = void; + export type createApiextensionsV1CustomResourceDefinition = void; + export type deleteApiextensionsV1CollectionCustomResourceDefinition = void; + export type readApiextensionsV1CustomResourceDefinition = void; + export type replaceApiextensionsV1CustomResourceDefinition = void; + export type deleteApiextensionsV1CustomResourceDefinition = void; + export type patchApiextensionsV1CustomResourceDefinition = void; + export type readApiextensionsV1CustomResourceDefinitionStatus = void; + export type replaceApiextensionsV1CustomResourceDefinitionStatus = void; + export type patchApiextensionsV1CustomResourceDefinitionStatus = void; + export type watchApiextensionsV1CustomResourceDefinitionList = void; + export type watchApiextensionsV1CustomResourceDefinition = void; + export type getApiregistrationAPIGroup = void; + export type getApiregistrationV1APIResources = void; + export type listApiregistrationV1APIService = void; + export type createApiregistrationV1APIService = void; + export type deleteApiregistrationV1CollectionAPIService = void; + export type readApiregistrationV1APIService = void; + export type replaceApiregistrationV1APIService = void; + export type deleteApiregistrationV1APIService = void; + export type patchApiregistrationV1APIService = void; + export type readApiregistrationV1APIServiceStatus = void; + export type replaceApiregistrationV1APIServiceStatus = void; + export type patchApiregistrationV1APIServiceStatus = void; + export type watchApiregistrationV1APIServiceList = void; + export type watchApiregistrationV1APIService = void; + export type getAppsAPIGroup = void; + export type getAppsV1APIResources = void; + export type listAppsV1ControllerRevisionForAllNamespaces = void; + export type listAppsV1DaemonSetForAllNamespaces = void; + export type listAppsV1DeploymentForAllNamespaces = void; + export type listAppsV1NamespacedControllerRevision = void; + export type createAppsV1NamespacedControllerRevision = void; + export type deleteAppsV1CollectionNamespacedControllerRevision = void; + export type readAppsV1NamespacedControllerRevision = void; + export type replaceAppsV1NamespacedControllerRevision = void; + export type deleteAppsV1NamespacedControllerRevision = void; + export type patchAppsV1NamespacedControllerRevision = void; + export type listAppsV1NamespacedDaemonSet = void; + export type createAppsV1NamespacedDaemonSet = void; + export type deleteAppsV1CollectionNamespacedDaemonSet = void; + export type readAppsV1NamespacedDaemonSet = void; + export type replaceAppsV1NamespacedDaemonSet = void; + export type deleteAppsV1NamespacedDaemonSet = void; + export type patchAppsV1NamespacedDaemonSet = void; + export type readAppsV1NamespacedDaemonSetStatus = void; + export type replaceAppsV1NamespacedDaemonSetStatus = void; + export type patchAppsV1NamespacedDaemonSetStatus = void; + export type listAppsV1NamespacedDeployment = void; + export type createAppsV1NamespacedDeployment = void; + export type deleteAppsV1CollectionNamespacedDeployment = void; + export type readAppsV1NamespacedDeployment = void; + export type replaceAppsV1NamespacedDeployment = void; + export type deleteAppsV1NamespacedDeployment = void; + export type patchAppsV1NamespacedDeployment = void; + export type readAppsV1NamespacedDeploymentScale = void; + export type replaceAppsV1NamespacedDeploymentScale = void; + export type patchAppsV1NamespacedDeploymentScale = void; + export type readAppsV1NamespacedDeploymentStatus = void; + export type replaceAppsV1NamespacedDeploymentStatus = void; + export type patchAppsV1NamespacedDeploymentStatus = void; + export type listAppsV1NamespacedReplicaSet = void; + export type createAppsV1NamespacedReplicaSet = void; + export type deleteAppsV1CollectionNamespacedReplicaSet = void; + export type readAppsV1NamespacedReplicaSet = void; + export type replaceAppsV1NamespacedReplicaSet = void; + export type deleteAppsV1NamespacedReplicaSet = void; + export type patchAppsV1NamespacedReplicaSet = void; + export type readAppsV1NamespacedReplicaSetScale = void; + export type replaceAppsV1NamespacedReplicaSetScale = void; + export type patchAppsV1NamespacedReplicaSetScale = void; + export type readAppsV1NamespacedReplicaSetStatus = void; + export type replaceAppsV1NamespacedReplicaSetStatus = void; + export type patchAppsV1NamespacedReplicaSetStatus = void; + export type listAppsV1NamespacedStatefulSet = void; + export type createAppsV1NamespacedStatefulSet = void; + export type deleteAppsV1CollectionNamespacedStatefulSet = void; + export type readAppsV1NamespacedStatefulSet = void; + export type replaceAppsV1NamespacedStatefulSet = void; + export type deleteAppsV1NamespacedStatefulSet = void; + export type patchAppsV1NamespacedStatefulSet = void; + export type readAppsV1NamespacedStatefulSetScale = void; + export type replaceAppsV1NamespacedStatefulSetScale = void; + export type patchAppsV1NamespacedStatefulSetScale = void; + export type readAppsV1NamespacedStatefulSetStatus = void; + export type replaceAppsV1NamespacedStatefulSetStatus = void; + export type patchAppsV1NamespacedStatefulSetStatus = void; + export type listAppsV1ReplicaSetForAllNamespaces = void; + export type listAppsV1StatefulSetForAllNamespaces = void; + export type watchAppsV1ControllerRevisionListForAllNamespaces = void; + export type watchAppsV1DaemonSetListForAllNamespaces = void; + export type watchAppsV1DeploymentListForAllNamespaces = void; + export type watchAppsV1NamespacedControllerRevisionList = void; + export type watchAppsV1NamespacedControllerRevision = void; + export type watchAppsV1NamespacedDaemonSetList = void; + export type watchAppsV1NamespacedDaemonSet = void; + export type watchAppsV1NamespacedDeploymentList = void; + export type watchAppsV1NamespacedDeployment = void; + export type watchAppsV1NamespacedReplicaSetList = void; + export type watchAppsV1NamespacedReplicaSet = void; + export type watchAppsV1NamespacedStatefulSetList = void; + export type watchAppsV1NamespacedStatefulSet = void; + export type watchAppsV1ReplicaSetListForAllNamespaces = void; + export type watchAppsV1StatefulSetListForAllNamespaces = void; + export type getAuthenticationAPIGroup = void; + export type getAuthenticationV1APIResources = void; + export type createAuthenticationV1SelfSubjectReview = void; + export type createAuthenticationV1TokenReview = void; + export type getAuthenticationV1alpha1APIResources = void; + export type createAuthenticationV1alpha1SelfSubjectReview = void; + export type getAuthenticationV1beta1APIResources = void; + export type createAuthenticationV1beta1SelfSubjectReview = void; + export type getAuthorizationAPIGroup = void; + export type getAuthorizationV1APIResources = void; + export type createAuthorizationV1NamespacedLocalSubjectAccessReview = void; + export type createAuthorizationV1SelfSubjectAccessReview = void; + export type createAuthorizationV1SelfSubjectRulesReview = void; + export type createAuthorizationV1SubjectAccessReview = void; + export type getAutoscalingAPIGroup = void; + export type getAutoscalingV1APIResources = void; + export type listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces = void; + export type listAutoscalingV1NamespacedHorizontalPodAutoscaler = void; + export type createAutoscalingV1NamespacedHorizontalPodAutoscaler = void; + export type deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler = void; + export type readAutoscalingV1NamespacedHorizontalPodAutoscaler = void; + export type replaceAutoscalingV1NamespacedHorizontalPodAutoscaler = void; + export type deleteAutoscalingV1NamespacedHorizontalPodAutoscaler = void; + export type patchAutoscalingV1NamespacedHorizontalPodAutoscaler = void; + export type readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = void; + export type replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = void; + export type patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = void; + export type watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces = void; + export type watchAutoscalingV1NamespacedHorizontalPodAutoscalerList = void; + export type watchAutoscalingV1NamespacedHorizontalPodAutoscaler = void; + export type getAutoscalingV2APIResources = void; + export type listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces = void; + export type listAutoscalingV2NamespacedHorizontalPodAutoscaler = void; + export type createAutoscalingV2NamespacedHorizontalPodAutoscaler = void; + export type deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler = void; + export type readAutoscalingV2NamespacedHorizontalPodAutoscaler = void; + export type replaceAutoscalingV2NamespacedHorizontalPodAutoscaler = void; + export type deleteAutoscalingV2NamespacedHorizontalPodAutoscaler = void; + export type patchAutoscalingV2NamespacedHorizontalPodAutoscaler = void; + export type readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = void; + export type replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = void; + export type patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = void; + export type watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces = void; + export type watchAutoscalingV2NamespacedHorizontalPodAutoscalerList = void; + export type watchAutoscalingV2NamespacedHorizontalPodAutoscaler = void; + export type getBatchAPIGroup = void; + export type getBatchV1APIResources = void; + export type listBatchV1CronJobForAllNamespaces = void; + export type listBatchV1JobForAllNamespaces = void; + export type listBatchV1NamespacedCronJob = void; + export type createBatchV1NamespacedCronJob = void; + export type deleteBatchV1CollectionNamespacedCronJob = void; + export type readBatchV1NamespacedCronJob = void; + export type replaceBatchV1NamespacedCronJob = void; + export type deleteBatchV1NamespacedCronJob = void; + export type patchBatchV1NamespacedCronJob = void; + export type readBatchV1NamespacedCronJobStatus = void; + export type replaceBatchV1NamespacedCronJobStatus = void; + export type patchBatchV1NamespacedCronJobStatus = void; + export type listBatchV1NamespacedJob = void; + export type createBatchV1NamespacedJob = void; + export type deleteBatchV1CollectionNamespacedJob = void; + export type readBatchV1NamespacedJob = void; + export type replaceBatchV1NamespacedJob = void; + export type deleteBatchV1NamespacedJob = void; + export type patchBatchV1NamespacedJob = void; + export type readBatchV1NamespacedJobStatus = void; + export type replaceBatchV1NamespacedJobStatus = void; + export type patchBatchV1NamespacedJobStatus = void; + export type watchBatchV1CronJobListForAllNamespaces = void; + export type watchBatchV1JobListForAllNamespaces = void; + export type watchBatchV1NamespacedCronJobList = void; + export type watchBatchV1NamespacedCronJob = void; + export type watchBatchV1NamespacedJobList = void; + export type watchBatchV1NamespacedJob = void; + export type getCertificatesAPIGroup = void; + export type getCertificatesV1APIResources = void; + export type listCertificatesV1CertificateSigningRequest = void; + export type createCertificatesV1CertificateSigningRequest = void; + export type deleteCertificatesV1CollectionCertificateSigningRequest = void; + export type readCertificatesV1CertificateSigningRequest = void; + export type replaceCertificatesV1CertificateSigningRequest = void; + export type deleteCertificatesV1CertificateSigningRequest = void; + export type patchCertificatesV1CertificateSigningRequest = void; + export type readCertificatesV1CertificateSigningRequestApproval = void; + export type replaceCertificatesV1CertificateSigningRequestApproval = void; + export type patchCertificatesV1CertificateSigningRequestApproval = void; + export type readCertificatesV1CertificateSigningRequestStatus = void; + export type replaceCertificatesV1CertificateSigningRequestStatus = void; + export type patchCertificatesV1CertificateSigningRequestStatus = void; + export type watchCertificatesV1CertificateSigningRequestList = void; + export type watchCertificatesV1CertificateSigningRequest = void; + export type getCertificatesV1alpha1APIResources = void; + export type listCertificatesV1alpha1ClusterTrustBundle = void; + export type createCertificatesV1alpha1ClusterTrustBundle = void; + export type deleteCertificatesV1alpha1CollectionClusterTrustBundle = void; + export type readCertificatesV1alpha1ClusterTrustBundle = void; + export type replaceCertificatesV1alpha1ClusterTrustBundle = void; + export type deleteCertificatesV1alpha1ClusterTrustBundle = void; + export type patchCertificatesV1alpha1ClusterTrustBundle = void; + export type watchCertificatesV1alpha1ClusterTrustBundleList = void; + export type watchCertificatesV1alpha1ClusterTrustBundle = void; + export type getCoordinationAPIGroup = void; + export type getCoordinationV1APIResources = void; + export type listCoordinationV1LeaseForAllNamespaces = void; + export type listCoordinationV1NamespacedLease = void; + export type createCoordinationV1NamespacedLease = void; + export type deleteCoordinationV1CollectionNamespacedLease = void; + export type readCoordinationV1NamespacedLease = void; + export type replaceCoordinationV1NamespacedLease = void; + export type deleteCoordinationV1NamespacedLease = void; + export type patchCoordinationV1NamespacedLease = void; + export type watchCoordinationV1LeaseListForAllNamespaces = void; + export type watchCoordinationV1NamespacedLeaseList = void; + export type watchCoordinationV1NamespacedLease = void; + export type getDiscoveryAPIGroup = void; + export type getDiscoveryV1APIResources = void; + export type listDiscoveryV1EndpointSliceForAllNamespaces = void; + export type listDiscoveryV1NamespacedEndpointSlice = void; + export type createDiscoveryV1NamespacedEndpointSlice = void; + export type deleteDiscoveryV1CollectionNamespacedEndpointSlice = void; + export type readDiscoveryV1NamespacedEndpointSlice = void; + export type replaceDiscoveryV1NamespacedEndpointSlice = void; + export type deleteDiscoveryV1NamespacedEndpointSlice = void; + export type patchDiscoveryV1NamespacedEndpointSlice = void; + export type watchDiscoveryV1EndpointSliceListForAllNamespaces = void; + export type watchDiscoveryV1NamespacedEndpointSliceList = void; + export type watchDiscoveryV1NamespacedEndpointSlice = void; + export type getEventsAPIGroup = void; + export type getEventsV1APIResources = void; + export type listEventsV1EventForAllNamespaces = void; + export type listEventsV1NamespacedEvent = void; + export type createEventsV1NamespacedEvent = void; + export type deleteEventsV1CollectionNamespacedEvent = void; + export type readEventsV1NamespacedEvent = void; + export type replaceEventsV1NamespacedEvent = void; + export type deleteEventsV1NamespacedEvent = void; + export type patchEventsV1NamespacedEvent = void; + export type watchEventsV1EventListForAllNamespaces = void; + export type watchEventsV1NamespacedEventList = void; + export type watchEventsV1NamespacedEvent = void; + export type getFlowcontrolApiserverAPIGroup = void; + export type getFlowcontrolApiserverV1beta2APIResources = void; + export type listFlowcontrolApiserverV1beta2FlowSchema = void; + export type createFlowcontrolApiserverV1beta2FlowSchema = void; + export type deleteFlowcontrolApiserverV1beta2CollectionFlowSchema = void; + export type readFlowcontrolApiserverV1beta2FlowSchema = void; + export type replaceFlowcontrolApiserverV1beta2FlowSchema = void; + export type deleteFlowcontrolApiserverV1beta2FlowSchema = void; + export type patchFlowcontrolApiserverV1beta2FlowSchema = void; + export type readFlowcontrolApiserverV1beta2FlowSchemaStatus = void; + export type replaceFlowcontrolApiserverV1beta2FlowSchemaStatus = void; + export type patchFlowcontrolApiserverV1beta2FlowSchemaStatus = void; + export type listFlowcontrolApiserverV1beta2PriorityLevelConfiguration = void; + export type createFlowcontrolApiserverV1beta2PriorityLevelConfiguration = void; + export type deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration = void; + export type readFlowcontrolApiserverV1beta2PriorityLevelConfiguration = void; + export type replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration = void; + export type deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration = void; + export type patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration = void; + export type readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = void; + export type replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = void; + export type patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = void; + export type watchFlowcontrolApiserverV1beta2FlowSchemaList = void; + export type watchFlowcontrolApiserverV1beta2FlowSchema = void; + export type watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList = void; + export type watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration = void; + export type getFlowcontrolApiserverV1beta3APIResources = void; + export type listFlowcontrolApiserverV1beta3FlowSchema = void; + export type createFlowcontrolApiserverV1beta3FlowSchema = void; + export type deleteFlowcontrolApiserverV1beta3CollectionFlowSchema = void; + export type readFlowcontrolApiserverV1beta3FlowSchema = void; + export type replaceFlowcontrolApiserverV1beta3FlowSchema = void; + export type deleteFlowcontrolApiserverV1beta3FlowSchema = void; + export type patchFlowcontrolApiserverV1beta3FlowSchema = void; + export type readFlowcontrolApiserverV1beta3FlowSchemaStatus = void; + export type replaceFlowcontrolApiserverV1beta3FlowSchemaStatus = void; + export type patchFlowcontrolApiserverV1beta3FlowSchemaStatus = void; + export type listFlowcontrolApiserverV1beta3PriorityLevelConfiguration = void; + export type createFlowcontrolApiserverV1beta3PriorityLevelConfiguration = void; + export type deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration = void; + export type readFlowcontrolApiserverV1beta3PriorityLevelConfiguration = void; + export type replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration = void; + export type deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration = void; + export type patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration = void; + export type readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = void; + export type replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = void; + export type patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = void; + export type watchFlowcontrolApiserverV1beta3FlowSchemaList = void; + export type watchFlowcontrolApiserverV1beta3FlowSchema = void; + export type watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList = void; + export type watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration = void; + export type getInternalApiserverAPIGroup = void; + export type getInternalApiserverV1alpha1APIResources = void; + export type listInternalApiserverV1alpha1StorageVersion = void; + export type createInternalApiserverV1alpha1StorageVersion = void; + export type deleteInternalApiserverV1alpha1CollectionStorageVersion = void; + export type readInternalApiserverV1alpha1StorageVersion = void; + export type replaceInternalApiserverV1alpha1StorageVersion = void; + export type deleteInternalApiserverV1alpha1StorageVersion = void; + export type patchInternalApiserverV1alpha1StorageVersion = void; + export type readInternalApiserverV1alpha1StorageVersionStatus = void; + export type replaceInternalApiserverV1alpha1StorageVersionStatus = void; + export type patchInternalApiserverV1alpha1StorageVersionStatus = void; + export type watchInternalApiserverV1alpha1StorageVersionList = void; + export type watchInternalApiserverV1alpha1StorageVersion = void; + export type getNetworkingAPIGroup = void; + export type getNetworkingV1APIResources = void; + export type listNetworkingV1IngressClass = void; + export type createNetworkingV1IngressClass = void; + export type deleteNetworkingV1CollectionIngressClass = void; + export type readNetworkingV1IngressClass = void; + export type replaceNetworkingV1IngressClass = void; + export type deleteNetworkingV1IngressClass = void; + export type patchNetworkingV1IngressClass = void; + export type listNetworkingV1IngressForAllNamespaces = void; + export type listNetworkingV1NamespacedIngress = void; + export type createNetworkingV1NamespacedIngress = void; + export type deleteNetworkingV1CollectionNamespacedIngress = void; + export type readNetworkingV1NamespacedIngress = void; + export type replaceNetworkingV1NamespacedIngress = void; + export type deleteNetworkingV1NamespacedIngress = void; + export type patchNetworkingV1NamespacedIngress = void; + export type readNetworkingV1NamespacedIngressStatus = void; + export type replaceNetworkingV1NamespacedIngressStatus = void; + export type patchNetworkingV1NamespacedIngressStatus = void; + export type listNetworkingV1NamespacedNetworkPolicy = void; + export type createNetworkingV1NamespacedNetworkPolicy = void; + export type deleteNetworkingV1CollectionNamespacedNetworkPolicy = void; + export type readNetworkingV1NamespacedNetworkPolicy = void; + export type replaceNetworkingV1NamespacedNetworkPolicy = void; + export type deleteNetworkingV1NamespacedNetworkPolicy = void; + export type patchNetworkingV1NamespacedNetworkPolicy = void; + export type listNetworkingV1NetworkPolicyForAllNamespaces = void; + export type watchNetworkingV1IngressClassList = void; + export type watchNetworkingV1IngressClass = void; + export type watchNetworkingV1IngressListForAllNamespaces = void; + export type watchNetworkingV1NamespacedIngressList = void; + export type watchNetworkingV1NamespacedIngress = void; + export type watchNetworkingV1NamespacedNetworkPolicyList = void; + export type watchNetworkingV1NamespacedNetworkPolicy = void; + export type watchNetworkingV1NetworkPolicyListForAllNamespaces = void; + export type getNetworkingV1alpha1APIResources = void; + export type listNetworkingV1alpha1ClusterCIDR = void; + export type createNetworkingV1alpha1ClusterCIDR = void; + export type deleteNetworkingV1alpha1CollectionClusterCIDR = void; + export type readNetworkingV1alpha1ClusterCIDR = void; + export type replaceNetworkingV1alpha1ClusterCIDR = void; + export type deleteNetworkingV1alpha1ClusterCIDR = void; + export type patchNetworkingV1alpha1ClusterCIDR = void; + export type listNetworkingV1alpha1IPAddress = void; + export type createNetworkingV1alpha1IPAddress = void; + export type deleteNetworkingV1alpha1CollectionIPAddress = void; + export type readNetworkingV1alpha1IPAddress = void; + export type replaceNetworkingV1alpha1IPAddress = void; + export type deleteNetworkingV1alpha1IPAddress = void; + export type patchNetworkingV1alpha1IPAddress = void; + export type watchNetworkingV1alpha1ClusterCIDRList = void; + export type watchNetworkingV1alpha1ClusterCIDR = void; + export type watchNetworkingV1alpha1IPAddressList = void; + export type watchNetworkingV1alpha1IPAddress = void; + export type getNodeAPIGroup = void; + export type getNodeV1APIResources = void; + export type listNodeV1RuntimeClass = void; + export type createNodeV1RuntimeClass = void; + export type deleteNodeV1CollectionRuntimeClass = void; + export type readNodeV1RuntimeClass = void; + export type replaceNodeV1RuntimeClass = void; + export type deleteNodeV1RuntimeClass = void; + export type patchNodeV1RuntimeClass = void; + export type watchNodeV1RuntimeClassList = void; + export type watchNodeV1RuntimeClass = void; + export type getPolicyAPIGroup = void; + export type getPolicyV1APIResources = void; + export type listPolicyV1NamespacedPodDisruptionBudget = void; + export type createPolicyV1NamespacedPodDisruptionBudget = void; + export type deletePolicyV1CollectionNamespacedPodDisruptionBudget = void; + export type readPolicyV1NamespacedPodDisruptionBudget = void; + export type replacePolicyV1NamespacedPodDisruptionBudget = void; + export type deletePolicyV1NamespacedPodDisruptionBudget = void; + export type patchPolicyV1NamespacedPodDisruptionBudget = void; + export type readPolicyV1NamespacedPodDisruptionBudgetStatus = void; + export type replacePolicyV1NamespacedPodDisruptionBudgetStatus = void; + export type patchPolicyV1NamespacedPodDisruptionBudgetStatus = void; + export type listPolicyV1PodDisruptionBudgetForAllNamespaces = void; + export type watchPolicyV1NamespacedPodDisruptionBudgetList = void; + export type watchPolicyV1NamespacedPodDisruptionBudget = void; + export type watchPolicyV1PodDisruptionBudgetListForAllNamespaces = void; + export type getRbacAuthorizationAPIGroup = void; + export type getRbacAuthorizationV1APIResources = void; + export type listRbacAuthorizationV1ClusterRoleBinding = void; + export type createRbacAuthorizationV1ClusterRoleBinding = void; + export type deleteRbacAuthorizationV1CollectionClusterRoleBinding = void; + export type readRbacAuthorizationV1ClusterRoleBinding = void; + export type replaceRbacAuthorizationV1ClusterRoleBinding = void; + export type deleteRbacAuthorizationV1ClusterRoleBinding = void; + export type patchRbacAuthorizationV1ClusterRoleBinding = void; + export type listRbacAuthorizationV1ClusterRole = void; + export type createRbacAuthorizationV1ClusterRole = void; + export type deleteRbacAuthorizationV1CollectionClusterRole = void; + export type readRbacAuthorizationV1ClusterRole = void; + export type replaceRbacAuthorizationV1ClusterRole = void; + export type deleteRbacAuthorizationV1ClusterRole = void; + export type patchRbacAuthorizationV1ClusterRole = void; + export type listRbacAuthorizationV1NamespacedRoleBinding = void; + export type createRbacAuthorizationV1NamespacedRoleBinding = void; + export type deleteRbacAuthorizationV1CollectionNamespacedRoleBinding = void; + export type readRbacAuthorizationV1NamespacedRoleBinding = void; + export type replaceRbacAuthorizationV1NamespacedRoleBinding = void; + export type deleteRbacAuthorizationV1NamespacedRoleBinding = void; + export type patchRbacAuthorizationV1NamespacedRoleBinding = void; + export type listRbacAuthorizationV1NamespacedRole = void; + export type createRbacAuthorizationV1NamespacedRole = void; + export type deleteRbacAuthorizationV1CollectionNamespacedRole = void; + export type readRbacAuthorizationV1NamespacedRole = void; + export type replaceRbacAuthorizationV1NamespacedRole = void; + export type deleteRbacAuthorizationV1NamespacedRole = void; + export type patchRbacAuthorizationV1NamespacedRole = void; + export type listRbacAuthorizationV1RoleBindingForAllNamespaces = void; + export type listRbacAuthorizationV1RoleForAllNamespaces = void; + export type watchRbacAuthorizationV1ClusterRoleBindingList = void; + export type watchRbacAuthorizationV1ClusterRoleBinding = void; + export type watchRbacAuthorizationV1ClusterRoleList = void; + export type watchRbacAuthorizationV1ClusterRole = void; + export type watchRbacAuthorizationV1NamespacedRoleBindingList = void; + export type watchRbacAuthorizationV1NamespacedRoleBinding = void; + export type watchRbacAuthorizationV1NamespacedRoleList = void; + export type watchRbacAuthorizationV1NamespacedRole = void; + export type watchRbacAuthorizationV1RoleBindingListForAllNamespaces = void; + export type watchRbacAuthorizationV1RoleListForAllNamespaces = void; + export type getResourceAPIGroup = void; + export type getResourceV1alpha2APIResources = void; + export type listResourceV1alpha2NamespacedPodSchedulingContext = void; + export type createResourceV1alpha2NamespacedPodSchedulingContext = void; + export type deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext = void; + export type readResourceV1alpha2NamespacedPodSchedulingContext = void; + export type replaceResourceV1alpha2NamespacedPodSchedulingContext = void; + export type deleteResourceV1alpha2NamespacedPodSchedulingContext = void; + export type patchResourceV1alpha2NamespacedPodSchedulingContext = void; + export type readResourceV1alpha2NamespacedPodSchedulingContextStatus = void; + export type replaceResourceV1alpha2NamespacedPodSchedulingContextStatus = void; + export type patchResourceV1alpha2NamespacedPodSchedulingContextStatus = void; + export type listResourceV1alpha2NamespacedResourceClaim = void; + export type createResourceV1alpha2NamespacedResourceClaim = void; + export type deleteResourceV1alpha2CollectionNamespacedResourceClaim = void; + export type readResourceV1alpha2NamespacedResourceClaim = void; + export type replaceResourceV1alpha2NamespacedResourceClaim = void; + export type deleteResourceV1alpha2NamespacedResourceClaim = void; + export type patchResourceV1alpha2NamespacedResourceClaim = void; + export type readResourceV1alpha2NamespacedResourceClaimStatus = void; + export type replaceResourceV1alpha2NamespacedResourceClaimStatus = void; + export type patchResourceV1alpha2NamespacedResourceClaimStatus = void; + export type listResourceV1alpha2NamespacedResourceClaimTemplate = void; + export type createResourceV1alpha2NamespacedResourceClaimTemplate = void; + export type deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate = void; + export type readResourceV1alpha2NamespacedResourceClaimTemplate = void; + export type replaceResourceV1alpha2NamespacedResourceClaimTemplate = void; + export type deleteResourceV1alpha2NamespacedResourceClaimTemplate = void; + export type patchResourceV1alpha2NamespacedResourceClaimTemplate = void; + export type listResourceV1alpha2PodSchedulingContextForAllNamespaces = void; + export type listResourceV1alpha2ResourceClaimForAllNamespaces = void; + export type listResourceV1alpha2ResourceClaimTemplateForAllNamespaces = void; + export type listResourceV1alpha2ResourceClass = void; + export type createResourceV1alpha2ResourceClass = void; + export type deleteResourceV1alpha2CollectionResourceClass = void; + export type readResourceV1alpha2ResourceClass = void; + export type replaceResourceV1alpha2ResourceClass = void; + export type deleteResourceV1alpha2ResourceClass = void; + export type patchResourceV1alpha2ResourceClass = void; + export type watchResourceV1alpha2NamespacedPodSchedulingContextList = void; + export type watchResourceV1alpha2NamespacedPodSchedulingContext = void; + export type watchResourceV1alpha2NamespacedResourceClaimList = void; + export type watchResourceV1alpha2NamespacedResourceClaim = void; + export type watchResourceV1alpha2NamespacedResourceClaimTemplateList = void; + export type watchResourceV1alpha2NamespacedResourceClaimTemplate = void; + export type watchResourceV1alpha2PodSchedulingContextListForAllNamespaces = void; + export type watchResourceV1alpha2ResourceClaimListForAllNamespaces = void; + export type watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces = void; + export type watchResourceV1alpha2ResourceClassList = void; + export type watchResourceV1alpha2ResourceClass = void; + export type getSchedulingAPIGroup = void; + export type getSchedulingV1APIResources = void; + export type listSchedulingV1PriorityClass = void; + export type createSchedulingV1PriorityClass = void; + export type deleteSchedulingV1CollectionPriorityClass = void; + export type readSchedulingV1PriorityClass = void; + export type replaceSchedulingV1PriorityClass = void; + export type deleteSchedulingV1PriorityClass = void; + export type patchSchedulingV1PriorityClass = void; + export type watchSchedulingV1PriorityClassList = void; + export type watchSchedulingV1PriorityClass = void; + export type getStorageAPIGroup = void; + export type getStorageV1APIResources = void; + export type listStorageV1CSIDriver = void; + export type createStorageV1CSIDriver = void; + export type deleteStorageV1CollectionCSIDriver = void; + export type readStorageV1CSIDriver = void; + export type replaceStorageV1CSIDriver = void; + export type deleteStorageV1CSIDriver = void; + export type patchStorageV1CSIDriver = void; + export type listStorageV1CSINode = void; + export type createStorageV1CSINode = void; + export type deleteStorageV1CollectionCSINode = void; + export type readStorageV1CSINode = void; + export type replaceStorageV1CSINode = void; + export type deleteStorageV1CSINode = void; + export type patchStorageV1CSINode = void; + export type listStorageV1CSIStorageCapacityForAllNamespaces = void; + export type listStorageV1NamespacedCSIStorageCapacity = void; + export type createStorageV1NamespacedCSIStorageCapacity = void; + export type deleteStorageV1CollectionNamespacedCSIStorageCapacity = void; + export type readStorageV1NamespacedCSIStorageCapacity = void; + export type replaceStorageV1NamespacedCSIStorageCapacity = void; + export type deleteStorageV1NamespacedCSIStorageCapacity = void; + export type patchStorageV1NamespacedCSIStorageCapacity = void; + export type listStorageV1StorageClass = void; + export type createStorageV1StorageClass = void; + export type deleteStorageV1CollectionStorageClass = void; + export type readStorageV1StorageClass = void; + export type replaceStorageV1StorageClass = void; + export type deleteStorageV1StorageClass = void; + export type patchStorageV1StorageClass = void; + export type listStorageV1VolumeAttachment = void; + export type createStorageV1VolumeAttachment = void; + export type deleteStorageV1CollectionVolumeAttachment = void; + export type readStorageV1VolumeAttachment = void; + export type replaceStorageV1VolumeAttachment = void; + export type deleteStorageV1VolumeAttachment = void; + export type patchStorageV1VolumeAttachment = void; + export type readStorageV1VolumeAttachmentStatus = void; + export type replaceStorageV1VolumeAttachmentStatus = void; + export type patchStorageV1VolumeAttachmentStatus = void; + export type watchStorageV1CSIDriverList = void; + export type watchStorageV1CSIDriver = void; + export type watchStorageV1CSINodeList = void; + export type watchStorageV1CSINode = void; + export type watchStorageV1CSIStorageCapacityListForAllNamespaces = void; + export type watchStorageV1NamespacedCSIStorageCapacityList = void; + export type watchStorageV1NamespacedCSIStorageCapacity = void; + export type watchStorageV1StorageClassList = void; + export type watchStorageV1StorageClass = void; + export type watchStorageV1VolumeAttachmentList = void; + export type watchStorageV1VolumeAttachment = void; + export type logFileListHandler = void; + export type logFileHandler = void; + export type getServiceAccountIssuerOpenIDKeyset = void; + export type getCodeVersion = void; +} +export interface Encoding { + readonly contentType?: string; + headers?: Record; + readonly style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject"; + readonly explode?: boolean; + readonly allowReserved?: boolean; +} +export interface RequestArgs { + readonly httpMethod: HttpMethod; + readonly url: string; + headers: ObjectLike | any; + requestBody?: ObjectLike | any; + requestBodyEncoding?: Record; + queryParameters?: QueryParameters | undefined; +} +export interface ApiClient { + request: (requestArgs: RequestArgs, options?: RequestOption) => Promise; +} +export class Client { + private baseUrl: string; + constructor(private apiClient: ApiClient, baseUrl: string) { this.baseUrl = baseUrl.replace(/\/$/, ""); } + /** get service account issuer OpenID configuration, also known as the 'OIDC discovery doc' */ + public async getServiceAccountIssuerOpenIDConfiguration(option?: RequestOption): Promise { + const url = this.baseUrl + `/.well-known/openid-configuration/`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available API versions */ + public async getCoreAPIVersions(params: Params$getCoreAPIVersions, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getCoreV1APIResources(params: Params$getCoreV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list objects of kind ComponentStatus */ + public async listCoreV1ComponentStatus(params: Params$listCoreV1ComponentStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/componentstatuses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** read the specified ComponentStatus */ + public async readCoreV1ComponentStatus(params: Params$readCoreV1ComponentStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/componentstatuses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ConfigMap */ + public async listCoreV1ConfigMapForAllNamespaces(params: Params$listCoreV1ConfigMapForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/configmaps`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Endpoints */ + public async listCoreV1EndpointsForAllNamespaces(params: Params$listCoreV1EndpointsForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/endpoints`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Event */ + public async listCoreV1EventForAllNamespaces(params: Params$listCoreV1EventForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind LimitRange */ + public async listCoreV1LimitRangeForAllNamespaces(params: Params$listCoreV1LimitRangeForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/limitranges`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Namespace */ + public async listCoreV1Namespace(params: Params$listCoreV1Namespace, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Namespace */ + public async createCoreV1Namespace(params: Params$createCoreV1Namespace, option?: RequestOption): Promise<(Response$createCoreV1Namespace$Status$200 | Response$createCoreV1Namespace$Status$201 | Response$createCoreV1Namespace$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** create a Binding */ + public async createCoreV1NamespacedBinding(params: Params$createCoreV1NamespacedBinding, option?: RequestOption): Promise<(Response$createCoreV1NamespacedBinding$Status$200 | Response$createCoreV1NamespacedBinding$Status$201 | Response$createCoreV1NamespacedBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/bindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ConfigMap */ + public async listCoreV1NamespacedConfigMap(params: Params$listCoreV1NamespacedConfigMap, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ConfigMap */ + public async createCoreV1NamespacedConfigMap(params: Params$createCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$createCoreV1NamespacedConfigMap$Status$200 | Response$createCoreV1NamespacedConfigMap$Status$201 | Response$createCoreV1NamespacedConfigMap$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ConfigMap */ + public async deleteCoreV1CollectionNamespacedConfigMap(params: Params$deleteCoreV1CollectionNamespacedConfigMap, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ConfigMap */ + public async readCoreV1NamespacedConfigMap(params: Params$readCoreV1NamespacedConfigMap, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ConfigMap */ + public async replaceCoreV1NamespacedConfigMap(params: Params$replaceCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedConfigMap$Status$200 | Response$replaceCoreV1NamespacedConfigMap$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ConfigMap */ + public async deleteCoreV1NamespacedConfigMap(params: Params$deleteCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedConfigMap$Status$200 | Response$deleteCoreV1NamespacedConfigMap$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ConfigMap */ + public async patchCoreV1NamespacedConfigMap(params: Params$patchCoreV1NamespacedConfigMap, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedConfigMap$Status$200 | Response$patchCoreV1NamespacedConfigMap$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Endpoints */ + public async listCoreV1NamespacedEndpoints(params: Params$listCoreV1NamespacedEndpoints, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create Endpoints */ + public async createCoreV1NamespacedEndpoints(params: Params$createCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$createCoreV1NamespacedEndpoints$Status$200 | Response$createCoreV1NamespacedEndpoints$Status$201 | Response$createCoreV1NamespacedEndpoints$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Endpoints */ + public async deleteCoreV1CollectionNamespacedEndpoints(params: Params$deleteCoreV1CollectionNamespacedEndpoints, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Endpoints */ + public async readCoreV1NamespacedEndpoints(params: Params$readCoreV1NamespacedEndpoints, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Endpoints */ + public async replaceCoreV1NamespacedEndpoints(params: Params$replaceCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedEndpoints$Status$200 | Response$replaceCoreV1NamespacedEndpoints$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete Endpoints */ + public async deleteCoreV1NamespacedEndpoints(params: Params$deleteCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedEndpoints$Status$200 | Response$deleteCoreV1NamespacedEndpoints$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Endpoints */ + public async patchCoreV1NamespacedEndpoints(params: Params$patchCoreV1NamespacedEndpoints, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedEndpoints$Status$200 | Response$patchCoreV1NamespacedEndpoints$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Event */ + public async listCoreV1NamespacedEvent(params: Params$listCoreV1NamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create an Event */ + public async createCoreV1NamespacedEvent(params: Params$createCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$createCoreV1NamespacedEvent$Status$200 | Response$createCoreV1NamespacedEvent$Status$201 | Response$createCoreV1NamespacedEvent$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Event */ + public async deleteCoreV1CollectionNamespacedEvent(params: Params$deleteCoreV1CollectionNamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Event */ + public async readCoreV1NamespacedEvent(params: Params$readCoreV1NamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Event */ + public async replaceCoreV1NamespacedEvent(params: Params$replaceCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedEvent$Status$200 | Response$replaceCoreV1NamespacedEvent$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete an Event */ + public async deleteCoreV1NamespacedEvent(params: Params$deleteCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedEvent$Status$200 | Response$deleteCoreV1NamespacedEvent$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Event */ + public async patchCoreV1NamespacedEvent(params: Params$patchCoreV1NamespacedEvent, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedEvent$Status$200 | Response$patchCoreV1NamespacedEvent$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind LimitRange */ + public async listCoreV1NamespacedLimitRange(params: Params$listCoreV1NamespacedLimitRange, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a LimitRange */ + public async createCoreV1NamespacedLimitRange(params: Params$createCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$createCoreV1NamespacedLimitRange$Status$200 | Response$createCoreV1NamespacedLimitRange$Status$201 | Response$createCoreV1NamespacedLimitRange$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of LimitRange */ + public async deleteCoreV1CollectionNamespacedLimitRange(params: Params$deleteCoreV1CollectionNamespacedLimitRange, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified LimitRange */ + public async readCoreV1NamespacedLimitRange(params: Params$readCoreV1NamespacedLimitRange, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified LimitRange */ + public async replaceCoreV1NamespacedLimitRange(params: Params$replaceCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedLimitRange$Status$200 | Response$replaceCoreV1NamespacedLimitRange$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a LimitRange */ + public async deleteCoreV1NamespacedLimitRange(params: Params$deleteCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedLimitRange$Status$200 | Response$deleteCoreV1NamespacedLimitRange$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified LimitRange */ + public async patchCoreV1NamespacedLimitRange(params: Params$patchCoreV1NamespacedLimitRange, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedLimitRange$Status$200 | Response$patchCoreV1NamespacedLimitRange$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PersistentVolumeClaim */ + public async listCoreV1NamespacedPersistentVolumeClaim(params: Params$listCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PersistentVolumeClaim */ + public async createCoreV1NamespacedPersistentVolumeClaim(params: Params$createCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$201 | Response$createCoreV1NamespacedPersistentVolumeClaim$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PersistentVolumeClaim */ + public async deleteCoreV1CollectionNamespacedPersistentVolumeClaim(params: Params$deleteCoreV1CollectionNamespacedPersistentVolumeClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PersistentVolumeClaim */ + public async readCoreV1NamespacedPersistentVolumeClaim(params: Params$readCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PersistentVolumeClaim */ + public async replaceCoreV1NamespacedPersistentVolumeClaim(params: Params$replaceCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PersistentVolumeClaim */ + public async deleteCoreV1NamespacedPersistentVolumeClaim(params: Params$deleteCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PersistentVolumeClaim */ + public async patchCoreV1NamespacedPersistentVolumeClaim(params: Params$patchCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 | Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified PersistentVolumeClaim */ + public async readCoreV1NamespacedPersistentVolumeClaimStatus(params: Params$readCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified PersistentVolumeClaim */ + public async replaceCoreV1NamespacedPersistentVolumeClaimStatus(params: Params$replaceCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified PersistentVolumeClaim */ + public async patchCoreV1NamespacedPersistentVolumeClaimStatus(params: Params$patchCoreV1NamespacedPersistentVolumeClaimStatus, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 | Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Pod */ + public async listCoreV1NamespacedPod(params: Params$listCoreV1NamespacedPod, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Pod */ + public async createCoreV1NamespacedPod(params: Params$createCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPod$Status$200 | Response$createCoreV1NamespacedPod$Status$201 | Response$createCoreV1NamespacedPod$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Pod */ + public async deleteCoreV1CollectionNamespacedPod(params: Params$deleteCoreV1CollectionNamespacedPod, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Pod */ + public async readCoreV1NamespacedPod(params: Params$readCoreV1NamespacedPod, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Pod */ + public async replaceCoreV1NamespacedPod(params: Params$replaceCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPod$Status$200 | Response$replaceCoreV1NamespacedPod$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Pod */ + public async deleteCoreV1NamespacedPod(params: Params$deleteCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPod$Status$200 | Response$deleteCoreV1NamespacedPod$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Pod */ + public async patchCoreV1NamespacedPod(params: Params$patchCoreV1NamespacedPod, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedPod$Status$200 | Response$patchCoreV1NamespacedPod$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to attach of Pod */ + public async connectCoreV1GetNamespacedPodAttach(params: Params$connectCoreV1GetNamespacedPodAttach, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/attach`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + container: { value: params.parameter.container, explode: false }, + stderr: { value: params.parameter.stderr, explode: false }, + stdin: { value: params.parameter.stdin, explode: false }, + stdout: { value: params.parameter.stdout, explode: false }, + tty: { value: params.parameter.tty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to attach of Pod */ + public async connectCoreV1PostNamespacedPodAttach(params: Params$connectCoreV1PostNamespacedPodAttach, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/attach`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + container: { value: params.parameter.container, explode: false }, + stderr: { value: params.parameter.stderr, explode: false }, + stdin: { value: params.parameter.stdin, explode: false }, + stdout: { value: params.parameter.stdout, explode: false }, + tty: { value: params.parameter.tty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create binding of a Pod */ + public async createCoreV1NamespacedPodBinding(params: Params$createCoreV1NamespacedPodBinding, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodBinding$Status$200 | Response$createCoreV1NamespacedPodBinding$Status$201 | Response$createCoreV1NamespacedPodBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/binding`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read ephemeralcontainers of the specified Pod */ + public async readCoreV1NamespacedPodEphemeralcontainers(params: Params$readCoreV1NamespacedPodEphemeralcontainers, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/ephemeralcontainers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace ephemeralcontainers of the specified Pod */ + public async replaceCoreV1NamespacedPodEphemeralcontainers(params: Params$replaceCoreV1NamespacedPodEphemeralcontainers, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$200 | Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/ephemeralcontainers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update ephemeralcontainers of the specified Pod */ + public async patchCoreV1NamespacedPodEphemeralcontainers(params: Params$patchCoreV1NamespacedPodEphemeralcontainers, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$200 | Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/ephemeralcontainers`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** create eviction of a Pod */ + public async createCoreV1NamespacedPodEviction(params: Params$createCoreV1NamespacedPodEviction, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodEviction$Status$200 | Response$createCoreV1NamespacedPodEviction$Status$201 | Response$createCoreV1NamespacedPodEviction$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/eviction`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to exec of Pod */ + public async connectCoreV1GetNamespacedPodExec(params: Params$connectCoreV1GetNamespacedPodExec, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/exec`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + command: { value: params.parameter.command, explode: false }, + container: { value: params.parameter.container, explode: false }, + stderr: { value: params.parameter.stderr, explode: false }, + stdin: { value: params.parameter.stdin, explode: false }, + stdout: { value: params.parameter.stdout, explode: false }, + tty: { value: params.parameter.tty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to exec of Pod */ + public async connectCoreV1PostNamespacedPodExec(params: Params$connectCoreV1PostNamespacedPodExec, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/exec`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + command: { value: params.parameter.command, explode: false }, + container: { value: params.parameter.container, explode: false }, + stderr: { value: params.parameter.stderr, explode: false }, + stdin: { value: params.parameter.stdin, explode: false }, + stdout: { value: params.parameter.stdout, explode: false }, + tty: { value: params.parameter.tty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** read log of the specified Pod */ + public async readCoreV1NamespacedPodLog(params: Params$readCoreV1NamespacedPodLog, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/log`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + container: { value: params.parameter.container, explode: false }, + follow: { value: params.parameter.follow, explode: false }, + insecureSkipTLSVerifyBackend: { value: params.parameter.insecureSkipTLSVerifyBackend, explode: false }, + limitBytes: { value: params.parameter.limitBytes, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + previous: { value: params.parameter.previous, explode: false }, + sinceSeconds: { value: params.parameter.sinceSeconds, explode: false }, + tailLines: { value: params.parameter.tailLines, explode: false }, + timestamps: { value: params.parameter.timestamps, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to portforward of Pod */ + public async connectCoreV1GetNamespacedPodPortforward(params: Params$connectCoreV1GetNamespacedPodPortforward, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/portforward`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + ports: { value: params.parameter.ports, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to portforward of Pod */ + public async connectCoreV1PostNamespacedPodPortforward(params: Params$connectCoreV1PostNamespacedPodPortforward, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/portforward`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + ports: { value: params.parameter.ports, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to proxy of Pod */ + public async connectCoreV1GetNamespacedPodProxy(params: Params$connectCoreV1GetNamespacedPodProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PUT requests to proxy of Pod */ + public async connectCoreV1PutNamespacedPodProxy(params: Params$connectCoreV1PutNamespacedPodProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to proxy of Pod */ + public async connectCoreV1PostNamespacedPodProxy(params: Params$connectCoreV1PostNamespacedPodProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect DELETE requests to proxy of Pod */ + public async connectCoreV1DeleteNamespacedPodProxy(params: Params$connectCoreV1DeleteNamespacedPodProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect OPTIONS requests to proxy of Pod */ + public async connectCoreV1OptionsNamespacedPodProxy(params: Params$connectCoreV1OptionsNamespacedPodProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "OPTIONS", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect HEAD requests to proxy of Pod */ + public async connectCoreV1HeadNamespacedPodProxy(params: Params$connectCoreV1HeadNamespacedPodProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PATCH requests to proxy of Pod */ + public async connectCoreV1PatchNamespacedPodProxy(params: Params$connectCoreV1PatchNamespacedPodProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to proxy of Pod */ + public async connectCoreV1GetNamespacedPodProxyWithPath(params: Params$connectCoreV1GetNamespacedPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PUT requests to proxy of Pod */ + public async connectCoreV1PutNamespacedPodProxyWithPath(params: Params$connectCoreV1PutNamespacedPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to proxy of Pod */ + public async connectCoreV1PostNamespacedPodProxyWithPath(params: Params$connectCoreV1PostNamespacedPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect DELETE requests to proxy of Pod */ + public async connectCoreV1DeleteNamespacedPodProxyWithPath(params: Params$connectCoreV1DeleteNamespacedPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect OPTIONS requests to proxy of Pod */ + public async connectCoreV1OptionsNamespacedPodProxyWithPath(params: Params$connectCoreV1OptionsNamespacedPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "OPTIONS", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect HEAD requests to proxy of Pod */ + public async connectCoreV1HeadNamespacedPodProxyWithPath(params: Params$connectCoreV1HeadNamespacedPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PATCH requests to proxy of Pod */ + public async connectCoreV1PatchNamespacedPodProxyWithPath(params: Params$connectCoreV1PatchNamespacedPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** read status of the specified Pod */ + public async readCoreV1NamespacedPodStatus(params: Params$readCoreV1NamespacedPodStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified Pod */ + public async replaceCoreV1NamespacedPodStatus(params: Params$replaceCoreV1NamespacedPodStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPodStatus$Status$200 | Response$replaceCoreV1NamespacedPodStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified Pod */ + public async patchCoreV1NamespacedPodStatus(params: Params$patchCoreV1NamespacedPodStatus, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedPodStatus$Status$200 | Response$patchCoreV1NamespacedPodStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PodTemplate */ + public async listCoreV1NamespacedPodTemplate(params: Params$listCoreV1NamespacedPodTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PodTemplate */ + public async createCoreV1NamespacedPodTemplate(params: Params$createCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$createCoreV1NamespacedPodTemplate$Status$200 | Response$createCoreV1NamespacedPodTemplate$Status$201 | Response$createCoreV1NamespacedPodTemplate$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PodTemplate */ + public async deleteCoreV1CollectionNamespacedPodTemplate(params: Params$deleteCoreV1CollectionNamespacedPodTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PodTemplate */ + public async readCoreV1NamespacedPodTemplate(params: Params$readCoreV1NamespacedPodTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PodTemplate */ + public async replaceCoreV1NamespacedPodTemplate(params: Params$replaceCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedPodTemplate$Status$200 | Response$replaceCoreV1NamespacedPodTemplate$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PodTemplate */ + public async deleteCoreV1NamespacedPodTemplate(params: Params$deleteCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedPodTemplate$Status$200 | Response$deleteCoreV1NamespacedPodTemplate$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PodTemplate */ + public async patchCoreV1NamespacedPodTemplate(params: Params$patchCoreV1NamespacedPodTemplate, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedPodTemplate$Status$200 | Response$patchCoreV1NamespacedPodTemplate$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ReplicationController */ + public async listCoreV1NamespacedReplicationController(params: Params$listCoreV1NamespacedReplicationController, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ReplicationController */ + public async createCoreV1NamespacedReplicationController(params: Params$createCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$createCoreV1NamespacedReplicationController$Status$200 | Response$createCoreV1NamespacedReplicationController$Status$201 | Response$createCoreV1NamespacedReplicationController$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ReplicationController */ + public async deleteCoreV1CollectionNamespacedReplicationController(params: Params$deleteCoreV1CollectionNamespacedReplicationController, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ReplicationController */ + public async readCoreV1NamespacedReplicationController(params: Params$readCoreV1NamespacedReplicationController, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ReplicationController */ + public async replaceCoreV1NamespacedReplicationController(params: Params$replaceCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationController$Status$200 | Response$replaceCoreV1NamespacedReplicationController$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ReplicationController */ + public async deleteCoreV1NamespacedReplicationController(params: Params$deleteCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedReplicationController$Status$200 | Response$deleteCoreV1NamespacedReplicationController$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ReplicationController */ + public async patchCoreV1NamespacedReplicationController(params: Params$patchCoreV1NamespacedReplicationController, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedReplicationController$Status$200 | Response$patchCoreV1NamespacedReplicationController$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read scale of the specified ReplicationController */ + public async readCoreV1NamespacedReplicationControllerScale(params: Params$readCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace scale of the specified ReplicationController */ + public async replaceCoreV1NamespacedReplicationControllerScale(params: Params$replaceCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update scale of the specified ReplicationController */ + public async patchCoreV1NamespacedReplicationControllerScale(params: Params$patchCoreV1NamespacedReplicationControllerScale, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedReplicationControllerScale$Status$200 | Response$patchCoreV1NamespacedReplicationControllerScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified ReplicationController */ + public async readCoreV1NamespacedReplicationControllerStatus(params: Params$readCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified ReplicationController */ + public async replaceCoreV1NamespacedReplicationControllerStatus(params: Params$replaceCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 | Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified ReplicationController */ + public async patchCoreV1NamespacedReplicationControllerStatus(params: Params$patchCoreV1NamespacedReplicationControllerStatus, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedReplicationControllerStatus$Status$200 | Response$patchCoreV1NamespacedReplicationControllerStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ResourceQuota */ + public async listCoreV1NamespacedResourceQuota(params: Params$listCoreV1NamespacedResourceQuota, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ResourceQuota */ + public async createCoreV1NamespacedResourceQuota(params: Params$createCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$createCoreV1NamespacedResourceQuota$Status$200 | Response$createCoreV1NamespacedResourceQuota$Status$201 | Response$createCoreV1NamespacedResourceQuota$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ResourceQuota */ + public async deleteCoreV1CollectionNamespacedResourceQuota(params: Params$deleteCoreV1CollectionNamespacedResourceQuota, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ResourceQuota */ + public async readCoreV1NamespacedResourceQuota(params: Params$readCoreV1NamespacedResourceQuota, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ResourceQuota */ + public async replaceCoreV1NamespacedResourceQuota(params: Params$replaceCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedResourceQuota$Status$200 | Response$replaceCoreV1NamespacedResourceQuota$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ResourceQuota */ + public async deleteCoreV1NamespacedResourceQuota(params: Params$deleteCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedResourceQuota$Status$200 | Response$deleteCoreV1NamespacedResourceQuota$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ResourceQuota */ + public async patchCoreV1NamespacedResourceQuota(params: Params$patchCoreV1NamespacedResourceQuota, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedResourceQuota$Status$200 | Response$patchCoreV1NamespacedResourceQuota$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified ResourceQuota */ + public async readCoreV1NamespacedResourceQuotaStatus(params: Params$readCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified ResourceQuota */ + public async replaceCoreV1NamespacedResourceQuotaStatus(params: Params$replaceCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 | Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified ResourceQuota */ + public async patchCoreV1NamespacedResourceQuotaStatus(params: Params$patchCoreV1NamespacedResourceQuotaStatus, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 | Response$patchCoreV1NamespacedResourceQuotaStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Secret */ + public async listCoreV1NamespacedSecret(params: Params$listCoreV1NamespacedSecret, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Secret */ + public async createCoreV1NamespacedSecret(params: Params$createCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$createCoreV1NamespacedSecret$Status$200 | Response$createCoreV1NamespacedSecret$Status$201 | Response$createCoreV1NamespacedSecret$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Secret */ + public async deleteCoreV1CollectionNamespacedSecret(params: Params$deleteCoreV1CollectionNamespacedSecret, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Secret */ + public async readCoreV1NamespacedSecret(params: Params$readCoreV1NamespacedSecret, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Secret */ + public async replaceCoreV1NamespacedSecret(params: Params$replaceCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedSecret$Status$200 | Response$replaceCoreV1NamespacedSecret$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Secret */ + public async deleteCoreV1NamespacedSecret(params: Params$deleteCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedSecret$Status$200 | Response$deleteCoreV1NamespacedSecret$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Secret */ + public async patchCoreV1NamespacedSecret(params: Params$patchCoreV1NamespacedSecret, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedSecret$Status$200 | Response$patchCoreV1NamespacedSecret$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ServiceAccount */ + public async listCoreV1NamespacedServiceAccount(params: Params$listCoreV1NamespacedServiceAccount, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ServiceAccount */ + public async createCoreV1NamespacedServiceAccount(params: Params$createCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$createCoreV1NamespacedServiceAccount$Status$200 | Response$createCoreV1NamespacedServiceAccount$Status$201 | Response$createCoreV1NamespacedServiceAccount$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ServiceAccount */ + public async deleteCoreV1CollectionNamespacedServiceAccount(params: Params$deleteCoreV1CollectionNamespacedServiceAccount, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ServiceAccount */ + public async readCoreV1NamespacedServiceAccount(params: Params$readCoreV1NamespacedServiceAccount, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ServiceAccount */ + public async replaceCoreV1NamespacedServiceAccount(params: Params$replaceCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedServiceAccount$Status$200 | Response$replaceCoreV1NamespacedServiceAccount$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ServiceAccount */ + public async deleteCoreV1NamespacedServiceAccount(params: Params$deleteCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedServiceAccount$Status$200 | Response$deleteCoreV1NamespacedServiceAccount$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ServiceAccount */ + public async patchCoreV1NamespacedServiceAccount(params: Params$patchCoreV1NamespacedServiceAccount, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedServiceAccount$Status$200 | Response$patchCoreV1NamespacedServiceAccount$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** create token of a ServiceAccount */ + public async createCoreV1NamespacedServiceAccountToken(params: Params$createCoreV1NamespacedServiceAccountToken, option?: RequestOption): Promise<(Response$createCoreV1NamespacedServiceAccountToken$Status$200 | Response$createCoreV1NamespacedServiceAccountToken$Status$201 | Response$createCoreV1NamespacedServiceAccountToken$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}/token`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Service */ + public async listCoreV1NamespacedService(params: Params$listCoreV1NamespacedService, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Service */ + public async createCoreV1NamespacedService(params: Params$createCoreV1NamespacedService, option?: RequestOption): Promise<(Response$createCoreV1NamespacedService$Status$200 | Response$createCoreV1NamespacedService$Status$201 | Response$createCoreV1NamespacedService$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Service */ + public async deleteCoreV1CollectionNamespacedService(params: Params$deleteCoreV1CollectionNamespacedService, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Service */ + public async readCoreV1NamespacedService(params: Params$readCoreV1NamespacedService, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Service */ + public async replaceCoreV1NamespacedService(params: Params$replaceCoreV1NamespacedService, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedService$Status$200 | Response$replaceCoreV1NamespacedService$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Service */ + public async deleteCoreV1NamespacedService(params: Params$deleteCoreV1NamespacedService, option?: RequestOption): Promise<(Response$deleteCoreV1NamespacedService$Status$200 | Response$deleteCoreV1NamespacedService$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Service */ + public async patchCoreV1NamespacedService(params: Params$patchCoreV1NamespacedService, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedService$Status$200 | Response$patchCoreV1NamespacedService$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to proxy of Service */ + public async connectCoreV1GetNamespacedServiceProxy(params: Params$connectCoreV1GetNamespacedServiceProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PUT requests to proxy of Service */ + public async connectCoreV1PutNamespacedServiceProxy(params: Params$connectCoreV1PutNamespacedServiceProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to proxy of Service */ + public async connectCoreV1PostNamespacedServiceProxy(params: Params$connectCoreV1PostNamespacedServiceProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect DELETE requests to proxy of Service */ + public async connectCoreV1DeleteNamespacedServiceProxy(params: Params$connectCoreV1DeleteNamespacedServiceProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect OPTIONS requests to proxy of Service */ + public async connectCoreV1OptionsNamespacedServiceProxy(params: Params$connectCoreV1OptionsNamespacedServiceProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "OPTIONS", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect HEAD requests to proxy of Service */ + public async connectCoreV1HeadNamespacedServiceProxy(params: Params$connectCoreV1HeadNamespacedServiceProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PATCH requests to proxy of Service */ + public async connectCoreV1PatchNamespacedServiceProxy(params: Params$connectCoreV1PatchNamespacedServiceProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to proxy of Service */ + public async connectCoreV1GetNamespacedServiceProxyWithPath(params: Params$connectCoreV1GetNamespacedServiceProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PUT requests to proxy of Service */ + public async connectCoreV1PutNamespacedServiceProxyWithPath(params: Params$connectCoreV1PutNamespacedServiceProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to proxy of Service */ + public async connectCoreV1PostNamespacedServiceProxyWithPath(params: Params$connectCoreV1PostNamespacedServiceProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect DELETE requests to proxy of Service */ + public async connectCoreV1DeleteNamespacedServiceProxyWithPath(params: Params$connectCoreV1DeleteNamespacedServiceProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect OPTIONS requests to proxy of Service */ + public async connectCoreV1OptionsNamespacedServiceProxyWithPath(params: Params$connectCoreV1OptionsNamespacedServiceProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "OPTIONS", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect HEAD requests to proxy of Service */ + public async connectCoreV1HeadNamespacedServiceProxyWithPath(params: Params$connectCoreV1HeadNamespacedServiceProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PATCH requests to proxy of Service */ + public async connectCoreV1PatchNamespacedServiceProxyWithPath(params: Params$connectCoreV1PatchNamespacedServiceProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** read status of the specified Service */ + public async readCoreV1NamespacedServiceStatus(params: Params$readCoreV1NamespacedServiceStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified Service */ + public async replaceCoreV1NamespacedServiceStatus(params: Params$replaceCoreV1NamespacedServiceStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespacedServiceStatus$Status$200 | Response$replaceCoreV1NamespacedServiceStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified Service */ + public async patchCoreV1NamespacedServiceStatus(params: Params$patchCoreV1NamespacedServiceStatus, option?: RequestOption): Promise<(Response$patchCoreV1NamespacedServiceStatus$Status$200 | Response$patchCoreV1NamespacedServiceStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Namespace */ + public async readCoreV1Namespace(params: Params$readCoreV1Namespace, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Namespace */ + public async replaceCoreV1Namespace(params: Params$replaceCoreV1Namespace, option?: RequestOption): Promise<(Response$replaceCoreV1Namespace$Status$200 | Response$replaceCoreV1Namespace$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Namespace */ + public async deleteCoreV1Namespace(params: Params$deleteCoreV1Namespace, option?: RequestOption): Promise<(Response$deleteCoreV1Namespace$Status$200 | Response$deleteCoreV1Namespace$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Namespace */ + public async patchCoreV1Namespace(params: Params$patchCoreV1Namespace, option?: RequestOption): Promise<(Response$patchCoreV1Namespace$Status$200 | Response$patchCoreV1Namespace$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** replace finalize of the specified Namespace */ + public async replaceCoreV1NamespaceFinalize(params: Params$replaceCoreV1NamespaceFinalize, option?: RequestOption): Promise<(Response$replaceCoreV1NamespaceFinalize$Status$200 | Response$replaceCoreV1NamespaceFinalize$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/finalize`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified Namespace */ + public async readCoreV1NamespaceStatus(params: Params$readCoreV1NamespaceStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified Namespace */ + public async replaceCoreV1NamespaceStatus(params: Params$replaceCoreV1NamespaceStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NamespaceStatus$Status$200 | Response$replaceCoreV1NamespaceStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified Namespace */ + public async patchCoreV1NamespaceStatus(params: Params$patchCoreV1NamespaceStatus, option?: RequestOption): Promise<(Response$patchCoreV1NamespaceStatus$Status$200 | Response$patchCoreV1NamespaceStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/namespaces/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Node */ + public async listCoreV1Node(params: Params$listCoreV1Node, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Node */ + public async createCoreV1Node(params: Params$createCoreV1Node, option?: RequestOption): Promise<(Response$createCoreV1Node$Status$200 | Response$createCoreV1Node$Status$201 | Response$createCoreV1Node$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/nodes`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Node */ + public async deleteCoreV1CollectionNode(params: Params$deleteCoreV1CollectionNode, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Node */ + public async readCoreV1Node(params: Params$readCoreV1Node, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Node */ + public async replaceCoreV1Node(params: Params$replaceCoreV1Node, option?: RequestOption): Promise<(Response$replaceCoreV1Node$Status$200 | Response$replaceCoreV1Node$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Node */ + public async deleteCoreV1Node(params: Params$deleteCoreV1Node, option?: RequestOption): Promise<(Response$deleteCoreV1Node$Status$200 | Response$deleteCoreV1Node$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Node */ + public async patchCoreV1Node(params: Params$patchCoreV1Node, option?: RequestOption): Promise<(Response$patchCoreV1Node$Status$200 | Response$patchCoreV1Node$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to proxy of Node */ + public async connectCoreV1GetNodeProxy(params: Params$connectCoreV1GetNodeProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PUT requests to proxy of Node */ + public async connectCoreV1PutNodeProxy(params: Params$connectCoreV1PutNodeProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to proxy of Node */ + public async connectCoreV1PostNodeProxy(params: Params$connectCoreV1PostNodeProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect DELETE requests to proxy of Node */ + public async connectCoreV1DeleteNodeProxy(params: Params$connectCoreV1DeleteNodeProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect OPTIONS requests to proxy of Node */ + public async connectCoreV1OptionsNodeProxy(params: Params$connectCoreV1OptionsNodeProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "OPTIONS", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect HEAD requests to proxy of Node */ + public async connectCoreV1HeadNodeProxy(params: Params$connectCoreV1HeadNodeProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PATCH requests to proxy of Node */ + public async connectCoreV1PatchNodeProxy(params: Params$connectCoreV1PatchNodeProxy, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect GET requests to proxy of Node */ + public async connectCoreV1GetNodeProxyWithPath(params: Params$connectCoreV1GetNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PUT requests to proxy of Node */ + public async connectCoreV1PutNodeProxyWithPath(params: Params$connectCoreV1PutNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect POST requests to proxy of Node */ + public async connectCoreV1PostNodeProxyWithPath(params: Params$connectCoreV1PostNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect DELETE requests to proxy of Node */ + public async connectCoreV1DeleteNodeProxyWithPath(params: Params$connectCoreV1DeleteNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect OPTIONS requests to proxy of Node */ + public async connectCoreV1OptionsNodeProxyWithPath(params: Params$connectCoreV1OptionsNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "OPTIONS", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect HEAD requests to proxy of Node */ + public async connectCoreV1HeadNodeProxyWithPath(params: Params$connectCoreV1HeadNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "HEAD", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** connect PATCH requests to proxy of Node */ + public async connectCoreV1PatchNodeProxyWithPath(params: Params$connectCoreV1PatchNodeProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/proxy/${encodeURIComponent(params.parameter.path)}`; + const headers = { + Accept: "*/*" + }; + const queryParameters: QueryParameters = { + path: { value: params.parameter.path, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** read status of the specified Node */ + public async readCoreV1NodeStatus(params: Params$readCoreV1NodeStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified Node */ + public async replaceCoreV1NodeStatus(params: Params$replaceCoreV1NodeStatus, option?: RequestOption): Promise<(Response$replaceCoreV1NodeStatus$Status$200 | Response$replaceCoreV1NodeStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified Node */ + public async patchCoreV1NodeStatus(params: Params$patchCoreV1NodeStatus, option?: RequestOption): Promise<(Response$patchCoreV1NodeStatus$Status$200 | Response$patchCoreV1NodeStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/nodes/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PersistentVolumeClaim */ + public async listCoreV1PersistentVolumeClaimForAllNamespaces(params: Params$listCoreV1PersistentVolumeClaimForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/persistentvolumeclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PersistentVolume */ + public async listCoreV1PersistentVolume(params: Params$listCoreV1PersistentVolume, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/persistentvolumes`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PersistentVolume */ + public async createCoreV1PersistentVolume(params: Params$createCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$createCoreV1PersistentVolume$Status$200 | Response$createCoreV1PersistentVolume$Status$201 | Response$createCoreV1PersistentVolume$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/persistentvolumes`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PersistentVolume */ + public async deleteCoreV1CollectionPersistentVolume(params: Params$deleteCoreV1CollectionPersistentVolume, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/persistentvolumes`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PersistentVolume */ + public async readCoreV1PersistentVolume(params: Params$readCoreV1PersistentVolume, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PersistentVolume */ + public async replaceCoreV1PersistentVolume(params: Params$replaceCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$replaceCoreV1PersistentVolume$Status$200 | Response$replaceCoreV1PersistentVolume$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PersistentVolume */ + public async deleteCoreV1PersistentVolume(params: Params$deleteCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$deleteCoreV1PersistentVolume$Status$200 | Response$deleteCoreV1PersistentVolume$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PersistentVolume */ + public async patchCoreV1PersistentVolume(params: Params$patchCoreV1PersistentVolume, option?: RequestOption): Promise<(Response$patchCoreV1PersistentVolume$Status$200 | Response$patchCoreV1PersistentVolume$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified PersistentVolume */ + public async readCoreV1PersistentVolumeStatus(params: Params$readCoreV1PersistentVolumeStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified PersistentVolume */ + public async replaceCoreV1PersistentVolumeStatus(params: Params$replaceCoreV1PersistentVolumeStatus, option?: RequestOption): Promise<(Response$replaceCoreV1PersistentVolumeStatus$Status$200 | Response$replaceCoreV1PersistentVolumeStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified PersistentVolume */ + public async patchCoreV1PersistentVolumeStatus(params: Params$patchCoreV1PersistentVolumeStatus, option?: RequestOption): Promise<(Response$patchCoreV1PersistentVolumeStatus$Status$200 | Response$patchCoreV1PersistentVolumeStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/api/v1/persistentvolumes/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Pod */ + public async listCoreV1PodForAllNamespaces(params: Params$listCoreV1PodForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/pods`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PodTemplate */ + public async listCoreV1PodTemplateForAllNamespaces(params: Params$listCoreV1PodTemplateForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/podtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ReplicationController */ + public async listCoreV1ReplicationControllerForAllNamespaces(params: Params$listCoreV1ReplicationControllerForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/replicationcontrollers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ResourceQuota */ + public async listCoreV1ResourceQuotaForAllNamespaces(params: Params$listCoreV1ResourceQuotaForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/resourcequotas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Secret */ + public async listCoreV1SecretForAllNamespaces(params: Params$listCoreV1SecretForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/secrets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ServiceAccount */ + public async listCoreV1ServiceAccountForAllNamespaces(params: Params$listCoreV1ServiceAccountForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/serviceaccounts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Service */ + public async listCoreV1ServiceForAllNamespaces(params: Params$listCoreV1ServiceForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/services`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1ConfigMapListForAllNamespaces(params: Params$watchCoreV1ConfigMapListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/configmaps`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1EndpointsListForAllNamespaces(params: Params$watchCoreV1EndpointsListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/endpoints`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1EventListForAllNamespaces(params: Params$watchCoreV1EventListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1LimitRangeListForAllNamespaces(params: Params$watchCoreV1LimitRangeListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/limitranges`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespaceList(params: Params$watchCoreV1NamespaceList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedConfigMapList(params: Params$watchCoreV1NamespacedConfigMapList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ConfigMap. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedConfigMap(params: Params$watchCoreV1NamespacedConfigMap, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/configmaps/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedEndpointsList(params: Params$watchCoreV1NamespacedEndpointsList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Endpoints. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedEndpoints(params: Params$watchCoreV1NamespacedEndpoints, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpoints/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedEventList(params: Params$watchCoreV1NamespacedEventList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedEvent(params: Params$watchCoreV1NamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedLimitRangeList(params: Params$watchCoreV1NamespacedLimitRangeList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind LimitRange. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedLimitRange(params: Params$watchCoreV1NamespacedLimitRange, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/limitranges/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedPersistentVolumeClaimList(params: Params$watchCoreV1NamespacedPersistentVolumeClaimList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedPersistentVolumeClaim(params: Params$watchCoreV1NamespacedPersistentVolumeClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/persistentvolumeclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedPodList(params: Params$watchCoreV1NamespacedPodList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Pod. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedPod(params: Params$watchCoreV1NamespacedPod, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/pods/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedPodTemplateList(params: Params$watchCoreV1NamespacedPodTemplateList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PodTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedPodTemplate(params: Params$watchCoreV1NamespacedPodTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedReplicationControllerList(params: Params$watchCoreV1NamespacedReplicationControllerList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ReplicationController. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedReplicationController(params: Params$watchCoreV1NamespacedReplicationController, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicationcontrollers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedResourceQuotaList(params: Params$watchCoreV1NamespacedResourceQuotaList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedResourceQuota(params: Params$watchCoreV1NamespacedResourceQuota, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourcequotas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedSecretList(params: Params$watchCoreV1NamespacedSecretList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Secret. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedSecret(params: Params$watchCoreV1NamespacedSecret, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/secrets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedServiceAccountList(params: Params$watchCoreV1NamespacedServiceAccountList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedServiceAccount(params: Params$watchCoreV1NamespacedServiceAccount, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/serviceaccounts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NamespacedServiceList(params: Params$watchCoreV1NamespacedServiceList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/services`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Service. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1NamespacedService(params: Params$watchCoreV1NamespacedService, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/services/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Namespace. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1Namespace(params: Params$watchCoreV1Namespace, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/namespaces/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1NodeList(params: Params$watchCoreV1NodeList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/nodes`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Node. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1Node(params: Params$watchCoreV1Node, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/nodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1PersistentVolumeClaimListForAllNamespaces(params: Params$watchCoreV1PersistentVolumeClaimListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/persistentvolumeclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1PersistentVolumeList(params: Params$watchCoreV1PersistentVolumeList, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/persistentvolumes`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoreV1PersistentVolume(params: Params$watchCoreV1PersistentVolume, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/persistentvolumes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1PodListForAllNamespaces(params: Params$watchCoreV1PodListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/pods`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1PodTemplateListForAllNamespaces(params: Params$watchCoreV1PodTemplateListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/podtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1ReplicationControllerListForAllNamespaces(params: Params$watchCoreV1ReplicationControllerListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/replicationcontrollers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1ResourceQuotaListForAllNamespaces(params: Params$watchCoreV1ResourceQuotaListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/resourcequotas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1SecretListForAllNamespaces(params: Params$watchCoreV1SecretListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/secrets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1ServiceAccountListForAllNamespaces(params: Params$watchCoreV1ServiceAccountListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/serviceaccounts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoreV1ServiceListForAllNamespaces(params: Params$watchCoreV1ServiceListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/api/v1/watch/services`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get available API versions */ + public async getAPIVersions(params: Params$getAPIVersions, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get information of a group */ + public async getAdmissionregistrationAPIGroup(params: Params$getAdmissionregistrationAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getAdmissionregistrationV1APIResources(params: Params$getAdmissionregistrationV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind MutatingWebhookConfiguration */ + public async listAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$listAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a MutatingWebhookConfiguration */ + public async createAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$createAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of MutatingWebhookConfiguration */ + public async deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified MutatingWebhookConfiguration */ + public async readAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$readAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified MutatingWebhookConfiguration */ + public async replaceAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$replaceAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1MutatingWebhookConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a MutatingWebhookConfiguration */ + public async deleteAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1MutatingWebhookConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified MutatingWebhookConfiguration */ + public async patchAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$patchAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 | Response$patchAdmissionregistrationV1MutatingWebhookConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ValidatingWebhookConfiguration */ + public async listAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$listAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ValidatingWebhookConfiguration */ + public async createAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$createAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201 | Response$createAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ValidatingWebhookConfiguration */ + public async deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ValidatingWebhookConfiguration */ + public async readAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$readAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ValidatingWebhookConfiguration */ + public async replaceAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$replaceAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$replaceAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ValidatingWebhookConfiguration */ + public async deleteAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$deleteAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$deleteAdmissionregistrationV1ValidatingWebhookConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ValidatingWebhookConfiguration */ + public async patchAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$patchAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 | Response$patchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAdmissionregistrationV1MutatingWebhookConfigurationList(params: Params$watchAdmissionregistrationV1MutatingWebhookConfigurationList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAdmissionregistrationV1MutatingWebhookConfiguration(params: Params$watchAdmissionregistrationV1MutatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAdmissionregistrationV1ValidatingWebhookConfigurationList(params: Params$watchAdmissionregistrationV1ValidatingWebhookConfigurationList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAdmissionregistrationV1ValidatingWebhookConfiguration(params: Params$watchAdmissionregistrationV1ValidatingWebhookConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getAdmissionregistrationV1alpha1APIResources(params: Params$getAdmissionregistrationV1alpha1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind ValidatingAdmissionPolicy */ + public async listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(params: Params$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ValidatingAdmissionPolicy */ + public async createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(params: Params$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ValidatingAdmissionPolicy */ + public async deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy(params: Params$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ValidatingAdmissionPolicy */ + public async readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(params: Params$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ValidatingAdmissionPolicy */ + public async replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(params: Params$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ValidatingAdmissionPolicy */ + public async deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(params: Params$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ValidatingAdmissionPolicy */ + public async patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(params: Params$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified ValidatingAdmissionPolicy */ + public async readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus(params: Params$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified ValidatingAdmissionPolicy */ + public async replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus(params: Params$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified ValidatingAdmissionPolicy */ + public async patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus(params: Params$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ValidatingAdmissionPolicyBinding */ + public async listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(params: Params$listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ValidatingAdmissionPolicyBinding */ + public async createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(params: Params$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201 | Response$createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ValidatingAdmissionPolicyBinding */ + public async deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding(params: Params$deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ValidatingAdmissionPolicyBinding */ + public async readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(params: Params$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ValidatingAdmissionPolicyBinding */ + public async replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(params: Params$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ValidatingAdmissionPolicyBinding */ + public async deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(params: Params$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ValidatingAdmissionPolicyBinding */ + public async patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(params: Params$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 | Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList(params: Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(params: Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList(params: Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicybindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(params: Params$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getAdmissionregistrationV1beta1APIResources(params: Params$getAdmissionregistrationV1beta1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind ValidatingAdmissionPolicy */ + public async listAdmissionregistrationV1beta1ValidatingAdmissionPolicy(params: Params$listAdmissionregistrationV1beta1ValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ValidatingAdmissionPolicy */ + public async createAdmissionregistrationV1beta1ValidatingAdmissionPolicy(params: Params$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ValidatingAdmissionPolicy */ + public async deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy(params: Params$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ValidatingAdmissionPolicy */ + public async readAdmissionregistrationV1beta1ValidatingAdmissionPolicy(params: Params$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ValidatingAdmissionPolicy */ + public async replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy(params: Params$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ValidatingAdmissionPolicy */ + public async deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy(params: Params$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ValidatingAdmissionPolicy */ + public async patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy(params: Params$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified ValidatingAdmissionPolicy */ + public async readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus(params: Params$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified ValidatingAdmissionPolicy */ + public async replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus(params: Params$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified ValidatingAdmissionPolicy */ + public async patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus(params: Params$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ValidatingAdmissionPolicyBinding */ + public async listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(params: Params$listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ValidatingAdmissionPolicyBinding */ + public async createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(params: Params$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201 | Response$createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ValidatingAdmissionPolicyBinding */ + public async deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding(params: Params$deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ValidatingAdmissionPolicyBinding */ + public async readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(params: Params$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ValidatingAdmissionPolicyBinding */ + public async replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(params: Params$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ValidatingAdmissionPolicyBinding */ + public async deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(params: Params$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ValidatingAdmissionPolicyBinding */ + public async patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(params: Params$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise<(Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 | Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList(params: Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy(params: Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList(params: Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicybindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(params: Params$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicybindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getApiextensionsAPIGroup(params: Params$getApiextensionsAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getApiextensionsV1APIResources(params: Params$getApiextensionsV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind CustomResourceDefinition */ + public async listApiextensionsV1CustomResourceDefinition(params: Params$listApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a CustomResourceDefinition */ + public async createApiextensionsV1CustomResourceDefinition(params: Params$createApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$createApiextensionsV1CustomResourceDefinition$Status$200 | Response$createApiextensionsV1CustomResourceDefinition$Status$201 | Response$createApiextensionsV1CustomResourceDefinition$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of CustomResourceDefinition */ + public async deleteApiextensionsV1CollectionCustomResourceDefinition(params: Params$deleteApiextensionsV1CollectionCustomResourceDefinition, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified CustomResourceDefinition */ + public async readApiextensionsV1CustomResourceDefinition(params: Params$readApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified CustomResourceDefinition */ + public async replaceApiextensionsV1CustomResourceDefinition(params: Params$replaceApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$replaceApiextensionsV1CustomResourceDefinition$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinition$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a CustomResourceDefinition */ + public async deleteApiextensionsV1CustomResourceDefinition(params: Params$deleteApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$deleteApiextensionsV1CustomResourceDefinition$Status$200 | Response$deleteApiextensionsV1CustomResourceDefinition$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified CustomResourceDefinition */ + public async patchApiextensionsV1CustomResourceDefinition(params: Params$patchApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise<(Response$patchApiextensionsV1CustomResourceDefinition$Status$200 | Response$patchApiextensionsV1CustomResourceDefinition$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified CustomResourceDefinition */ + public async readApiextensionsV1CustomResourceDefinitionStatus(params: Params$readApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified CustomResourceDefinition */ + public async replaceApiextensionsV1CustomResourceDefinitionStatus(params: Params$replaceApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise<(Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$200 | Response$replaceApiextensionsV1CustomResourceDefinitionStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified CustomResourceDefinition */ + public async patchApiextensionsV1CustomResourceDefinitionStatus(params: Params$patchApiextensionsV1CustomResourceDefinitionStatus, option?: RequestOption): Promise<(Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$200 | Response$patchApiextensionsV1CustomResourceDefinitionStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchApiextensionsV1CustomResourceDefinitionList(params: Params$watchApiextensionsV1CustomResourceDefinitionList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchApiextensionsV1CustomResourceDefinition(params: Params$watchApiextensionsV1CustomResourceDefinition, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getApiregistrationAPIGroup(params: Params$getApiregistrationAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getApiregistrationV1APIResources(params: Params$getApiregistrationV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind APIService */ + public async listApiregistrationV1APIService(params: Params$listApiregistrationV1APIService, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create an APIService */ + public async createApiregistrationV1APIService(params: Params$createApiregistrationV1APIService, option?: RequestOption): Promise<(Response$createApiregistrationV1APIService$Status$200 | Response$createApiregistrationV1APIService$Status$201 | Response$createApiregistrationV1APIService$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of APIService */ + public async deleteApiregistrationV1CollectionAPIService(params: Params$deleteApiregistrationV1CollectionAPIService, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified APIService */ + public async readApiregistrationV1APIService(params: Params$readApiregistrationV1APIService, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified APIService */ + public async replaceApiregistrationV1APIService(params: Params$replaceApiregistrationV1APIService, option?: RequestOption): Promise<(Response$replaceApiregistrationV1APIService$Status$200 | Response$replaceApiregistrationV1APIService$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete an APIService */ + public async deleteApiregistrationV1APIService(params: Params$deleteApiregistrationV1APIService, option?: RequestOption): Promise<(Response$deleteApiregistrationV1APIService$Status$200 | Response$deleteApiregistrationV1APIService$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified APIService */ + public async patchApiregistrationV1APIService(params: Params$patchApiregistrationV1APIService, option?: RequestOption): Promise<(Response$patchApiregistrationV1APIService$Status$200 | Response$patchApiregistrationV1APIService$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified APIService */ + public async readApiregistrationV1APIServiceStatus(params: Params$readApiregistrationV1APIServiceStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified APIService */ + public async replaceApiregistrationV1APIServiceStatus(params: Params$replaceApiregistrationV1APIServiceStatus, option?: RequestOption): Promise<(Response$replaceApiregistrationV1APIServiceStatus$Status$200 | Response$replaceApiregistrationV1APIServiceStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified APIService */ + public async patchApiregistrationV1APIServiceStatus(params: Params$patchApiregistrationV1APIServiceStatus, option?: RequestOption): Promise<(Response$patchApiregistrationV1APIServiceStatus$Status$200 | Response$patchApiregistrationV1APIServiceStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/apiservices/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchApiregistrationV1APIServiceList(params: Params$watchApiregistrationV1APIServiceList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/watch/apiservices`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind APIService. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchApiregistrationV1APIService(params: Params$watchApiregistrationV1APIService, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apiregistration.k8s.io/v1/watch/apiservices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getAppsAPIGroup(params: Params$getAppsAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getAppsV1APIResources(params: Params$getAppsV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind ControllerRevision */ + public async listAppsV1ControllerRevisionForAllNamespaces(params: Params$listAppsV1ControllerRevisionForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/controllerrevisions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind DaemonSet */ + public async listAppsV1DaemonSetForAllNamespaces(params: Params$listAppsV1DaemonSetForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/daemonsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Deployment */ + public async listAppsV1DeploymentForAllNamespaces(params: Params$listAppsV1DeploymentForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/deployments`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ControllerRevision */ + public async listAppsV1NamespacedControllerRevision(params: Params$listAppsV1NamespacedControllerRevision, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ControllerRevision */ + public async createAppsV1NamespacedControllerRevision(params: Params$createAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$createAppsV1NamespacedControllerRevision$Status$200 | Response$createAppsV1NamespacedControllerRevision$Status$201 | Response$createAppsV1NamespacedControllerRevision$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ControllerRevision */ + public async deleteAppsV1CollectionNamespacedControllerRevision(params: Params$deleteAppsV1CollectionNamespacedControllerRevision, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ControllerRevision */ + public async readAppsV1NamespacedControllerRevision(params: Params$readAppsV1NamespacedControllerRevision, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ControllerRevision */ + public async replaceAppsV1NamespacedControllerRevision(params: Params$replaceAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedControllerRevision$Status$200 | Response$replaceAppsV1NamespacedControllerRevision$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ControllerRevision */ + public async deleteAppsV1NamespacedControllerRevision(params: Params$deleteAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedControllerRevision$Status$200 | Response$deleteAppsV1NamespacedControllerRevision$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ControllerRevision */ + public async patchAppsV1NamespacedControllerRevision(params: Params$patchAppsV1NamespacedControllerRevision, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedControllerRevision$Status$200 | Response$patchAppsV1NamespacedControllerRevision$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind DaemonSet */ + public async listAppsV1NamespacedDaemonSet(params: Params$listAppsV1NamespacedDaemonSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a DaemonSet */ + public async createAppsV1NamespacedDaemonSet(params: Params$createAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedDaemonSet$Status$200 | Response$createAppsV1NamespacedDaemonSet$Status$201 | Response$createAppsV1NamespacedDaemonSet$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of DaemonSet */ + public async deleteAppsV1CollectionNamespacedDaemonSet(params: Params$deleteAppsV1CollectionNamespacedDaemonSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified DaemonSet */ + public async readAppsV1NamespacedDaemonSet(params: Params$readAppsV1NamespacedDaemonSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified DaemonSet */ + public async replaceAppsV1NamespacedDaemonSet(params: Params$replaceAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDaemonSet$Status$200 | Response$replaceAppsV1NamespacedDaemonSet$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a DaemonSet */ + public async deleteAppsV1NamespacedDaemonSet(params: Params$deleteAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedDaemonSet$Status$200 | Response$deleteAppsV1NamespacedDaemonSet$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified DaemonSet */ + public async patchAppsV1NamespacedDaemonSet(params: Params$patchAppsV1NamespacedDaemonSet, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedDaemonSet$Status$200 | Response$patchAppsV1NamespacedDaemonSet$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified DaemonSet */ + public async readAppsV1NamespacedDaemonSetStatus(params: Params$readAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified DaemonSet */ + public async replaceAppsV1NamespacedDaemonSetStatus(params: Params$replaceAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 | Response$replaceAppsV1NamespacedDaemonSetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified DaemonSet */ + public async patchAppsV1NamespacedDaemonSetStatus(params: Params$patchAppsV1NamespacedDaemonSetStatus, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 | Response$patchAppsV1NamespacedDaemonSetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Deployment */ + public async listAppsV1NamespacedDeployment(params: Params$listAppsV1NamespacedDeployment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Deployment */ + public async createAppsV1NamespacedDeployment(params: Params$createAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$createAppsV1NamespacedDeployment$Status$200 | Response$createAppsV1NamespacedDeployment$Status$201 | Response$createAppsV1NamespacedDeployment$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Deployment */ + public async deleteAppsV1CollectionNamespacedDeployment(params: Params$deleteAppsV1CollectionNamespacedDeployment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Deployment */ + public async readAppsV1NamespacedDeployment(params: Params$readAppsV1NamespacedDeployment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Deployment */ + public async replaceAppsV1NamespacedDeployment(params: Params$replaceAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeployment$Status$200 | Response$replaceAppsV1NamespacedDeployment$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Deployment */ + public async deleteAppsV1NamespacedDeployment(params: Params$deleteAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedDeployment$Status$200 | Response$deleteAppsV1NamespacedDeployment$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Deployment */ + public async patchAppsV1NamespacedDeployment(params: Params$patchAppsV1NamespacedDeployment, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedDeployment$Status$200 | Response$patchAppsV1NamespacedDeployment$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read scale of the specified Deployment */ + public async readAppsV1NamespacedDeploymentScale(params: Params$readAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace scale of the specified Deployment */ + public async replaceAppsV1NamespacedDeploymentScale(params: Params$replaceAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeploymentScale$Status$200 | Response$replaceAppsV1NamespacedDeploymentScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update scale of the specified Deployment */ + public async patchAppsV1NamespacedDeploymentScale(params: Params$patchAppsV1NamespacedDeploymentScale, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedDeploymentScale$Status$200 | Response$patchAppsV1NamespacedDeploymentScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified Deployment */ + public async readAppsV1NamespacedDeploymentStatus(params: Params$readAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified Deployment */ + public async replaceAppsV1NamespacedDeploymentStatus(params: Params$replaceAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 | Response$replaceAppsV1NamespacedDeploymentStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified Deployment */ + public async patchAppsV1NamespacedDeploymentStatus(params: Params$patchAppsV1NamespacedDeploymentStatus, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedDeploymentStatus$Status$200 | Response$patchAppsV1NamespacedDeploymentStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ReplicaSet */ + public async listAppsV1NamespacedReplicaSet(params: Params$listAppsV1NamespacedReplicaSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ReplicaSet */ + public async createAppsV1NamespacedReplicaSet(params: Params$createAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedReplicaSet$Status$200 | Response$createAppsV1NamespacedReplicaSet$Status$201 | Response$createAppsV1NamespacedReplicaSet$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ReplicaSet */ + public async deleteAppsV1CollectionNamespacedReplicaSet(params: Params$deleteAppsV1CollectionNamespacedReplicaSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ReplicaSet */ + public async readAppsV1NamespacedReplicaSet(params: Params$readAppsV1NamespacedReplicaSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ReplicaSet */ + public async replaceAppsV1NamespacedReplicaSet(params: Params$replaceAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSet$Status$200 | Response$replaceAppsV1NamespacedReplicaSet$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ReplicaSet */ + public async deleteAppsV1NamespacedReplicaSet(params: Params$deleteAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedReplicaSet$Status$200 | Response$deleteAppsV1NamespacedReplicaSet$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ReplicaSet */ + public async patchAppsV1NamespacedReplicaSet(params: Params$patchAppsV1NamespacedReplicaSet, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedReplicaSet$Status$200 | Response$patchAppsV1NamespacedReplicaSet$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read scale of the specified ReplicaSet */ + public async readAppsV1NamespacedReplicaSetScale(params: Params$readAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace scale of the specified ReplicaSet */ + public async replaceAppsV1NamespacedReplicaSetScale(params: Params$replaceAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 | Response$replaceAppsV1NamespacedReplicaSetScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update scale of the specified ReplicaSet */ + public async patchAppsV1NamespacedReplicaSetScale(params: Params$patchAppsV1NamespacedReplicaSetScale, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedReplicaSetScale$Status$200 | Response$patchAppsV1NamespacedReplicaSetScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified ReplicaSet */ + public async readAppsV1NamespacedReplicaSetStatus(params: Params$readAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified ReplicaSet */ + public async replaceAppsV1NamespacedReplicaSetStatus(params: Params$replaceAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 | Response$replaceAppsV1NamespacedReplicaSetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified ReplicaSet */ + public async patchAppsV1NamespacedReplicaSetStatus(params: Params$patchAppsV1NamespacedReplicaSetStatus, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 | Response$patchAppsV1NamespacedReplicaSetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind StatefulSet */ + public async listAppsV1NamespacedStatefulSet(params: Params$listAppsV1NamespacedStatefulSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a StatefulSet */ + public async createAppsV1NamespacedStatefulSet(params: Params$createAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$createAppsV1NamespacedStatefulSet$Status$200 | Response$createAppsV1NamespacedStatefulSet$Status$201 | Response$createAppsV1NamespacedStatefulSet$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of StatefulSet */ + public async deleteAppsV1CollectionNamespacedStatefulSet(params: Params$deleteAppsV1CollectionNamespacedStatefulSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified StatefulSet */ + public async readAppsV1NamespacedStatefulSet(params: Params$readAppsV1NamespacedStatefulSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified StatefulSet */ + public async replaceAppsV1NamespacedStatefulSet(params: Params$replaceAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSet$Status$200 | Response$replaceAppsV1NamespacedStatefulSet$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a StatefulSet */ + public async deleteAppsV1NamespacedStatefulSet(params: Params$deleteAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$deleteAppsV1NamespacedStatefulSet$Status$200 | Response$deleteAppsV1NamespacedStatefulSet$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified StatefulSet */ + public async patchAppsV1NamespacedStatefulSet(params: Params$patchAppsV1NamespacedStatefulSet, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedStatefulSet$Status$200 | Response$patchAppsV1NamespacedStatefulSet$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read scale of the specified StatefulSet */ + public async readAppsV1NamespacedStatefulSetScale(params: Params$readAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace scale of the specified StatefulSet */ + public async replaceAppsV1NamespacedStatefulSetScale(params: Params$replaceAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 | Response$replaceAppsV1NamespacedStatefulSetScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update scale of the specified StatefulSet */ + public async patchAppsV1NamespacedStatefulSetScale(params: Params$patchAppsV1NamespacedStatefulSetScale, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedStatefulSetScale$Status$200 | Response$patchAppsV1NamespacedStatefulSetScale$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/scale`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified StatefulSet */ + public async readAppsV1NamespacedStatefulSetStatus(params: Params$readAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified StatefulSet */ + public async replaceAppsV1NamespacedStatefulSetStatus(params: Params$replaceAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise<(Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 | Response$replaceAppsV1NamespacedStatefulSetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified StatefulSet */ + public async patchAppsV1NamespacedStatefulSetStatus(params: Params$patchAppsV1NamespacedStatefulSetStatus, option?: RequestOption): Promise<(Response$patchAppsV1NamespacedStatefulSetStatus$Status$200 | Response$patchAppsV1NamespacedStatefulSetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/apps/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ReplicaSet */ + public async listAppsV1ReplicaSetForAllNamespaces(params: Params$listAppsV1ReplicaSetForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/replicasets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind StatefulSet */ + public async listAppsV1StatefulSetForAllNamespaces(params: Params$listAppsV1StatefulSetForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/statefulsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1ControllerRevisionListForAllNamespaces(params: Params$watchAppsV1ControllerRevisionListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/controllerrevisions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1DaemonSetListForAllNamespaces(params: Params$watchAppsV1DaemonSetListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/daemonsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1DeploymentListForAllNamespaces(params: Params$watchAppsV1DeploymentListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/deployments`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1NamespacedControllerRevisionList(params: Params$watchAppsV1NamespacedControllerRevisionList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAppsV1NamespacedControllerRevision(params: Params$watchAppsV1NamespacedControllerRevision, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/controllerrevisions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1NamespacedDaemonSetList(params: Params$watchAppsV1NamespacedDaemonSetList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind DaemonSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAppsV1NamespacedDaemonSet(params: Params$watchAppsV1NamespacedDaemonSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/daemonsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1NamespacedDeploymentList(params: Params$watchAppsV1NamespacedDeploymentList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Deployment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAppsV1NamespacedDeployment(params: Params$watchAppsV1NamespacedDeployment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/deployments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1NamespacedReplicaSetList(params: Params$watchAppsV1NamespacedReplicaSetList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAppsV1NamespacedReplicaSet(params: Params$watchAppsV1NamespacedReplicaSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/replicasets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1NamespacedStatefulSetList(params: Params$watchAppsV1NamespacedStatefulSetList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind StatefulSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAppsV1NamespacedStatefulSet(params: Params$watchAppsV1NamespacedStatefulSet, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/statefulsets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1ReplicaSetListForAllNamespaces(params: Params$watchAppsV1ReplicaSetListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/replicasets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAppsV1StatefulSetListForAllNamespaces(params: Params$watchAppsV1StatefulSetListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/apps/v1/watch/statefulsets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getAuthenticationAPIGroup(params: Params$getAuthenticationAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/authentication.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getAuthenticationV1APIResources(params: Params$getAuthenticationV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/authentication.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** create a SelfSubjectReview */ + public async createAuthenticationV1SelfSubjectReview(params: Params$createAuthenticationV1SelfSubjectReview, option?: RequestOption): Promise<(Response$createAuthenticationV1SelfSubjectReview$Status$200 | Response$createAuthenticationV1SelfSubjectReview$Status$201 | Response$createAuthenticationV1SelfSubjectReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authentication.k8s.io/v1/selfsubjectreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** create a TokenReview */ + public async createAuthenticationV1TokenReview(params: Params$createAuthenticationV1TokenReview, option?: RequestOption): Promise<(Response$createAuthenticationV1TokenReview$Status$200 | Response$createAuthenticationV1TokenReview$Status$201 | Response$createAuthenticationV1TokenReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authentication.k8s.io/v1/tokenreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getAuthenticationV1alpha1APIResources(params: Params$getAuthenticationV1alpha1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/authentication.k8s.io/v1alpha1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** create a SelfSubjectReview */ + public async createAuthenticationV1alpha1SelfSubjectReview(params: Params$createAuthenticationV1alpha1SelfSubjectReview, option?: RequestOption): Promise<(Response$createAuthenticationV1alpha1SelfSubjectReview$Status$200 | Response$createAuthenticationV1alpha1SelfSubjectReview$Status$201 | Response$createAuthenticationV1alpha1SelfSubjectReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authentication.k8s.io/v1alpha1/selfsubjectreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getAuthenticationV1beta1APIResources(params: Params$getAuthenticationV1beta1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/authentication.k8s.io/v1beta1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** create a SelfSubjectReview */ + public async createAuthenticationV1beta1SelfSubjectReview(params: Params$createAuthenticationV1beta1SelfSubjectReview, option?: RequestOption): Promise<(Response$createAuthenticationV1beta1SelfSubjectReview$Status$200 | Response$createAuthenticationV1beta1SelfSubjectReview$Status$201 | Response$createAuthenticationV1beta1SelfSubjectReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authentication.k8s.io/v1beta1/selfsubjectreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getAuthorizationAPIGroup(params: Params$getAuthorizationAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/authorization.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getAuthorizationV1APIResources(params: Params$getAuthorizationV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** create a LocalSubjectAccessReview */ + public async createAuthorizationV1NamespacedLocalSubjectAccessReview(params: Params$createAuthorizationV1NamespacedLocalSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$200 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$201 | Response$createAuthorizationV1NamespacedLocalSubjectAccessReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/localsubjectaccessreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** create a SelfSubjectAccessReview */ + public async createAuthorizationV1SelfSubjectAccessReview(params: Params$createAuthorizationV1SelfSubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SelfSubjectAccessReview$Status$200 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$201 | Response$createAuthorizationV1SelfSubjectAccessReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/selfsubjectaccessreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** create a SelfSubjectRulesReview */ + public async createAuthorizationV1SelfSubjectRulesReview(params: Params$createAuthorizationV1SelfSubjectRulesReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SelfSubjectRulesReview$Status$200 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$201 | Response$createAuthorizationV1SelfSubjectRulesReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/selfsubjectrulesreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** create a SubjectAccessReview */ + public async createAuthorizationV1SubjectAccessReview(params: Params$createAuthorizationV1SubjectAccessReview, option?: RequestOption): Promise<(Response$createAuthorizationV1SubjectAccessReview$Status$200 | Response$createAuthorizationV1SubjectAccessReview$Status$201 | Response$createAuthorizationV1SubjectAccessReview$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/authorization.k8s.io/v1/subjectaccessreviews`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getAutoscalingAPIGroup(params: Params$getAutoscalingAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getAutoscalingV1APIResources(params: Params$getAutoscalingV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind HorizontalPodAutoscaler */ + public async listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(params: Params$listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind HorizontalPodAutoscaler */ + public async listAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$listAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a HorizontalPodAutoscaler */ + public async createAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$createAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of HorizontalPodAutoscaler */ + public async deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified HorizontalPodAutoscaler */ + public async readAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$readAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified HorizontalPodAutoscaler */ + public async replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a HorizontalPodAutoscaler */ + public async deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified HorizontalPodAutoscaler */ + public async patchAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$patchAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 | Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified HorizontalPodAutoscaler */ + public async readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(params: Params$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified HorizontalPodAutoscaler */ + public async replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(params: Params$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified HorizontalPodAutoscaler */ + public async patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(params: Params$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(params: Params$watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/watch/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(params: Params$watchAutoscalingV1NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAutoscalingV1NamespacedHorizontalPodAutoscaler(params: Params$watchAutoscalingV1NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getAutoscalingV2APIResources(params: Params$getAutoscalingV2APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind HorizontalPodAutoscaler */ + public async listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces(params: Params$listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind HorizontalPodAutoscaler */ + public async listAutoscalingV2NamespacedHorizontalPodAutoscaler(params: Params$listAutoscalingV2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a HorizontalPodAutoscaler */ + public async createAutoscalingV2NamespacedHorizontalPodAutoscaler(params: Params$createAutoscalingV2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201 | Response$createAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of HorizontalPodAutoscaler */ + public async deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified HorizontalPodAutoscaler */ + public async readAutoscalingV2NamespacedHorizontalPodAutoscaler(params: Params$readAutoscalingV2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified HorizontalPodAutoscaler */ + public async replaceAutoscalingV2NamespacedHorizontalPodAutoscaler(params: Params$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a HorizontalPodAutoscaler */ + public async deleteAutoscalingV2NamespacedHorizontalPodAutoscaler(params: Params$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified HorizontalPodAutoscaler */ + public async patchAutoscalingV2NamespacedHorizontalPodAutoscaler(params: Params$patchAutoscalingV2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise<(Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 | Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified HorizontalPodAutoscaler */ + public async readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus(params: Params$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified HorizontalPodAutoscaler */ + public async replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus(params: Params$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified HorizontalPodAutoscaler */ + public async patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus(params: Params$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus, option?: RequestOption): Promise<(Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 | Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/autoscaling/v2/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces(params: Params$watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/watch/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchAutoscalingV2NamespacedHorizontalPodAutoscalerList(params: Params$watchAutoscalingV2NamespacedHorizontalPodAutoscalerList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchAutoscalingV2NamespacedHorizontalPodAutoscaler(params: Params$watchAutoscalingV2NamespacedHorizontalPodAutoscaler, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/autoscaling/v2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/horizontalpodautoscalers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getBatchAPIGroup(params: Params$getBatchAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getBatchV1APIResources(params: Params$getBatchV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind CronJob */ + public async listBatchV1CronJobForAllNamespaces(params: Params$listBatchV1CronJobForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/cronjobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Job */ + public async listBatchV1JobForAllNamespaces(params: Params$listBatchV1JobForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/jobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind CronJob */ + public async listBatchV1NamespacedCronJob(params: Params$listBatchV1NamespacedCronJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a CronJob */ + public async createBatchV1NamespacedCronJob(params: Params$createBatchV1NamespacedCronJob, option?: RequestOption): Promise<(Response$createBatchV1NamespacedCronJob$Status$200 | Response$createBatchV1NamespacedCronJob$Status$201 | Response$createBatchV1NamespacedCronJob$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of CronJob */ + public async deleteBatchV1CollectionNamespacedCronJob(params: Params$deleteBatchV1CollectionNamespacedCronJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified CronJob */ + public async readBatchV1NamespacedCronJob(params: Params$readBatchV1NamespacedCronJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified CronJob */ + public async replaceBatchV1NamespacedCronJob(params: Params$replaceBatchV1NamespacedCronJob, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedCronJob$Status$200 | Response$replaceBatchV1NamespacedCronJob$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a CronJob */ + public async deleteBatchV1NamespacedCronJob(params: Params$deleteBatchV1NamespacedCronJob, option?: RequestOption): Promise<(Response$deleteBatchV1NamespacedCronJob$Status$200 | Response$deleteBatchV1NamespacedCronJob$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified CronJob */ + public async patchBatchV1NamespacedCronJob(params: Params$patchBatchV1NamespacedCronJob, option?: RequestOption): Promise<(Response$patchBatchV1NamespacedCronJob$Status$200 | Response$patchBatchV1NamespacedCronJob$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified CronJob */ + public async readBatchV1NamespacedCronJobStatus(params: Params$readBatchV1NamespacedCronJobStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified CronJob */ + public async replaceBatchV1NamespacedCronJobStatus(params: Params$replaceBatchV1NamespacedCronJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedCronJobStatus$Status$200 | Response$replaceBatchV1NamespacedCronJobStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified CronJob */ + public async patchBatchV1NamespacedCronJobStatus(params: Params$patchBatchV1NamespacedCronJobStatus, option?: RequestOption): Promise<(Response$patchBatchV1NamespacedCronJobStatus$Status$200 | Response$patchBatchV1NamespacedCronJobStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Job */ + public async listBatchV1NamespacedJob(params: Params$listBatchV1NamespacedJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Job */ + public async createBatchV1NamespacedJob(params: Params$createBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$createBatchV1NamespacedJob$Status$200 | Response$createBatchV1NamespacedJob$Status$201 | Response$createBatchV1NamespacedJob$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Job */ + public async deleteBatchV1CollectionNamespacedJob(params: Params$deleteBatchV1CollectionNamespacedJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Job */ + public async readBatchV1NamespacedJob(params: Params$readBatchV1NamespacedJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Job */ + public async replaceBatchV1NamespacedJob(params: Params$replaceBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedJob$Status$200 | Response$replaceBatchV1NamespacedJob$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Job */ + public async deleteBatchV1NamespacedJob(params: Params$deleteBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$deleteBatchV1NamespacedJob$Status$200 | Response$deleteBatchV1NamespacedJob$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Job */ + public async patchBatchV1NamespacedJob(params: Params$patchBatchV1NamespacedJob, option?: RequestOption): Promise<(Response$patchBatchV1NamespacedJob$Status$200 | Response$patchBatchV1NamespacedJob$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified Job */ + public async readBatchV1NamespacedJobStatus(params: Params$readBatchV1NamespacedJobStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified Job */ + public async replaceBatchV1NamespacedJobStatus(params: Params$replaceBatchV1NamespacedJobStatus, option?: RequestOption): Promise<(Response$replaceBatchV1NamespacedJobStatus$Status$200 | Response$replaceBatchV1NamespacedJobStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified Job */ + public async patchBatchV1NamespacedJobStatus(params: Params$patchBatchV1NamespacedJobStatus, option?: RequestOption): Promise<(Response$patchBatchV1NamespacedJobStatus$Status$200 | Response$patchBatchV1NamespacedJobStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/batch/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchBatchV1CronJobListForAllNamespaces(params: Params$watchBatchV1CronJobListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/watch/cronjobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchBatchV1JobListForAllNamespaces(params: Params$watchBatchV1JobListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/watch/jobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchBatchV1NamespacedCronJobList(params: Params$watchBatchV1NamespacedCronJobList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchBatchV1NamespacedCronJob(params: Params$watchBatchV1NamespacedCronJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/cronjobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchBatchV1NamespacedJobList(params: Params$watchBatchV1NamespacedJobList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Job. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchBatchV1NamespacedJob(params: Params$watchBatchV1NamespacedJob, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/batch/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/jobs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getCertificatesAPIGroup(params: Params$getCertificatesAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getCertificatesV1APIResources(params: Params$getCertificatesV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind CertificateSigningRequest */ + public async listCertificatesV1CertificateSigningRequest(params: Params$listCertificatesV1CertificateSigningRequest, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a CertificateSigningRequest */ + public async createCertificatesV1CertificateSigningRequest(params: Params$createCertificatesV1CertificateSigningRequest, option?: RequestOption): Promise<(Response$createCertificatesV1CertificateSigningRequest$Status$200 | Response$createCertificatesV1CertificateSigningRequest$Status$201 | Response$createCertificatesV1CertificateSigningRequest$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of CertificateSigningRequest */ + public async deleteCertificatesV1CollectionCertificateSigningRequest(params: Params$deleteCertificatesV1CollectionCertificateSigningRequest, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified CertificateSigningRequest */ + public async readCertificatesV1CertificateSigningRequest(params: Params$readCertificatesV1CertificateSigningRequest, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified CertificateSigningRequest */ + public async replaceCertificatesV1CertificateSigningRequest(params: Params$replaceCertificatesV1CertificateSigningRequest, option?: RequestOption): Promise<(Response$replaceCertificatesV1CertificateSigningRequest$Status$200 | Response$replaceCertificatesV1CertificateSigningRequest$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a CertificateSigningRequest */ + public async deleteCertificatesV1CertificateSigningRequest(params: Params$deleteCertificatesV1CertificateSigningRequest, option?: RequestOption): Promise<(Response$deleteCertificatesV1CertificateSigningRequest$Status$200 | Response$deleteCertificatesV1CertificateSigningRequest$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified CertificateSigningRequest */ + public async patchCertificatesV1CertificateSigningRequest(params: Params$patchCertificatesV1CertificateSigningRequest, option?: RequestOption): Promise<(Response$patchCertificatesV1CertificateSigningRequest$Status$200 | Response$patchCertificatesV1CertificateSigningRequest$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read approval of the specified CertificateSigningRequest */ + public async readCertificatesV1CertificateSigningRequestApproval(params: Params$readCertificatesV1CertificateSigningRequestApproval, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/approval`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace approval of the specified CertificateSigningRequest */ + public async replaceCertificatesV1CertificateSigningRequestApproval(params: Params$replaceCertificatesV1CertificateSigningRequestApproval, option?: RequestOption): Promise<(Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$200 | Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/approval`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update approval of the specified CertificateSigningRequest */ + public async patchCertificatesV1CertificateSigningRequestApproval(params: Params$patchCertificatesV1CertificateSigningRequestApproval, option?: RequestOption): Promise<(Response$patchCertificatesV1CertificateSigningRequestApproval$Status$200 | Response$patchCertificatesV1CertificateSigningRequestApproval$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/approval`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified CertificateSigningRequest */ + public async readCertificatesV1CertificateSigningRequestStatus(params: Params$readCertificatesV1CertificateSigningRequestStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified CertificateSigningRequest */ + public async replaceCertificatesV1CertificateSigningRequestStatus(params: Params$replaceCertificatesV1CertificateSigningRequestStatus, option?: RequestOption): Promise<(Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$200 | Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified CertificateSigningRequest */ + public async patchCertificatesV1CertificateSigningRequestStatus(params: Params$patchCertificatesV1CertificateSigningRequestStatus, option?: RequestOption): Promise<(Response$patchCertificatesV1CertificateSigningRequestStatus$Status$200 | Response$patchCertificatesV1CertificateSigningRequestStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCertificatesV1CertificateSigningRequestList(params: Params$watchCertificatesV1CertificateSigningRequestList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/watch/certificatesigningrequests`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCertificatesV1CertificateSigningRequest(params: Params$watchCertificatesV1CertificateSigningRequest, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1/watch/certificatesigningrequests/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getCertificatesV1alpha1APIResources(params: Params$getCertificatesV1alpha1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind ClusterTrustBundle */ + public async listCertificatesV1alpha1ClusterTrustBundle(params: Params$listCertificatesV1alpha1ClusterTrustBundle, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/clustertrustbundles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ClusterTrustBundle */ + public async createCertificatesV1alpha1ClusterTrustBundle(params: Params$createCertificatesV1alpha1ClusterTrustBundle, option?: RequestOption): Promise<(Response$createCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$createCertificatesV1alpha1ClusterTrustBundle$Status$201 | Response$createCertificatesV1alpha1ClusterTrustBundle$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/clustertrustbundles`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ClusterTrustBundle */ + public async deleteCertificatesV1alpha1CollectionClusterTrustBundle(params: Params$deleteCertificatesV1alpha1CollectionClusterTrustBundle, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/clustertrustbundles`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ClusterTrustBundle */ + public async readCertificatesV1alpha1ClusterTrustBundle(params: Params$readCertificatesV1alpha1ClusterTrustBundle, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/clustertrustbundles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ClusterTrustBundle */ + public async replaceCertificatesV1alpha1ClusterTrustBundle(params: Params$replaceCertificatesV1alpha1ClusterTrustBundle, option?: RequestOption): Promise<(Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/clustertrustbundles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ClusterTrustBundle */ + public async deleteCertificatesV1alpha1ClusterTrustBundle(params: Params$deleteCertificatesV1alpha1ClusterTrustBundle, option?: RequestOption): Promise<(Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/clustertrustbundles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ClusterTrustBundle */ + public async patchCertificatesV1alpha1ClusterTrustBundle(params: Params$patchCertificatesV1alpha1ClusterTrustBundle, option?: RequestOption): Promise<(Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$200 | Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/clustertrustbundles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ClusterTrustBundle. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCertificatesV1alpha1ClusterTrustBundleList(params: Params$watchCertificatesV1alpha1ClusterTrustBundleList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/watch/clustertrustbundles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ClusterTrustBundle. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCertificatesV1alpha1ClusterTrustBundle(params: Params$watchCertificatesV1alpha1ClusterTrustBundle, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/certificates.k8s.io/v1alpha1/watch/clustertrustbundles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getCoordinationAPIGroup(params: Params$getCoordinationAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getCoordinationV1APIResources(params: Params$getCoordinationV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind Lease */ + public async listCoordinationV1LeaseForAllNamespaces(params: Params$listCoordinationV1LeaseForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/leases`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Lease */ + public async listCoordinationV1NamespacedLease(params: Params$listCoordinationV1NamespacedLease, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Lease */ + public async createCoordinationV1NamespacedLease(params: Params$createCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$createCoordinationV1NamespacedLease$Status$200 | Response$createCoordinationV1NamespacedLease$Status$201 | Response$createCoordinationV1NamespacedLease$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Lease */ + public async deleteCoordinationV1CollectionNamespacedLease(params: Params$deleteCoordinationV1CollectionNamespacedLease, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Lease */ + public async readCoordinationV1NamespacedLease(params: Params$readCoordinationV1NamespacedLease, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Lease */ + public async replaceCoordinationV1NamespacedLease(params: Params$replaceCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$replaceCoordinationV1NamespacedLease$Status$200 | Response$replaceCoordinationV1NamespacedLease$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Lease */ + public async deleteCoordinationV1NamespacedLease(params: Params$deleteCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$deleteCoordinationV1NamespacedLease$Status$200 | Response$deleteCoordinationV1NamespacedLease$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Lease */ + public async patchCoordinationV1NamespacedLease(params: Params$patchCoordinationV1NamespacedLease, option?: RequestOption): Promise<(Response$patchCoordinationV1NamespacedLease$Status$200 | Response$patchCoordinationV1NamespacedLease$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoordinationV1LeaseListForAllNamespaces(params: Params$watchCoordinationV1LeaseListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/watch/leases`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchCoordinationV1NamespacedLeaseList(params: Params$watchCoordinationV1NamespacedLeaseList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Lease. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchCoordinationV1NamespacedLease(params: Params$watchCoordinationV1NamespacedLease, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/coordination.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/leases/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getDiscoveryAPIGroup(params: Params$getDiscoveryAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getDiscoveryV1APIResources(params: Params$getDiscoveryV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind EndpointSlice */ + public async listDiscoveryV1EndpointSliceForAllNamespaces(params: Params$listDiscoveryV1EndpointSliceForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/endpointslices`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind EndpointSlice */ + public async listDiscoveryV1NamespacedEndpointSlice(params: Params$listDiscoveryV1NamespacedEndpointSlice, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create an EndpointSlice */ + public async createDiscoveryV1NamespacedEndpointSlice(params: Params$createDiscoveryV1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$createDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$createDiscoveryV1NamespacedEndpointSlice$Status$201 | Response$createDiscoveryV1NamespacedEndpointSlice$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of EndpointSlice */ + public async deleteDiscoveryV1CollectionNamespacedEndpointSlice(params: Params$deleteDiscoveryV1CollectionNamespacedEndpointSlice, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified EndpointSlice */ + public async readDiscoveryV1NamespacedEndpointSlice(params: Params$readDiscoveryV1NamespacedEndpointSlice, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified EndpointSlice */ + public async replaceDiscoveryV1NamespacedEndpointSlice(params: Params$replaceDiscoveryV1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete an EndpointSlice */ + public async deleteDiscoveryV1NamespacedEndpointSlice(params: Params$deleteDiscoveryV1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified EndpointSlice */ + public async patchDiscoveryV1NamespacedEndpointSlice(params: Params$patchDiscoveryV1NamespacedEndpointSlice, option?: RequestOption): Promise<(Response$patchDiscoveryV1NamespacedEndpointSlice$Status$200 | Response$patchDiscoveryV1NamespacedEndpointSlice$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchDiscoveryV1EndpointSliceListForAllNamespaces(params: Params$watchDiscoveryV1EndpointSliceListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/watch/endpointslices`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchDiscoveryV1NamespacedEndpointSliceList(params: Params$watchDiscoveryV1NamespacedEndpointSliceList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchDiscoveryV1NamespacedEndpointSlice(params: Params$watchDiscoveryV1NamespacedEndpointSlice, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/discovery.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/endpointslices/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getEventsAPIGroup(params: Params$getEventsAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getEventsV1APIResources(params: Params$getEventsV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind Event */ + public async listEventsV1EventForAllNamespaces(params: Params$listEventsV1EventForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Event */ + public async listEventsV1NamespacedEvent(params: Params$listEventsV1NamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create an Event */ + public async createEventsV1NamespacedEvent(params: Params$createEventsV1NamespacedEvent, option?: RequestOption): Promise<(Response$createEventsV1NamespacedEvent$Status$200 | Response$createEventsV1NamespacedEvent$Status$201 | Response$createEventsV1NamespacedEvent$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/events.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Event */ + public async deleteEventsV1CollectionNamespacedEvent(params: Params$deleteEventsV1CollectionNamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Event */ + public async readEventsV1NamespacedEvent(params: Params$readEventsV1NamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Event */ + public async replaceEventsV1NamespacedEvent(params: Params$replaceEventsV1NamespacedEvent, option?: RequestOption): Promise<(Response$replaceEventsV1NamespacedEvent$Status$200 | Response$replaceEventsV1NamespacedEvent$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/events.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete an Event */ + public async deleteEventsV1NamespacedEvent(params: Params$deleteEventsV1NamespacedEvent, option?: RequestOption): Promise<(Response$deleteEventsV1NamespacedEvent$Status$200 | Response$deleteEventsV1NamespacedEvent$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/events.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Event */ + public async patchEventsV1NamespacedEvent(params: Params$patchEventsV1NamespacedEvent, option?: RequestOption): Promise<(Response$patchEventsV1NamespacedEvent$Status$200 | Response$patchEventsV1NamespacedEvent$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/events.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchEventsV1EventListForAllNamespaces(params: Params$watchEventsV1EventListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/watch/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchEventsV1NamespacedEventList(params: Params$watchEventsV1NamespacedEventList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchEventsV1NamespacedEvent(params: Params$watchEventsV1NamespacedEvent, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/events.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/events/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getFlowcontrolApiserverAPIGroup(params: Params$getFlowcontrolApiserverAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getFlowcontrolApiserverV1beta2APIResources(params: Params$getFlowcontrolApiserverV1beta2APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind FlowSchema */ + public async listFlowcontrolApiserverV1beta2FlowSchema(params: Params$listFlowcontrolApiserverV1beta2FlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a FlowSchema */ + public async createFlowcontrolApiserverV1beta2FlowSchema(params: Params$createFlowcontrolApiserverV1beta2FlowSchema, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$201 | Response$createFlowcontrolApiserverV1beta2FlowSchema$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of FlowSchema */ + public async deleteFlowcontrolApiserverV1beta2CollectionFlowSchema(params: Params$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified FlowSchema */ + public async readFlowcontrolApiserverV1beta2FlowSchema(params: Params$readFlowcontrolApiserverV1beta2FlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified FlowSchema */ + public async replaceFlowcontrolApiserverV1beta2FlowSchema(params: Params$replaceFlowcontrolApiserverV1beta2FlowSchema, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a FlowSchema */ + public async deleteFlowcontrolApiserverV1beta2FlowSchema(params: Params$deleteFlowcontrolApiserverV1beta2FlowSchema, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified FlowSchema */ + public async patchFlowcontrolApiserverV1beta2FlowSchema(params: Params$patchFlowcontrolApiserverV1beta2FlowSchema, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$200 | Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified FlowSchema */ + public async readFlowcontrolApiserverV1beta2FlowSchemaStatus(params: Params$readFlowcontrolApiserverV1beta2FlowSchemaStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified FlowSchema */ + public async replaceFlowcontrolApiserverV1beta2FlowSchemaStatus(params: Params$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified FlowSchema */ + public async patchFlowcontrolApiserverV1beta2FlowSchemaStatus(params: Params$patchFlowcontrolApiserverV1beta2FlowSchemaStatus, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PriorityLevelConfiguration */ + public async listFlowcontrolApiserverV1beta2PriorityLevelConfiguration(params: Params$listFlowcontrolApiserverV1beta2PriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PriorityLevelConfiguration */ + public async createFlowcontrolApiserverV1beta2PriorityLevelConfiguration(params: Params$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201 | Response$createFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PriorityLevelConfiguration */ + public async deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration(params: Params$deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PriorityLevelConfiguration */ + public async readFlowcontrolApiserverV1beta2PriorityLevelConfiguration(params: Params$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PriorityLevelConfiguration */ + public async replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration(params: Params$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PriorityLevelConfiguration */ + public async deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration(params: Params$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PriorityLevelConfiguration */ + public async patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration(params: Params$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 | Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified PriorityLevelConfiguration */ + public async readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus(params: Params$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified PriorityLevelConfiguration */ + public async replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus(params: Params$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified PriorityLevelConfiguration */ + public async patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus(params: Params$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchFlowcontrolApiserverV1beta2FlowSchemaList(params: Params$watchFlowcontrolApiserverV1beta2FlowSchemaList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/flowschemas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchFlowcontrolApiserverV1beta2FlowSchema(params: Params$watchFlowcontrolApiserverV1beta2FlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList(params: Params$watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/prioritylevelconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration(params: Params$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getFlowcontrolApiserverV1beta3APIResources(params: Params$getFlowcontrolApiserverV1beta3APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind FlowSchema */ + public async listFlowcontrolApiserverV1beta3FlowSchema(params: Params$listFlowcontrolApiserverV1beta3FlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a FlowSchema */ + public async createFlowcontrolApiserverV1beta3FlowSchema(params: Params$createFlowcontrolApiserverV1beta3FlowSchema, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$201 | Response$createFlowcontrolApiserverV1beta3FlowSchema$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of FlowSchema */ + public async deleteFlowcontrolApiserverV1beta3CollectionFlowSchema(params: Params$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified FlowSchema */ + public async readFlowcontrolApiserverV1beta3FlowSchema(params: Params$readFlowcontrolApiserverV1beta3FlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified FlowSchema */ + public async replaceFlowcontrolApiserverV1beta3FlowSchema(params: Params$replaceFlowcontrolApiserverV1beta3FlowSchema, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a FlowSchema */ + public async deleteFlowcontrolApiserverV1beta3FlowSchema(params: Params$deleteFlowcontrolApiserverV1beta3FlowSchema, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified FlowSchema */ + public async patchFlowcontrolApiserverV1beta3FlowSchema(params: Params$patchFlowcontrolApiserverV1beta3FlowSchema, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$200 | Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified FlowSchema */ + public async readFlowcontrolApiserverV1beta3FlowSchemaStatus(params: Params$readFlowcontrolApiserverV1beta3FlowSchemaStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified FlowSchema */ + public async replaceFlowcontrolApiserverV1beta3FlowSchemaStatus(params: Params$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified FlowSchema */ + public async patchFlowcontrolApiserverV1beta3FlowSchemaStatus(params: Params$patchFlowcontrolApiserverV1beta3FlowSchemaStatus, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PriorityLevelConfiguration */ + public async listFlowcontrolApiserverV1beta3PriorityLevelConfiguration(params: Params$listFlowcontrolApiserverV1beta3PriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PriorityLevelConfiguration */ + public async createFlowcontrolApiserverV1beta3PriorityLevelConfiguration(params: Params$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201 | Response$createFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PriorityLevelConfiguration */ + public async deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration(params: Params$deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PriorityLevelConfiguration */ + public async readFlowcontrolApiserverV1beta3PriorityLevelConfiguration(params: Params$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PriorityLevelConfiguration */ + public async replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration(params: Params$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PriorityLevelConfiguration */ + public async deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration(params: Params$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PriorityLevelConfiguration */ + public async patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration(params: Params$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 | Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified PriorityLevelConfiguration */ + public async readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus(params: Params$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified PriorityLevelConfiguration */ + public async replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus(params: Params$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus, option?: RequestOption): Promise<(Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 | Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified PriorityLevelConfiguration */ + public async patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus(params: Params$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus, option?: RequestOption): Promise<(Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 | Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchFlowcontrolApiserverV1beta3FlowSchemaList(params: Params$watchFlowcontrolApiserverV1beta3FlowSchemaList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/flowschemas`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchFlowcontrolApiserverV1beta3FlowSchema(params: Params$watchFlowcontrolApiserverV1beta3FlowSchema, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/flowschemas/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList(params: Params$watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/prioritylevelconfigurations`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration(params: Params$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/prioritylevelconfigurations/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getInternalApiserverAPIGroup(params: Params$getInternalApiserverAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getInternalApiserverV1alpha1APIResources(params: Params$getInternalApiserverV1alpha1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind StorageVersion */ + public async listInternalApiserverV1alpha1StorageVersion(params: Params$listInternalApiserverV1alpha1StorageVersion, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a StorageVersion */ + public async createInternalApiserverV1alpha1StorageVersion(params: Params$createInternalApiserverV1alpha1StorageVersion, option?: RequestOption): Promise<(Response$createInternalApiserverV1alpha1StorageVersion$Status$200 | Response$createInternalApiserverV1alpha1StorageVersion$Status$201 | Response$createInternalApiserverV1alpha1StorageVersion$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of StorageVersion */ + public async deleteInternalApiserverV1alpha1CollectionStorageVersion(params: Params$deleteInternalApiserverV1alpha1CollectionStorageVersion, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified StorageVersion */ + public async readInternalApiserverV1alpha1StorageVersion(params: Params$readInternalApiserverV1alpha1StorageVersion, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified StorageVersion */ + public async replaceInternalApiserverV1alpha1StorageVersion(params: Params$replaceInternalApiserverV1alpha1StorageVersion, option?: RequestOption): Promise<(Response$replaceInternalApiserverV1alpha1StorageVersion$Status$200 | Response$replaceInternalApiserverV1alpha1StorageVersion$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a StorageVersion */ + public async deleteInternalApiserverV1alpha1StorageVersion(params: Params$deleteInternalApiserverV1alpha1StorageVersion, option?: RequestOption): Promise<(Response$deleteInternalApiserverV1alpha1StorageVersion$Status$200 | Response$deleteInternalApiserverV1alpha1StorageVersion$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified StorageVersion */ + public async patchInternalApiserverV1alpha1StorageVersion(params: Params$patchInternalApiserverV1alpha1StorageVersion, option?: RequestOption): Promise<(Response$patchInternalApiserverV1alpha1StorageVersion$Status$200 | Response$patchInternalApiserverV1alpha1StorageVersion$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified StorageVersion */ + public async readInternalApiserverV1alpha1StorageVersionStatus(params: Params$readInternalApiserverV1alpha1StorageVersionStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified StorageVersion */ + public async replaceInternalApiserverV1alpha1StorageVersionStatus(params: Params$replaceInternalApiserverV1alpha1StorageVersionStatus, option?: RequestOption): Promise<(Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$200 | Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified StorageVersion */ + public async patchInternalApiserverV1alpha1StorageVersionStatus(params: Params$patchInternalApiserverV1alpha1StorageVersionStatus, option?: RequestOption): Promise<(Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$200 | Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of StorageVersion. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchInternalApiserverV1alpha1StorageVersionList(params: Params$watchInternalApiserverV1alpha1StorageVersionList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind StorageVersion. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchInternalApiserverV1alpha1StorageVersion(params: Params$watchInternalApiserverV1alpha1StorageVersion, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getNetworkingAPIGroup(params: Params$getNetworkingAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getNetworkingV1APIResources(params: Params$getNetworkingV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind IngressClass */ + public async listNetworkingV1IngressClass(params: Params$listNetworkingV1IngressClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingressclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create an IngressClass */ + public async createNetworkingV1IngressClass(params: Params$createNetworkingV1IngressClass, option?: RequestOption): Promise<(Response$createNetworkingV1IngressClass$Status$200 | Response$createNetworkingV1IngressClass$Status$201 | Response$createNetworkingV1IngressClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingressclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of IngressClass */ + public async deleteNetworkingV1CollectionIngressClass(params: Params$deleteNetworkingV1CollectionIngressClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingressclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified IngressClass */ + public async readNetworkingV1IngressClass(params: Params$readNetworkingV1IngressClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified IngressClass */ + public async replaceNetworkingV1IngressClass(params: Params$replaceNetworkingV1IngressClass, option?: RequestOption): Promise<(Response$replaceNetworkingV1IngressClass$Status$200 | Response$replaceNetworkingV1IngressClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete an IngressClass */ + public async deleteNetworkingV1IngressClass(params: Params$deleteNetworkingV1IngressClass, option?: RequestOption): Promise<(Response$deleteNetworkingV1IngressClass$Status$200 | Response$deleteNetworkingV1IngressClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified IngressClass */ + public async patchNetworkingV1IngressClass(params: Params$patchNetworkingV1IngressClass, option?: RequestOption): Promise<(Response$patchNetworkingV1IngressClass$Status$200 | Response$patchNetworkingV1IngressClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingressclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Ingress */ + public async listNetworkingV1IngressForAllNamespaces(params: Params$listNetworkingV1IngressForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/ingresses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Ingress */ + public async listNetworkingV1NamespacedIngress(params: Params$listNetworkingV1NamespacedIngress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create an Ingress */ + public async createNetworkingV1NamespacedIngress(params: Params$createNetworkingV1NamespacedIngress, option?: RequestOption): Promise<(Response$createNetworkingV1NamespacedIngress$Status$200 | Response$createNetworkingV1NamespacedIngress$Status$201 | Response$createNetworkingV1NamespacedIngress$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Ingress */ + public async deleteNetworkingV1CollectionNamespacedIngress(params: Params$deleteNetworkingV1CollectionNamespacedIngress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Ingress */ + public async readNetworkingV1NamespacedIngress(params: Params$readNetworkingV1NamespacedIngress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Ingress */ + public async replaceNetworkingV1NamespacedIngress(params: Params$replaceNetworkingV1NamespacedIngress, option?: RequestOption): Promise<(Response$replaceNetworkingV1NamespacedIngress$Status$200 | Response$replaceNetworkingV1NamespacedIngress$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete an Ingress */ + public async deleteNetworkingV1NamespacedIngress(params: Params$deleteNetworkingV1NamespacedIngress, option?: RequestOption): Promise<(Response$deleteNetworkingV1NamespacedIngress$Status$200 | Response$deleteNetworkingV1NamespacedIngress$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Ingress */ + public async patchNetworkingV1NamespacedIngress(params: Params$patchNetworkingV1NamespacedIngress, option?: RequestOption): Promise<(Response$patchNetworkingV1NamespacedIngress$Status$200 | Response$patchNetworkingV1NamespacedIngress$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified Ingress */ + public async readNetworkingV1NamespacedIngressStatus(params: Params$readNetworkingV1NamespacedIngressStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified Ingress */ + public async replaceNetworkingV1NamespacedIngressStatus(params: Params$replaceNetworkingV1NamespacedIngressStatus, option?: RequestOption): Promise<(Response$replaceNetworkingV1NamespacedIngressStatus$Status$200 | Response$replaceNetworkingV1NamespacedIngressStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified Ingress */ + public async patchNetworkingV1NamespacedIngressStatus(params: Params$patchNetworkingV1NamespacedIngressStatus, option?: RequestOption): Promise<(Response$patchNetworkingV1NamespacedIngressStatus$Status$200 | Response$patchNetworkingV1NamespacedIngressStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind NetworkPolicy */ + public async listNetworkingV1NamespacedNetworkPolicy(params: Params$listNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a NetworkPolicy */ + public async createNetworkingV1NamespacedNetworkPolicy(params: Params$createNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$createNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$201 | Response$createNetworkingV1NamespacedNetworkPolicy$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of NetworkPolicy */ + public async deleteNetworkingV1CollectionNamespacedNetworkPolicy(params: Params$deleteNetworkingV1CollectionNamespacedNetworkPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified NetworkPolicy */ + public async readNetworkingV1NamespacedNetworkPolicy(params: Params$readNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified NetworkPolicy */ + public async replaceNetworkingV1NamespacedNetworkPolicy(params: Params$replaceNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a NetworkPolicy */ + public async deleteNetworkingV1NamespacedNetworkPolicy(params: Params$deleteNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified NetworkPolicy */ + public async patchNetworkingV1NamespacedNetworkPolicy(params: Params$patchNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise<(Response$patchNetworkingV1NamespacedNetworkPolicy$Status$200 | Response$patchNetworkingV1NamespacedNetworkPolicy$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind NetworkPolicy */ + public async listNetworkingV1NetworkPolicyForAllNamespaces(params: Params$listNetworkingV1NetworkPolicyForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/networkpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNetworkingV1IngressClassList(params: Params$watchNetworkingV1IngressClassList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/ingressclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind IngressClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchNetworkingV1IngressClass(params: Params$watchNetworkingV1IngressClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/ingressclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNetworkingV1IngressListForAllNamespaces(params: Params$watchNetworkingV1IngressListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/ingresses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNetworkingV1NamespacedIngressList(params: Params$watchNetworkingV1NamespacedIngressList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Ingress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchNetworkingV1NamespacedIngress(params: Params$watchNetworkingV1NamespacedIngress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/ingresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNetworkingV1NamespacedNetworkPolicyList(params: Params$watchNetworkingV1NamespacedNetworkPolicyList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchNetworkingV1NamespacedNetworkPolicy(params: Params$watchNetworkingV1NamespacedNetworkPolicy, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/networkpolicies/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNetworkingV1NetworkPolicyListForAllNamespaces(params: Params$watchNetworkingV1NetworkPolicyListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1/watch/networkpolicies`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get available resources */ + public async getNetworkingV1alpha1APIResources(params: Params$getNetworkingV1alpha1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind ClusterCIDR */ + public async listNetworkingV1alpha1ClusterCIDR(params: Params$listNetworkingV1alpha1ClusterCIDR, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/clustercidrs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ClusterCIDR */ + public async createNetworkingV1alpha1ClusterCIDR(params: Params$createNetworkingV1alpha1ClusterCIDR, option?: RequestOption): Promise<(Response$createNetworkingV1alpha1ClusterCIDR$Status$200 | Response$createNetworkingV1alpha1ClusterCIDR$Status$201 | Response$createNetworkingV1alpha1ClusterCIDR$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/clustercidrs`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ClusterCIDR */ + public async deleteNetworkingV1alpha1CollectionClusterCIDR(params: Params$deleteNetworkingV1alpha1CollectionClusterCIDR, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/clustercidrs`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ClusterCIDR */ + public async readNetworkingV1alpha1ClusterCIDR(params: Params$readNetworkingV1alpha1ClusterCIDR, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/clustercidrs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ClusterCIDR */ + public async replaceNetworkingV1alpha1ClusterCIDR(params: Params$replaceNetworkingV1alpha1ClusterCIDR, option?: RequestOption): Promise<(Response$replaceNetworkingV1alpha1ClusterCIDR$Status$200 | Response$replaceNetworkingV1alpha1ClusterCIDR$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/clustercidrs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ClusterCIDR */ + public async deleteNetworkingV1alpha1ClusterCIDR(params: Params$deleteNetworkingV1alpha1ClusterCIDR, option?: RequestOption): Promise<(Response$deleteNetworkingV1alpha1ClusterCIDR$Status$200 | Response$deleteNetworkingV1alpha1ClusterCIDR$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/clustercidrs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ClusterCIDR */ + public async patchNetworkingV1alpha1ClusterCIDR(params: Params$patchNetworkingV1alpha1ClusterCIDR, option?: RequestOption): Promise<(Response$patchNetworkingV1alpha1ClusterCIDR$Status$200 | Response$patchNetworkingV1alpha1ClusterCIDR$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/clustercidrs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind IPAddress */ + public async listNetworkingV1alpha1IPAddress(params: Params$listNetworkingV1alpha1IPAddress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/ipaddresses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create an IPAddress */ + public async createNetworkingV1alpha1IPAddress(params: Params$createNetworkingV1alpha1IPAddress, option?: RequestOption): Promise<(Response$createNetworkingV1alpha1IPAddress$Status$200 | Response$createNetworkingV1alpha1IPAddress$Status$201 | Response$createNetworkingV1alpha1IPAddress$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/ipaddresses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of IPAddress */ + public async deleteNetworkingV1alpha1CollectionIPAddress(params: Params$deleteNetworkingV1alpha1CollectionIPAddress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/ipaddresses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified IPAddress */ + public async readNetworkingV1alpha1IPAddress(params: Params$readNetworkingV1alpha1IPAddress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/ipaddresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified IPAddress */ + public async replaceNetworkingV1alpha1IPAddress(params: Params$replaceNetworkingV1alpha1IPAddress, option?: RequestOption): Promise<(Response$replaceNetworkingV1alpha1IPAddress$Status$200 | Response$replaceNetworkingV1alpha1IPAddress$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/ipaddresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete an IPAddress */ + public async deleteNetworkingV1alpha1IPAddress(params: Params$deleteNetworkingV1alpha1IPAddress, option?: RequestOption): Promise<(Response$deleteNetworkingV1alpha1IPAddress$Status$200 | Response$deleteNetworkingV1alpha1IPAddress$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/ipaddresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified IPAddress */ + public async patchNetworkingV1alpha1IPAddress(params: Params$patchNetworkingV1alpha1IPAddress, option?: RequestOption): Promise<(Response$patchNetworkingV1alpha1IPAddress$Status$200 | Response$patchNetworkingV1alpha1IPAddress$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/ipaddresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ClusterCIDR. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNetworkingV1alpha1ClusterCIDRList(params: Params$watchNetworkingV1alpha1ClusterCIDRList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/watch/clustercidrs`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ClusterCIDR. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchNetworkingV1alpha1ClusterCIDR(params: Params$watchNetworkingV1alpha1ClusterCIDR, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/watch/clustercidrs/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of IPAddress. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNetworkingV1alpha1IPAddressList(params: Params$watchNetworkingV1alpha1IPAddressList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/watch/ipaddresses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind IPAddress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchNetworkingV1alpha1IPAddress(params: Params$watchNetworkingV1alpha1IPAddress, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/networking.k8s.io/v1alpha1/watch/ipaddresses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getNodeAPIGroup(params: Params$getNodeAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/node.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getNodeV1APIResources(params: Params$getNodeV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/node.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind RuntimeClass */ + public async listNodeV1RuntimeClass(params: Params$listNodeV1RuntimeClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/node.k8s.io/v1/runtimeclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a RuntimeClass */ + public async createNodeV1RuntimeClass(params: Params$createNodeV1RuntimeClass, option?: RequestOption): Promise<(Response$createNodeV1RuntimeClass$Status$200 | Response$createNodeV1RuntimeClass$Status$201 | Response$createNodeV1RuntimeClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/node.k8s.io/v1/runtimeclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of RuntimeClass */ + public async deleteNodeV1CollectionRuntimeClass(params: Params$deleteNodeV1CollectionRuntimeClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/node.k8s.io/v1/runtimeclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified RuntimeClass */ + public async readNodeV1RuntimeClass(params: Params$readNodeV1RuntimeClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/node.k8s.io/v1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified RuntimeClass */ + public async replaceNodeV1RuntimeClass(params: Params$replaceNodeV1RuntimeClass, option?: RequestOption): Promise<(Response$replaceNodeV1RuntimeClass$Status$200 | Response$replaceNodeV1RuntimeClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/node.k8s.io/v1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a RuntimeClass */ + public async deleteNodeV1RuntimeClass(params: Params$deleteNodeV1RuntimeClass, option?: RequestOption): Promise<(Response$deleteNodeV1RuntimeClass$Status$200 | Response$deleteNodeV1RuntimeClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/node.k8s.io/v1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified RuntimeClass */ + public async patchNodeV1RuntimeClass(params: Params$patchNodeV1RuntimeClass, option?: RequestOption): Promise<(Response$patchNodeV1RuntimeClass$Status$200 | Response$patchNodeV1RuntimeClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/node.k8s.io/v1/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchNodeV1RuntimeClassList(params: Params$watchNodeV1RuntimeClassList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/node.k8s.io/v1/watch/runtimeclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchNodeV1RuntimeClass(params: Params$watchNodeV1RuntimeClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/node.k8s.io/v1/watch/runtimeclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getPolicyAPIGroup(params: Params$getPolicyAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getPolicyV1APIResources(params: Params$getPolicyV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind PodDisruptionBudget */ + public async listPolicyV1NamespacedPodDisruptionBudget(params: Params$listPolicyV1NamespacedPodDisruptionBudget, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PodDisruptionBudget */ + public async createPolicyV1NamespacedPodDisruptionBudget(params: Params$createPolicyV1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$createPolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$createPolicyV1NamespacedPodDisruptionBudget$Status$201 | Response$createPolicyV1NamespacedPodDisruptionBudget$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PodDisruptionBudget */ + public async deletePolicyV1CollectionNamespacedPodDisruptionBudget(params: Params$deletePolicyV1CollectionNamespacedPodDisruptionBudget, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PodDisruptionBudget */ + public async readPolicyV1NamespacedPodDisruptionBudget(params: Params$readPolicyV1NamespacedPodDisruptionBudget, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PodDisruptionBudget */ + public async replacePolicyV1NamespacedPodDisruptionBudget(params: Params$replacePolicyV1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PodDisruptionBudget */ + public async deletePolicyV1NamespacedPodDisruptionBudget(params: Params$deletePolicyV1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PodDisruptionBudget */ + public async patchPolicyV1NamespacedPodDisruptionBudget(params: Params$patchPolicyV1NamespacedPodDisruptionBudget, option?: RequestOption): Promise<(Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$200 | Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified PodDisruptionBudget */ + public async readPolicyV1NamespacedPodDisruptionBudgetStatus(params: Params$readPolicyV1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified PodDisruptionBudget */ + public async replacePolicyV1NamespacedPodDisruptionBudgetStatus(params: Params$replacePolicyV1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise<(Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 | Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified PodDisruptionBudget */ + public async patchPolicyV1NamespacedPodDisruptionBudgetStatus(params: Params$patchPolicyV1NamespacedPodDisruptionBudgetStatus, option?: RequestOption): Promise<(Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 | Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/policy/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PodDisruptionBudget */ + public async listPolicyV1PodDisruptionBudgetForAllNamespaces(params: Params$listPolicyV1PodDisruptionBudgetForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/poddisruptionbudgets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchPolicyV1NamespacedPodDisruptionBudgetList(params: Params$watchPolicyV1NamespacedPodDisruptionBudgetList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchPolicyV1NamespacedPodDisruptionBudget(params: Params$watchPolicyV1NamespacedPodDisruptionBudget, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/poddisruptionbudgets/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchPolicyV1PodDisruptionBudgetListForAllNamespaces(params: Params$watchPolicyV1PodDisruptionBudgetListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/policy/v1/watch/poddisruptionbudgets`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getRbacAuthorizationAPIGroup(params: Params$getRbacAuthorizationAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getRbacAuthorizationV1APIResources(params: Params$getRbacAuthorizationV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind ClusterRoleBinding */ + public async listRbacAuthorizationV1ClusterRoleBinding(params: Params$listRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ClusterRoleBinding */ + public async createRbacAuthorizationV1ClusterRoleBinding(params: Params$createRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$201 | Response$createRbacAuthorizationV1ClusterRoleBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ClusterRoleBinding */ + public async deleteRbacAuthorizationV1CollectionClusterRoleBinding(params: Params$deleteRbacAuthorizationV1CollectionClusterRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ClusterRoleBinding */ + public async readRbacAuthorizationV1ClusterRoleBinding(params: Params$readRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ClusterRoleBinding */ + public async replaceRbacAuthorizationV1ClusterRoleBinding(params: Params$replaceRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1ClusterRoleBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ClusterRoleBinding */ + public async deleteRbacAuthorizationV1ClusterRoleBinding(params: Params$deleteRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1ClusterRoleBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ClusterRoleBinding */ + public async patchRbacAuthorizationV1ClusterRoleBinding(params: Params$patchRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise<(Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$200 | Response$patchRbacAuthorizationV1ClusterRoleBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ClusterRole */ + public async listRbacAuthorizationV1ClusterRole(params: Params$listRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ClusterRole */ + public async createRbacAuthorizationV1ClusterRole(params: Params$createRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1ClusterRole$Status$200 | Response$createRbacAuthorizationV1ClusterRole$Status$201 | Response$createRbacAuthorizationV1ClusterRole$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ClusterRole */ + public async deleteRbacAuthorizationV1CollectionClusterRole(params: Params$deleteRbacAuthorizationV1CollectionClusterRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ClusterRole */ + public async readRbacAuthorizationV1ClusterRole(params: Params$readRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ClusterRole */ + public async replaceRbacAuthorizationV1ClusterRole(params: Params$replaceRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1ClusterRole$Status$200 | Response$replaceRbacAuthorizationV1ClusterRole$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ClusterRole */ + public async deleteRbacAuthorizationV1ClusterRole(params: Params$deleteRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1ClusterRole$Status$200 | Response$deleteRbacAuthorizationV1ClusterRole$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ClusterRole */ + public async patchRbacAuthorizationV1ClusterRole(params: Params$patchRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise<(Response$patchRbacAuthorizationV1ClusterRole$Status$200 | Response$patchRbacAuthorizationV1ClusterRole$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/clusterroles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind RoleBinding */ + public async listRbacAuthorizationV1NamespacedRoleBinding(params: Params$listRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a RoleBinding */ + public async createRbacAuthorizationV1NamespacedRoleBinding(params: Params$createRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$201 | Response$createRbacAuthorizationV1NamespacedRoleBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of RoleBinding */ + public async deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1CollectionNamespacedRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified RoleBinding */ + public async readRbacAuthorizationV1NamespacedRoleBinding(params: Params$readRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified RoleBinding */ + public async replaceRbacAuthorizationV1NamespacedRoleBinding(params: Params$replaceRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a RoleBinding */ + public async deleteRbacAuthorizationV1NamespacedRoleBinding(params: Params$deleteRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified RoleBinding */ + public async patchRbacAuthorizationV1NamespacedRoleBinding(params: Params$patchRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise<(Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$200 | Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Role */ + public async listRbacAuthorizationV1NamespacedRole(params: Params$listRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a Role */ + public async createRbacAuthorizationV1NamespacedRole(params: Params$createRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$createRbacAuthorizationV1NamespacedRole$Status$200 | Response$createRbacAuthorizationV1NamespacedRole$Status$201 | Response$createRbacAuthorizationV1NamespacedRole$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of Role */ + public async deleteRbacAuthorizationV1CollectionNamespacedRole(params: Params$deleteRbacAuthorizationV1CollectionNamespacedRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified Role */ + public async readRbacAuthorizationV1NamespacedRole(params: Params$readRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified Role */ + public async replaceRbacAuthorizationV1NamespacedRole(params: Params$replaceRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 | Response$replaceRbacAuthorizationV1NamespacedRole$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a Role */ + public async deleteRbacAuthorizationV1NamespacedRole(params: Params$deleteRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 | Response$deleteRbacAuthorizationV1NamespacedRole$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified Role */ + public async patchRbacAuthorizationV1NamespacedRole(params: Params$patchRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise<(Response$patchRbacAuthorizationV1NamespacedRole$Status$200 | Response$patchRbacAuthorizationV1NamespacedRole$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind RoleBinding */ + public async listRbacAuthorizationV1RoleBindingForAllNamespaces(params: Params$listRbacAuthorizationV1RoleBindingForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/rolebindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind Role */ + public async listRbacAuthorizationV1RoleForAllNamespaces(params: Params$listRbacAuthorizationV1RoleForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/roles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchRbacAuthorizationV1ClusterRoleBindingList(params: Params$watchRbacAuthorizationV1ClusterRoleBindingList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchRbacAuthorizationV1ClusterRoleBinding(params: Params$watchRbacAuthorizationV1ClusterRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchRbacAuthorizationV1ClusterRoleList(params: Params$watchRbacAuthorizationV1ClusterRoleList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterroles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchRbacAuthorizationV1ClusterRole(params: Params$watchRbacAuthorizationV1ClusterRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchRbacAuthorizationV1NamespacedRoleBindingList(params: Params$watchRbacAuthorizationV1NamespacedRoleBindingList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchRbacAuthorizationV1NamespacedRoleBinding(params: Params$watchRbacAuthorizationV1NamespacedRoleBinding, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/rolebindings/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchRbacAuthorizationV1NamespacedRoleList(params: Params$watchRbacAuthorizationV1NamespacedRoleList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchRbacAuthorizationV1NamespacedRole(params: Params$watchRbacAuthorizationV1NamespacedRole, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/roles/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchRbacAuthorizationV1RoleBindingListForAllNamespaces(params: Params$watchRbacAuthorizationV1RoleBindingListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/rolebindings`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchRbacAuthorizationV1RoleListForAllNamespaces(params: Params$watchRbacAuthorizationV1RoleListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/rbac.authorization.k8s.io/v1/watch/roles`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getResourceAPIGroup(params: Params$getResourceAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getResourceV1alpha2APIResources(params: Params$getResourceV1alpha2APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind PodSchedulingContext */ + public async listResourceV1alpha2NamespacedPodSchedulingContext(params: Params$listResourceV1alpha2NamespacedPodSchedulingContext, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PodSchedulingContext */ + public async createResourceV1alpha2NamespacedPodSchedulingContext(params: Params$createResourceV1alpha2NamespacedPodSchedulingContext, option?: RequestOption): Promise<(Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$201 | Response$createResourceV1alpha2NamespacedPodSchedulingContext$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PodSchedulingContext */ + public async deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext(params: Params$deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PodSchedulingContext */ + public async readResourceV1alpha2NamespacedPodSchedulingContext(params: Params$readResourceV1alpha2NamespacedPodSchedulingContext, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PodSchedulingContext */ + public async replaceResourceV1alpha2NamespacedPodSchedulingContext(params: Params$replaceResourceV1alpha2NamespacedPodSchedulingContext, option?: RequestOption): Promise<(Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PodSchedulingContext */ + public async deleteResourceV1alpha2NamespacedPodSchedulingContext(params: Params$deleteResourceV1alpha2NamespacedPodSchedulingContext, option?: RequestOption): Promise<(Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PodSchedulingContext */ + public async patchResourceV1alpha2NamespacedPodSchedulingContext(params: Params$patchResourceV1alpha2NamespacedPodSchedulingContext, option?: RequestOption): Promise<(Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 | Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified PodSchedulingContext */ + public async readResourceV1alpha2NamespacedPodSchedulingContextStatus(params: Params$readResourceV1alpha2NamespacedPodSchedulingContextStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified PodSchedulingContext */ + public async replaceResourceV1alpha2NamespacedPodSchedulingContextStatus(params: Params$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus, option?: RequestOption): Promise<(Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 | Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified PodSchedulingContext */ + public async patchResourceV1alpha2NamespacedPodSchedulingContextStatus(params: Params$patchResourceV1alpha2NamespacedPodSchedulingContextStatus, option?: RequestOption): Promise<(Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 | Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ResourceClaim */ + public async listResourceV1alpha2NamespacedResourceClaim(params: Params$listResourceV1alpha2NamespacedResourceClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ResourceClaim */ + public async createResourceV1alpha2NamespacedResourceClaim(params: Params$createResourceV1alpha2NamespacedResourceClaim, option?: RequestOption): Promise<(Response$createResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$createResourceV1alpha2NamespacedResourceClaim$Status$201 | Response$createResourceV1alpha2NamespacedResourceClaim$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ResourceClaim */ + public async deleteResourceV1alpha2CollectionNamespacedResourceClaim(params: Params$deleteResourceV1alpha2CollectionNamespacedResourceClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ResourceClaim */ + public async readResourceV1alpha2NamespacedResourceClaim(params: Params$readResourceV1alpha2NamespacedResourceClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ResourceClaim */ + public async replaceResourceV1alpha2NamespacedResourceClaim(params: Params$replaceResourceV1alpha2NamespacedResourceClaim, option?: RequestOption): Promise<(Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ResourceClaim */ + public async deleteResourceV1alpha2NamespacedResourceClaim(params: Params$deleteResourceV1alpha2NamespacedResourceClaim, option?: RequestOption): Promise<(Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ResourceClaim */ + public async patchResourceV1alpha2NamespacedResourceClaim(params: Params$patchResourceV1alpha2NamespacedResourceClaim, option?: RequestOption): Promise<(Response$patchResourceV1alpha2NamespacedResourceClaim$Status$200 | Response$patchResourceV1alpha2NamespacedResourceClaim$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified ResourceClaim */ + public async readResourceV1alpha2NamespacedResourceClaimStatus(params: Params$readResourceV1alpha2NamespacedResourceClaimStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified ResourceClaim */ + public async replaceResourceV1alpha2NamespacedResourceClaimStatus(params: Params$replaceResourceV1alpha2NamespacedResourceClaimStatus, option?: RequestOption): Promise<(Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified ResourceClaim */ + public async patchResourceV1alpha2NamespacedResourceClaimStatus(params: Params$patchResourceV1alpha2NamespacedResourceClaimStatus, option?: RequestOption): Promise<(Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$200 | Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ResourceClaimTemplate */ + public async listResourceV1alpha2NamespacedResourceClaimTemplate(params: Params$listResourceV1alpha2NamespacedResourceClaimTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ResourceClaimTemplate */ + public async createResourceV1alpha2NamespacedResourceClaimTemplate(params: Params$createResourceV1alpha2NamespacedResourceClaimTemplate, option?: RequestOption): Promise<(Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$201 | Response$createResourceV1alpha2NamespacedResourceClaimTemplate$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ResourceClaimTemplate */ + public async deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate(params: Params$deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ResourceClaimTemplate */ + public async readResourceV1alpha2NamespacedResourceClaimTemplate(params: Params$readResourceV1alpha2NamespacedResourceClaimTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ResourceClaimTemplate */ + public async replaceResourceV1alpha2NamespacedResourceClaimTemplate(params: Params$replaceResourceV1alpha2NamespacedResourceClaimTemplate, option?: RequestOption): Promise<(Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ResourceClaimTemplate */ + public async deleteResourceV1alpha2NamespacedResourceClaimTemplate(params: Params$deleteResourceV1alpha2NamespacedResourceClaimTemplate, option?: RequestOption): Promise<(Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ResourceClaimTemplate */ + public async patchResourceV1alpha2NamespacedResourceClaimTemplate(params: Params$patchResourceV1alpha2NamespacedResourceClaimTemplate, option?: RequestOption): Promise<(Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 | Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind PodSchedulingContext */ + public async listResourceV1alpha2PodSchedulingContextForAllNamespaces(params: Params$listResourceV1alpha2PodSchedulingContextForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/podschedulingcontexts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ResourceClaim */ + public async listResourceV1alpha2ResourceClaimForAllNamespaces(params: Params$listResourceV1alpha2ResourceClaimForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ResourceClaimTemplate */ + public async listResourceV1alpha2ResourceClaimTemplateForAllNamespaces(params: Params$listResourceV1alpha2ResourceClaimTemplateForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclaimtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind ResourceClass */ + public async listResourceV1alpha2ResourceClass(params: Params$listResourceV1alpha2ResourceClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a ResourceClass */ + public async createResourceV1alpha2ResourceClass(params: Params$createResourceV1alpha2ResourceClass, option?: RequestOption): Promise<(Response$createResourceV1alpha2ResourceClass$Status$200 | Response$createResourceV1alpha2ResourceClass$Status$201 | Response$createResourceV1alpha2ResourceClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of ResourceClass */ + public async deleteResourceV1alpha2CollectionResourceClass(params: Params$deleteResourceV1alpha2CollectionResourceClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified ResourceClass */ + public async readResourceV1alpha2ResourceClass(params: Params$readResourceV1alpha2ResourceClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified ResourceClass */ + public async replaceResourceV1alpha2ResourceClass(params: Params$replaceResourceV1alpha2ResourceClass, option?: RequestOption): Promise<(Response$replaceResourceV1alpha2ResourceClass$Status$200 | Response$replaceResourceV1alpha2ResourceClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a ResourceClass */ + public async deleteResourceV1alpha2ResourceClass(params: Params$deleteResourceV1alpha2ResourceClass, option?: RequestOption): Promise<(Response$deleteResourceV1alpha2ResourceClass$Status$200 | Response$deleteResourceV1alpha2ResourceClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified ResourceClass */ + public async patchResourceV1alpha2ResourceClass(params: Params$patchResourceV1alpha2ResourceClass, option?: RequestOption): Promise<(Response$patchResourceV1alpha2ResourceClass$Status$200 | Response$patchResourceV1alpha2ResourceClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/resourceclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchResourceV1alpha2NamespacedPodSchedulingContextList(params: Params$watchResourceV1alpha2NamespacedPodSchedulingContextList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchResourceV1alpha2NamespacedPodSchedulingContext(params: Params$watchResourceV1alpha2NamespacedPodSchedulingContext, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/podschedulingcontexts/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchResourceV1alpha2NamespacedResourceClaimList(params: Params$watchResourceV1alpha2NamespacedResourceClaimList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchResourceV1alpha2NamespacedResourceClaim(params: Params$watchResourceV1alpha2NamespacedResourceClaim, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaims/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchResourceV1alpha2NamespacedResourceClaimTemplateList(params: Params$watchResourceV1alpha2NamespacedResourceClaimTemplateList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchResourceV1alpha2NamespacedResourceClaimTemplate(params: Params$watchResourceV1alpha2NamespacedResourceClaimTemplate, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/resourceclaimtemplates/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchResourceV1alpha2PodSchedulingContextListForAllNamespaces(params: Params$watchResourceV1alpha2PodSchedulingContextListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/podschedulingcontexts`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchResourceV1alpha2ResourceClaimListForAllNamespaces(params: Params$watchResourceV1alpha2ResourceClaimListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/resourceclaims`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces(params: Params$watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/resourceclaimtemplates`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of ResourceClass. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchResourceV1alpha2ResourceClassList(params: Params$watchResourceV1alpha2ResourceClassList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/resourceclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind ResourceClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchResourceV1alpha2ResourceClass(params: Params$watchResourceV1alpha2ResourceClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/resource.k8s.io/v1alpha2/watch/resourceclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getSchedulingAPIGroup(params: Params$getSchedulingAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/scheduling.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getSchedulingV1APIResources(params: Params$getSchedulingV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind PriorityClass */ + public async listSchedulingV1PriorityClass(params: Params$listSchedulingV1PriorityClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a PriorityClass */ + public async createSchedulingV1PriorityClass(params: Params$createSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$createSchedulingV1PriorityClass$Status$200 | Response$createSchedulingV1PriorityClass$Status$201 | Response$createSchedulingV1PriorityClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of PriorityClass */ + public async deleteSchedulingV1CollectionPriorityClass(params: Params$deleteSchedulingV1CollectionPriorityClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified PriorityClass */ + public async readSchedulingV1PriorityClass(params: Params$readSchedulingV1PriorityClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified PriorityClass */ + public async replaceSchedulingV1PriorityClass(params: Params$replaceSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$replaceSchedulingV1PriorityClass$Status$200 | Response$replaceSchedulingV1PriorityClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a PriorityClass */ + public async deleteSchedulingV1PriorityClass(params: Params$deleteSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$deleteSchedulingV1PriorityClass$Status$200 | Response$deleteSchedulingV1PriorityClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified PriorityClass */ + public async patchSchedulingV1PriorityClass(params: Params$patchSchedulingV1PriorityClass, option?: RequestOption): Promise<(Response$patchSchedulingV1PriorityClass$Status$200 | Response$patchSchedulingV1PriorityClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/priorityclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchSchedulingV1PriorityClassList(params: Params$watchSchedulingV1PriorityClassList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/watch/priorityclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchSchedulingV1PriorityClass(params: Params$watchSchedulingV1PriorityClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/scheduling.k8s.io/v1/watch/priorityclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** get information of a group */ + public async getStorageAPIGroup(params: Params$getStorageAPIGroup, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get available resources */ + public async getStorageV1APIResources(params: Params$getStorageV1APIResources, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/`; + const headers = { + Accept: params.headers.Accept + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** list or watch objects of kind CSIDriver */ + public async listStorageV1CSIDriver(params: Params$listStorageV1CSIDriver, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a CSIDriver */ + public async createStorageV1CSIDriver(params: Params$createStorageV1CSIDriver, option?: RequestOption): Promise<(Response$createStorageV1CSIDriver$Status$200 | Response$createStorageV1CSIDriver$Status$201 | Response$createStorageV1CSIDriver$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of CSIDriver */ + public async deleteStorageV1CollectionCSIDriver(params: Params$deleteStorageV1CollectionCSIDriver, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified CSIDriver */ + public async readStorageV1CSIDriver(params: Params$readStorageV1CSIDriver, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified CSIDriver */ + public async replaceStorageV1CSIDriver(params: Params$replaceStorageV1CSIDriver, option?: RequestOption): Promise<(Response$replaceStorageV1CSIDriver$Status$200 | Response$replaceStorageV1CSIDriver$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a CSIDriver */ + public async deleteStorageV1CSIDriver(params: Params$deleteStorageV1CSIDriver, option?: RequestOption): Promise<(Response$deleteStorageV1CSIDriver$Status$200 | Response$deleteStorageV1CSIDriver$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified CSIDriver */ + public async patchStorageV1CSIDriver(params: Params$patchStorageV1CSIDriver, option?: RequestOption): Promise<(Response$patchStorageV1CSIDriver$Status$200 | Response$patchStorageV1CSIDriver$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csidrivers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind CSINode */ + public async listStorageV1CSINode(params: Params$listStorageV1CSINode, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a CSINode */ + public async createStorageV1CSINode(params: Params$createStorageV1CSINode, option?: RequestOption): Promise<(Response$createStorageV1CSINode$Status$200 | Response$createStorageV1CSINode$Status$201 | Response$createStorageV1CSINode$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of CSINode */ + public async deleteStorageV1CollectionCSINode(params: Params$deleteStorageV1CollectionCSINode, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified CSINode */ + public async readStorageV1CSINode(params: Params$readStorageV1CSINode, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified CSINode */ + public async replaceStorageV1CSINode(params: Params$replaceStorageV1CSINode, option?: RequestOption): Promise<(Response$replaceStorageV1CSINode$Status$200 | Response$replaceStorageV1CSINode$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a CSINode */ + public async deleteStorageV1CSINode(params: Params$deleteStorageV1CSINode, option?: RequestOption): Promise<(Response$deleteStorageV1CSINode$Status$200 | Response$deleteStorageV1CSINode$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified CSINode */ + public async patchStorageV1CSINode(params: Params$patchStorageV1CSINode, option?: RequestOption): Promise<(Response$patchStorageV1CSINode$Status$200 | Response$patchStorageV1CSINode$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csinodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind CSIStorageCapacity */ + public async listStorageV1CSIStorageCapacityForAllNamespaces(params: Params$listStorageV1CSIStorageCapacityForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/csistoragecapacities`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind CSIStorageCapacity */ + public async listStorageV1NamespacedCSIStorageCapacity(params: Params$listStorageV1NamespacedCSIStorageCapacity, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a CSIStorageCapacity */ + public async createStorageV1NamespacedCSIStorageCapacity(params: Params$createStorageV1NamespacedCSIStorageCapacity, option?: RequestOption): Promise<(Response$createStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$createStorageV1NamespacedCSIStorageCapacity$Status$201 | Response$createStorageV1NamespacedCSIStorageCapacity$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of CSIStorageCapacity */ + public async deleteStorageV1CollectionNamespacedCSIStorageCapacity(params: Params$deleteStorageV1CollectionNamespacedCSIStorageCapacity, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified CSIStorageCapacity */ + public async readStorageV1NamespacedCSIStorageCapacity(params: Params$readStorageV1NamespacedCSIStorageCapacity, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified CSIStorageCapacity */ + public async replaceStorageV1NamespacedCSIStorageCapacity(params: Params$replaceStorageV1NamespacedCSIStorageCapacity, option?: RequestOption): Promise<(Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a CSIStorageCapacity */ + public async deleteStorageV1NamespacedCSIStorageCapacity(params: Params$deleteStorageV1NamespacedCSIStorageCapacity, option?: RequestOption): Promise<(Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified CSIStorageCapacity */ + public async patchStorageV1NamespacedCSIStorageCapacity(params: Params$patchStorageV1NamespacedCSIStorageCapacity, option?: RequestOption): Promise<(Response$patchStorageV1NamespacedCSIStorageCapacity$Status$200 | Response$patchStorageV1NamespacedCSIStorageCapacity$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind StorageClass */ + public async listStorageV1StorageClass(params: Params$listStorageV1StorageClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a StorageClass */ + public async createStorageV1StorageClass(params: Params$createStorageV1StorageClass, option?: RequestOption): Promise<(Response$createStorageV1StorageClass$Status$200 | Response$createStorageV1StorageClass$Status$201 | Response$createStorageV1StorageClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of StorageClass */ + public async deleteStorageV1CollectionStorageClass(params: Params$deleteStorageV1CollectionStorageClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified StorageClass */ + public async readStorageV1StorageClass(params: Params$readStorageV1StorageClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified StorageClass */ + public async replaceStorageV1StorageClass(params: Params$replaceStorageV1StorageClass, option?: RequestOption): Promise<(Response$replaceStorageV1StorageClass$Status$200 | Response$replaceStorageV1StorageClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a StorageClass */ + public async deleteStorageV1StorageClass(params: Params$deleteStorageV1StorageClass, option?: RequestOption): Promise<(Response$deleteStorageV1StorageClass$Status$200 | Response$deleteStorageV1StorageClass$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified StorageClass */ + public async patchStorageV1StorageClass(params: Params$patchStorageV1StorageClass, option?: RequestOption): Promise<(Response$patchStorageV1StorageClass$Status$200 | Response$patchStorageV1StorageClass$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/storageclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** list or watch objects of kind VolumeAttachment */ + public async listStorageV1VolumeAttachment(params: Params$listStorageV1VolumeAttachment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** create a VolumeAttachment */ + public async createStorageV1VolumeAttachment(params: Params$createStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$createStorageV1VolumeAttachment$Status$200 | Response$createStorageV1VolumeAttachment$Status$201 | Response$createStorageV1VolumeAttachment$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "POST", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete collection of VolumeAttachment */ + public async deleteStorageV1CollectionVolumeAttachment(params: Params$deleteStorageV1CollectionVolumeAttachment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read the specified VolumeAttachment */ + public async readStorageV1VolumeAttachment(params: Params$readStorageV1VolumeAttachment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace the specified VolumeAttachment */ + public async replaceStorageV1VolumeAttachment(params: Params$replaceStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$replaceStorageV1VolumeAttachment$Status$200 | Response$replaceStorageV1VolumeAttachment$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** delete a VolumeAttachment */ + public async deleteStorageV1VolumeAttachment(params: Params$deleteStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$deleteStorageV1VolumeAttachment$Status$200 | Response$deleteStorageV1VolumeAttachment$Status$202)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + gracePeriodSeconds: { value: params.parameter.gracePeriodSeconds, explode: false }, + orphanDependents: { value: params.parameter.orphanDependents, explode: false }, + propagationPolicy: { value: params.parameter.propagationPolicy, explode: false } + }; + return this.apiClient.request({ + httpMethod: "DELETE", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update the specified VolumeAttachment */ + public async patchStorageV1VolumeAttachment(params: Params$patchStorageV1VolumeAttachment, option?: RequestOption): Promise<(Response$patchStorageV1VolumeAttachment$Status$200 | Response$patchStorageV1VolumeAttachment$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** read status of the specified VolumeAttachment */ + public async readStorageV1VolumeAttachmentStatus(params: Params$readStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** replace status of the specified VolumeAttachment */ + public async replaceStorageV1VolumeAttachmentStatus(params: Params$replaceStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise<(Response$replaceStorageV1VolumeAttachmentStatus$Status$200 | Response$replaceStorageV1VolumeAttachmentStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": "*/*", + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PUT", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** partially update status of the specified VolumeAttachment */ + public async patchStorageV1VolumeAttachmentStatus(params: Params$patchStorageV1VolumeAttachmentStatus, option?: RequestOption): Promise<(Response$patchStorageV1VolumeAttachmentStatus$Status$200 | Response$patchStorageV1VolumeAttachmentStatus$Status$201)[ResponseContentType]> { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/volumeattachments/${encodeURIComponent(params.parameter.name)}/status`; + const headers = { + "Content-Type": params.headers["Content-Type"], + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + pretty: { value: params.parameter.pretty, explode: false }, + dryRun: { value: params.parameter.dryRun, explode: false }, + fieldManager: { value: params.parameter.fieldManager, explode: false }, + fieldValidation: { value: params.parameter.fieldValidation, explode: false }, + force: { value: params.parameter.force, explode: false } + }; + return this.apiClient.request({ + httpMethod: "PATCH", + url, + headers, + requestBody: params.requestBody, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchStorageV1CSIDriverList(params: Params$watchStorageV1CSIDriverList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csidrivers`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind CSIDriver. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchStorageV1CSIDriver(params: Params$watchStorageV1CSIDriver, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csidrivers/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchStorageV1CSINodeList(params: Params$watchStorageV1CSINodeList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csinodes`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind CSINode. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchStorageV1CSINode(params: Params$watchStorageV1CSINode, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csinodes/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchStorageV1CSIStorageCapacityListForAllNamespaces(params: Params$watchStorageV1CSIStorageCapacityListForAllNamespaces, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/csistoragecapacities`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchStorageV1NamespacedCSIStorageCapacityList(params: Params$watchStorageV1NamespacedCSIStorageCapacityList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchStorageV1NamespacedCSIStorageCapacity(params: Params$watchStorageV1NamespacedCSIStorageCapacity, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/namespaces/${encodeURIComponent(params.parameter.namespace)}/csistoragecapacities/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchStorageV1StorageClassList(params: Params$watchStorageV1StorageClassList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/storageclasses`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind StorageClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchStorageV1StorageClass(params: Params$watchStorageV1StorageClass, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/storageclasses/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. */ + public async watchStorageV1VolumeAttachmentList(params: Params$watchStorageV1VolumeAttachmentList, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/volumeattachments`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + /** watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter. */ + public async watchStorageV1VolumeAttachment(params: Params$watchStorageV1VolumeAttachment, option?: RequestOption): Promise { + const url = this.baseUrl + `/apis/storage.k8s.io/v1/watch/volumeattachments/${encodeURIComponent(params.parameter.name)}`; + const headers = { + Accept: params.headers.Accept + }; + const queryParameters: QueryParameters = { + allowWatchBookmarks: { value: params.parameter.allowWatchBookmarks, explode: false }, + continue: { value: params.parameter.continue, explode: false }, + fieldSelector: { value: params.parameter.fieldSelector, explode: false }, + labelSelector: { value: params.parameter.labelSelector, explode: false }, + limit: { value: params.parameter.limit, explode: false }, + pretty: { value: params.parameter.pretty, explode: false }, + resourceVersion: { value: params.parameter.resourceVersion, explode: false }, + resourceVersionMatch: { value: params.parameter.resourceVersionMatch, explode: false }, + sendInitialEvents: { value: params.parameter.sendInitialEvents, explode: false }, + timeoutSeconds: { value: params.parameter.timeoutSeconds, explode: false }, + watch: { value: params.parameter.watch, explode: false } + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers, + queryParameters: queryParameters + }, option); + } + public async logFileListHandler(option?: RequestOption): Promise { + const url = this.baseUrl + `/logs/`; + const headers = {}; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + public async logFileHandler(params: Params$logFileHandler, option?: RequestOption): Promise { + const url = this.baseUrl + `/logs/${encodeURIComponent(params.parameter.logpath)}`; + const headers = {}; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get service account issuer OpenID JSON Web Key Set (contains public token verification keys) */ + public async getServiceAccountIssuerOpenIDKeyset(option?: RequestOption): Promise { + const url = this.baseUrl + `/openid/v1/jwks/`; + const headers = { + Accept: "application/jwk-set+json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } + /** get the code version */ + public async getCodeVersion(option?: RequestOption): Promise { + const url = this.baseUrl + `/version/`; + const headers = { + Accept: "application/json" + }; + return this.apiClient.request({ + httpMethod: "GET", + url, + headers + }, option); + } +} diff --git a/test/__tests__/class/kubernetes-test.ts b/test/__tests__/class/kubernetes-test.ts index 73d547f4..f667fdb9 100644 --- a/test/__tests__/class/kubernetes-test.ts +++ b/test/__tests__/class/kubernetes-test.ts @@ -9,4 +9,9 @@ describe("Kubernetes", () => { const text = Utils.replaceVersionInfo(generateCode); await expect(text).toMatchFileSnapshot("./__snapshots__/kubernetes/client-v1.18.5.ts"); }); + test("client-v1.28.6.ts", async () => { + const generateCode = fs.readFileSync("test/code/class/kubernetes/client-v1.28.6.ts", { encoding: "utf-8" }); + const text = Utils.replaceVersionInfo(generateCode); + await expect(text).toMatchFileSnapshot("./__snapshots__/kubernetes/client-v1.28.6.ts"); + }); }); From b95351504722fe7d2d403ada576b92b2a6280c39 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 10:44:17 +0900 Subject: [PATCH 5/8] =?UTF-8?q?fix(parameter):=20path=E3=83=91=E3=83=A9?= =?UTF-8?q?=E3=83=A1=E3=83=BC=E3=82=BF=E3=82=92=E5=84=AA=E5=85=88=E3=81=97?= =?UTF-8?q?=E3=81=A4=E3=81=A4=E5=85=A5=E5=8A=9B=E9=A0=86=E3=82=92=E4=BF=9D?= =?UTF-8?q?=E6=8C=81=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E5=90=8C=E5=90=8D?= =?UTF-8?q?=E3=83=91=E3=83=A9=E3=83=A1=E3=83=BC=E3=82=BF=E3=81=AE=E8=A7=A3?= =?UTF-8?q?=E6=B1=BA=E3=83=AD=E3=82=B8=E3=83=83=E3=82=AF=E3=82=92=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../OpenApiTools/components/Parameter.ts | 46 +- .../__snapshots__/argo-rollout/client.ts | 2 +- .../class/__snapshots__/cloudflare/client.ts | 362 +- .../class/__snapshots__/format.domain/code.ts | 2 +- .../kubernetes/client-v1.18.5.ts | 3666 ++++++++--------- .../kubernetes/client-v1.28.6.ts | 2096 +++++----- .../mulit-type-test.domain/apiClient.ts | 2 +- .../mulit-type-test.domain/types.ts | 2 +- .../parameter/path-parameter.json | 88 + .../class/__snapshots__/split/apiClient.ts | 4 +- .../class/__snapshots__/split/types.ts | 2 +- .../template-only/api.test.domain.ts | 2 +- .../template-only/infer.domain.ts | 2 +- .../template-only/sync-api.test.domain.ts | 2 +- .../typedef-only/api.test.domain.ts | 2 +- .../typedef-only/infer.domain.ts | 2 +- .../typedef-only/json.properties.ts | 2 +- .../typedef-with-template/api.test.domain.ts | 4 +- .../typedef-with-template/api.v2.domain.ts | 2 +- .../typedef-with-template/infer.domain.ts | 2 +- .../typedef-with-template/path-parameter.ts | 43 +- .../typedef-with-template/ref-access.ts | 2 +- .../remote-ref-access.ts | 2 +- .../sync-api.test.domain.ts | 4 +- .../unknown.schema.domain/client.ts | 2 +- .../__snapshots__/cloudflare/client.ts | 362 +- .../__snapshots__/argo-rollout/client.ts | 2 +- .../__snapshots__/cloudflare/client.ts | 362 +- .../__snapshots__/format.domain/code.ts | 2 +- .../kubernetes/client-v1.18.5.ts | 3666 ++++++++--------- .../mulit-type-test.domain/apiClient.ts | 2 +- .../mulit-type-test.domain/types.ts | 2 +- .../parameter/path-parameter.json | 88 + .../__snapshots__/split/apiClient.ts | 4 +- .../functional/__snapshots__/split/types.ts | 2 +- .../template-only/api.test.domain.ts | 2 +- .../template-only/infer.domain.ts | 2 +- .../template-only/sync-api.test.domain.ts | 2 +- .../typedef-only/api.test.domain.ts | 2 +- .../typedef-only/infer.domain.ts | 2 +- .../typedef-only/json.properties.ts | 2 +- .../typedef-with-template/api.test.domain.ts | 4 +- .../typedef-with-template/api.v2.domain.ts | 2 +- .../typedef-with-template/infer.domain.ts | 2 +- .../typedef-with-template/path-parameter.ts | 43 +- .../typedef-with-template/ref-access.ts | 2 +- .../remote-ref-access.ts | 2 +- .../sync-api.test.domain.ts | 4 +- .../unknown.schema.domain/client.ts | 2 +- test/path-parameter/index.yml | 38 + 50 files changed, 5626 insertions(+), 5322 deletions(-) diff --git a/src/internal/OpenApiTools/components/Parameter.ts b/src/internal/OpenApiTools/components/Parameter.ts index 51e76090..c445de7e 100644 --- a/src/internal/OpenApiTools/components/Parameter.ts +++ b/src/internal/OpenApiTools/components/Parameter.ts @@ -100,6 +100,28 @@ export const generatePropertySignatureObject = ( }; }; +/** + * パラメータの `in` プロパティを返す。 + * + * inline パラメータはそのまま `in` を返す。 + * `$ref` 参照の場合はローカル参照を解決して store から実体を取得する。 + * store に存在しない場合(リモート参照など)は `undefined` を返す。 + */ +const resolveParameterIn = (store: Walker.Store, parameter: OpenApi.Parameter | OpenApi.Reference): string | undefined => { + if (!Guard.isReference(parameter)) { + return parameter.in; + } + const localRef = Reference.generateLocalReference(parameter); + if (!localRef) { + return undefined; + } + try { + return store.getParameter(localRef.path).in; + } catch { + return undefined; + } +}; + export const generatePropertySignatures = ( entryPoint: string, currentPoint: string, @@ -109,16 +131,11 @@ export const generatePropertySignatures = ( context: ToTypeNode.Context, converterContext: ConverterContext.Types, ): string[] => { - // 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) => { + // 入力順を維持しながら、同名パラメータが存在する場合は path パラメータを優先する。 + // Map はキーの挿入順を保持するため、既存キーへの set() は値のみ更新し順序は変わらない。 + // これにより OpenAPI spec の記述順を崩さず、path パラメータの required が保たれる。 + const typeElementMap = new Map(); + for (const parameter of parameters) { const { name, typeElement } = generatePropertySignatureObject( entryPoint, currentPoint, @@ -128,9 +145,12 @@ export const generatePropertySignatures = ( context, converterContext, ); - return { ...all, [name]: typeElement }; - }, {}); - return Object.values(typeElementMap); + const isPath = resolveParameterIn(store, parameter) === "path"; + if (!typeElementMap.has(name) || isPath) { + typeElementMap.set(name, typeElement); + } + } + return [...typeElementMap.values()]; }; export const generateInterface = ( diff --git a/test/__tests__/class/__snapshots__/argo-rollout/client.ts b/test/__tests__/class/__snapshots__/argo-rollout/client.ts index 07f9e35c..937164ba 100644 --- a/test/__tests__/class/__snapshots__/argo-rollout/client.ts +++ b/test/__tests__/class/__snapshots__/argo-rollout/client.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.0 // diff --git a/test/__tests__/class/__snapshots__/cloudflare/client.ts b/test/__tests__/class/__snapshots__/cloudflare/client.ts index a13bc708..5d9f5a38 100644 --- a/test/__tests__/class/__snapshots__/cloudflare/client.ts +++ b/test/__tests__/class/__snapshots__/cloudflare/client.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.3 // @@ -19030,11 +19030,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; @@ -19123,9 +19123,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; @@ -19134,6 +19134,7 @@ 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; @@ -19144,7 +19145,6 @@ 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; @@ -19243,9 +19243,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": {}; @@ -19342,10 +19342,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 & { @@ -19376,14 +19376,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 & { @@ -19394,6 +19394,7 @@ 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; @@ -19405,7 +19406,6 @@ 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; @@ -19414,8 +19414,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 { - since_minutes: Schemas.digital$experience$monitoring_since_minutes; account_id: Schemas.digital$experience$monitoring_account_identifier; + since_minutes: Schemas.digital$experience$monitoring_since_minutes; } export interface Response$dex$fleet$status$live$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_live_response; @@ -19424,16 +19424,20 @@ 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 */ @@ -19444,10 +19448,6 @@ 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 & { @@ -19458,6 +19458,10 @@ 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 */ @@ -19466,10 +19470,6 @@ 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 & { @@ -19480,6 +19480,8 @@ 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 */ @@ -19490,8 +19492,6 @@ 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 & { @@ -19503,12 +19503,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 & { @@ -19533,6 +19533,10 @@ 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 */ @@ -19543,10 +19547,6 @@ 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 & { @@ -19557,6 +19557,10 @@ 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 */ @@ -19565,10 +19569,6 @@ 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 & { @@ -19579,6 +19579,10 @@ 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 */ @@ -19587,10 +19591,6 @@ 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 & { @@ -19796,9 +19796,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; @@ -20354,9 +20354,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; @@ -20492,10 +20492,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; @@ -20550,11 +20550,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; @@ -20563,8 +20563,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 { - domain?: string; account_id: Schemas.intel_identifier; + domain?: string; } export interface Response$domain$intelligence$get$domain$details$Status$200 { "application/json": Schemas.intel_single_response; @@ -20573,8 +20573,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 { - domain?: any; account_id: Schemas.intel_identifier; + domain?: any; } export interface Response$domain$history$get$domain$history$Status$200 { "application/json": Schemas.intel_response; @@ -20583,8 +20583,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 { - domain?: any; account_id: Schemas.intel_identifier; + domain?: any; } export interface Response$domain$intelligence$get$multiple$domain$details$Status$200 { "application/json": Schemas.intel_collection_response; @@ -20593,9 +20593,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; @@ -20625,8 +20625,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 { - domain?: string; account_id: Schemas.intel_identifier; + domain?: string; } export interface Response$whois$record$get$whois$record$Status$200 { "application/json": Schemas.intel_schemas$single_response; @@ -21021,13 +21021,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 & { @@ -21210,11 +21210,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; @@ -21468,6 +21468,7 @@ 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; @@ -21476,7 +21477,6 @@ 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; @@ -21677,9 +21677,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; @@ -21691,8 +21691,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 { - "Upload-Creator"?: Schemas.stream_creator; account_id: Schemas.stream_account_identifier; + "Upload-Creator"?: Schemas.stream_creator; } export interface RequestBody$stream$videos$upload$videos$via$direct$upload$ur$ls { "application/json": Schemas.stream_direct_upload_request; @@ -21732,8 +21732,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 { - include_counts?: Schemas.stream_include_counts; account_id: Schemas.stream_schemas$identifier; + include_counts?: Schemas.stream_include_counts; } export interface Response$stream$live$inputs$list$live$inputs$Status$200 { "application/json": Schemas.stream_live_input_response_collection; @@ -21831,8 +21831,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 { - creator?: Schemas.stream_creator; account_id: Schemas.stream_account_identifier; + creator?: Schemas.stream_creator; } export interface Response$stream$videos$storage$usage$Status$200 { "application/json": Schemas.stream_storage_use_response; @@ -21914,6 +21914,7 @@ 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; @@ -21925,7 +21926,6 @@ 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; @@ -21980,9 +21980,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; @@ -22008,11 +22008,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; @@ -22031,12 +22031,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; @@ -22088,6 +22088,7 @@ 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; @@ -22099,7 +22100,6 @@ 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; @@ -22160,6 +22160,7 @@ 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; @@ -22170,7 +22171,6 @@ 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; @@ -22303,11 +22303,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 { } @@ -22325,13 +22325,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": { @@ -22378,12 +22378,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; @@ -22440,10 +22440,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 { - limit?: number; - cursor?: string; id: Schemas.workers_schemas$id; account_id: Schemas.workers_identifier; + limit?: number; + cursor?: string; } export interface Response$durable$objects$namespace$list$objects$Status$200 { "application/json": Schemas.workers_api$response$collection & { @@ -22671,10 +22671,10 @@ export interface Response$worker$script$download$worker$Status$4XX { undefined: any; } export interface Parameter$worker$script$upload$worker$module { - /** 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; + /** 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; } export type RequestBody$worker$script$upload$worker$module = RequestBodies.workers_script_upload.Content; export interface Response$worker$script$upload$worker$module$Status$200 { @@ -22684,22 +22684,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 { - /** 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; + /** 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$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": { @@ -22844,13 +22844,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": { @@ -23321,6 +23321,7 @@ 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; @@ -23333,7 +23334,6 @@ 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; @@ -23351,11 +23351,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 & { @@ -23368,11 +23368,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": { @@ -23558,6 +23558,8 @@ 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; @@ -23565,8 +23567,6 @@ 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 & { @@ -23579,6 +23579,8 @@ 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; @@ -23587,8 +23589,6 @@ 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 & { @@ -23601,11 +23601,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; @@ -23634,13 +23634,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; @@ -23892,8 +23892,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 { - monitor?: any; account_identifier: Schemas.load$balancing_components$schemas$identifier; + monitor?: any; } export interface Response$account$load$balancer$pools$list$pools$Status$200 { "application/json": Schemas.load$balancing_schemas$response_collection; @@ -24062,10 +24062,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; @@ -24084,10 +24084,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; @@ -24375,12 +24375,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; @@ -24836,10 +24836,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; @@ -25076,13 +25076,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 & { @@ -25095,13 +25095,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 & { @@ -25114,11 +25114,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 & { @@ -25196,11 +25196,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 & { @@ -25512,6 +25512,7 @@ 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; @@ -25524,7 +25525,6 @@ 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": { @@ -26130,9 +26130,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 */ @@ -27736,6 +27736,7 @@ 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; @@ -27748,7 +27749,6 @@ 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; @@ -28577,6 +28577,7 @@ 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")[]; @@ -28585,7 +28586,6 @@ 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": { @@ -28626,6 +28626,7 @@ 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")[]; @@ -28634,7 +28635,6 @@ 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": { @@ -28675,6 +28675,7 @@ 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")[]; @@ -28683,7 +28684,6 @@ 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": { @@ -31153,8 +31153,8 @@ export interface Response$radar$get$reports$datasets$Status$400 { }; } export interface Parameter$radar$get$reports$dataset$download { - date?: string | null; alias: string; + date?: string | null; } export interface Response$radar$get$reports$dataset$download$Status$200 { "text/csv": string; @@ -31978,6 +31978,7 @@ 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")[]; @@ -31989,7 +31990,6 @@ 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": { @@ -32030,6 +32030,7 @@ 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")[]; @@ -32041,7 +32042,6 @@ 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": { @@ -32082,6 +32082,7 @@ 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")[]; @@ -32093,7 +32094,6 @@ 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": { @@ -32134,6 +32134,7 @@ 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")[]; @@ -32146,7 +32147,6 @@ 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": { @@ -32187,6 +32187,7 @@ 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")[]; @@ -32199,7 +32200,6 @@ 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": { @@ -32240,6 +32240,7 @@ 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")[]; @@ -32251,7 +32252,6 @@ 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": { @@ -32344,6 +32344,7 @@ 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")[]; @@ -32355,7 +32356,6 @@ 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": { @@ -32396,6 +32396,7 @@ 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")[]; @@ -32407,7 +32408,6 @@ 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": { @@ -32448,6 +32448,7 @@ 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")[]; @@ -32459,7 +32460,6 @@ 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": { @@ -32500,6 +32500,7 @@ 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")[]; @@ -32512,7 +32513,6 @@ 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": { @@ -32553,6 +32553,7 @@ 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")[]; @@ -32565,7 +32566,6 @@ 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": { @@ -32606,6 +32606,7 @@ 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")[]; @@ -32617,7 +32618,6 @@ 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": { @@ -32693,8 +32693,8 @@ export interface Response$radar$get$entities$asn$list$Status$400 { }; } export interface Parameter$radar$get$entities$asn$by$id { - format?: "JSON" | "CSV"; asn: number; + format?: "JSON" | "CSV"; } export interface Response$radar$get$entities$asn$by$id$Status$200 { "application/json": { @@ -32740,9 +32740,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": { @@ -32875,8 +32875,8 @@ export interface Response$radar$get$entities$locations$Status$400 { }; } export interface Parameter$radar$get$entities$location$by$alpha2 { - format?: "JSON" | "CSV"; location: string; + format?: "JSON" | "CSV"; } export interface Response$radar$get$entities$location$by$alpha2$Status$200 { "application/json": { @@ -33703,6 +33703,7 @@ 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")[]; @@ -33717,7 +33718,6 @@ 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": { @@ -33758,6 +33758,7 @@ 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")[]; @@ -33772,7 +33773,6 @@ 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": { @@ -33813,6 +33813,7 @@ 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")[]; @@ -33827,7 +33828,6 @@ 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": { @@ -33868,6 +33868,7 @@ 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")[]; @@ -33882,7 +33883,6 @@ 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": { @@ -33923,6 +33923,7 @@ 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")[]; @@ -33937,7 +33938,6 @@ 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": { @@ -33978,6 +33978,7 @@ 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")[]; @@ -33992,7 +33993,6 @@ 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": { @@ -34033,6 +34033,7 @@ 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")[]; @@ -34047,7 +34048,6 @@ 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": { @@ -34251,6 +34251,7 @@ 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")[]; @@ -34265,7 +34266,6 @@ 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": { @@ -34306,6 +34306,7 @@ 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")[]; @@ -34320,7 +34321,6 @@ 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": { @@ -34361,6 +34361,7 @@ 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")[]; @@ -34375,7 +34376,6 @@ 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": { @@ -34416,6 +34416,7 @@ 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")[]; @@ -34430,7 +34431,6 @@ 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": { @@ -34471,6 +34471,7 @@ 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")[]; @@ -34485,7 +34486,6 @@ 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": { @@ -34526,6 +34526,7 @@ 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")[]; @@ -34540,7 +34541,6 @@ 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": { @@ -34581,6 +34581,7 @@ 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")[]; @@ -34595,7 +34596,6 @@ 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": { @@ -35037,12 +35037,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": { @@ -36456,6 +36456,7 @@ 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; @@ -36463,7 +36464,6 @@ 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 & { @@ -36476,6 +36476,7 @@ 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; @@ -36484,7 +36485,6 @@ 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 & { @@ -36747,8 +36747,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 { - bins?: string; zone_id: Schemas.argo$analytics_identifier; + bins?: string; } export interface Response$argo$analytics$for$zone$argo$analytics$for$a$zone$Status$200 { "application/json": Schemas.argo$analytics_response_single; @@ -37346,6 +37346,7 @@ 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; @@ -37371,7 +37372,6 @@ 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; @@ -37525,13 +37525,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; @@ -37588,6 +37588,8 @@ 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; @@ -37596,8 +37598,6 @@ 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; @@ -37633,6 +37633,8 @@ 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; @@ -37642,8 +37644,6 @@ 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; @@ -37700,6 +37700,8 @@ 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 @@ -37707,8 +37709,6 @@ 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 & { @@ -37723,6 +37723,8 @@ 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 @@ -37730,8 +37732,6 @@ 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": { @@ -37991,6 +37991,7 @@ 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; @@ -38003,7 +38004,6 @@ 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; @@ -38085,6 +38085,7 @@ 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; @@ -38098,7 +38099,6 @@ 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; @@ -38117,11 +38117,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; @@ -39797,6 +39797,7 @@ 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. */ @@ -39805,7 +39806,6 @@ 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; @@ -39827,9 +39827,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; @@ -39892,11 +39892,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; @@ -39920,9 +39920,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; @@ -39942,6 +39942,8 @@ 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; @@ -39950,8 +39952,6 @@ 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; @@ -39960,9 +39960,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; @@ -39971,9 +39971,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; @@ -39982,9 +39982,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; @@ -40177,10 +40177,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; @@ -40189,10 +40189,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; @@ -40237,8 +40237,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 { - mtls_certificate_id?: string; zone_identifier: Schemas.ApQU2qAj_identifier; + mtls_certificate_id?: string; } export interface Response$client$certificate$for$a$zone$list$hostname$associations$Status$200 { "application/json": Schemas.ApQU2qAj_hostname_associations_response; @@ -40259,12 +40259,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; @@ -40318,11 +40318,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; @@ -40407,6 +40407,7 @@ 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; @@ -40414,7 +40415,6 @@ 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; @@ -40581,10 +40581,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; @@ -40638,6 +40638,7 @@ 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; @@ -40645,7 +40646,6 @@ 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; @@ -40731,6 +40731,7 @@ 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; @@ -40742,7 +40743,6 @@ 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; @@ -40810,13 +40810,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; @@ -40939,12 +40939,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; @@ -41013,9 +41013,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; @@ -41084,13 +41084,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; @@ -41355,10 +41355,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 { - timestamps?: Schemas.dFBpZBFx_timestamps; - fields?: string; ray_identifier: Schemas.dFBpZBFx_ray_identifier; zone_identifier: Schemas.dFBpZBFx_identifier; + timestamps?: Schemas.dFBpZBFx_timestamps; + fields?: string; } export interface Response$logs$received$get$logs$ray$i$ds$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41367,13 +41367,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; @@ -41526,9 +41526,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; @@ -41847,8 +41847,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 { - status?: "all"; zone_identifier: Schemas.ApQU2qAj_identifier; + status?: "all"; } export interface Response$certificate$packs$list$certificate$packs$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_pack_response_collection; @@ -41957,8 +41957,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 { - retry?: string; zone_identifier: Schemas.ApQU2qAj_identifier; + retry?: string; } export interface Response$ssl$verification$ssl$verification$details$Status$200 { "application/json": Schemas.ApQU2qAj_ssl_verification_response_collection; @@ -42383,10 +42383,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; @@ -42395,6 +42395,7 @@ 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; @@ -42402,7 +42403,6 @@ 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; @@ -42411,13 +42411,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; @@ -42426,11 +42426,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__/format.domain/code.ts b/test/__tests__/class/__snapshots__/format.domain/code.ts index f59a8f33..0390f1f1 100644 --- a/test/__tests__/class/__snapshots__/format.domain/code.ts +++ b/test/__tests__/class/__snapshots__/format.domain/code.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/kubernetes/client-v1.18.5.ts b/test/__tests__/class/__snapshots__/kubernetes/client-v1.18.5.ts index 96e7f044..28224b4d 100644 --- a/test/__tests__/class/__snapshots__/kubernetes/client-v1.18.5.ts +++ b/test/__tests__/class/__snapshots__/kubernetes/client-v1.18.5.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.0 // @@ -7141,10 +7141,10 @@ export interface Response$listCoreV1ComponentStatus$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ComponentStatusList; } export interface Parameter$readCoreV1ComponentStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ComponentStatus */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1ComponentStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ComponentStatus; @@ -7355,10 +7355,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; - /** If 'true', then the output is pretty printed. */ - pretty?: 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$createCoreV1NamespacedBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; export interface Response$createCoreV1NamespacedBinding$Status$200 { @@ -7377,6 +7377,8 @@ 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. */ @@ -7403,8 +7405,6 @@ 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; @@ -7414,14 +7414,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 { @@ -7440,6 +7440,8 @@ 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. */ @@ -7474,8 +7476,6 @@ 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 { @@ -7484,16 +7484,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; @@ -7501,16 +7501,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 { @@ -7524,6 +7524,10 @@ 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 */ @@ -7534,10 +7538,6 @@ 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 { @@ -7551,6 +7551,10 @@ 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 */ @@ -7559,10 +7563,6 @@ 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 { @@ -7571,6 +7571,8 @@ 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. */ @@ -7597,8 +7599,6 @@ 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; @@ -7608,14 +7608,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 { @@ -7634,6 +7634,8 @@ 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. */ @@ -7668,8 +7670,6 @@ 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 { @@ -7678,16 +7678,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; @@ -7695,16 +7695,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 { @@ -7718,6 +7718,10 @@ 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 */ @@ -7728,10 +7732,6 @@ 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 { @@ -7745,6 +7745,10 @@ 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 */ @@ -7753,10 +7757,6 @@ 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 { @@ -7765,6 +7765,8 @@ 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. */ @@ -7791,8 +7793,6 @@ 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; @@ -7802,14 +7802,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 { @@ -7828,6 +7828,8 @@ 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. */ @@ -7862,8 +7864,6 @@ 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 { @@ -7872,16 +7872,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; @@ -7889,16 +7889,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 { @@ -7912,6 +7912,10 @@ 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 */ @@ -7922,10 +7926,6 @@ 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 { @@ -7939,6 +7939,10 @@ 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 */ @@ -7947,10 +7951,6 @@ 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 { @@ -7959,6 +7959,8 @@ 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. */ @@ -7985,8 +7987,6 @@ 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; @@ -7996,14 +7996,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 { @@ -8022,6 +8022,8 @@ 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. */ @@ -8056,8 +8058,6 @@ 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 { @@ -8066,16 +8066,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; @@ -8083,16 +8083,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 { @@ -8106,6 +8106,10 @@ 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 */ @@ -8116,10 +8120,6 @@ 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 { @@ -8133,6 +8133,10 @@ 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 */ @@ -8141,10 +8145,6 @@ 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 { @@ -8153,6 +8153,8 @@ 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. */ @@ -8179,8 +8181,6 @@ 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; @@ -8190,14 +8190,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 { @@ -8216,6 +8216,8 @@ 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. */ @@ -8250,8 +8252,6 @@ 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 { @@ -8260,16 +8260,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; @@ -8277,16 +8277,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 { @@ -8300,6 +8300,10 @@ 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 */ @@ -8310,10 +8314,6 @@ 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 { @@ -8327,6 +8327,10 @@ 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 */ @@ -8335,10 +8339,6 @@ 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 { @@ -8347,12 +8347,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; @@ -8360,16 +8360,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 { @@ -8383,6 +8383,10 @@ 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 */ @@ -8391,10 +8395,6 @@ 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 { @@ -8403,6 +8403,8 @@ 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. */ @@ -8429,8 +8431,6 @@ 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; @@ -8440,14 +8440,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 { @@ -8466,6 +8466,8 @@ 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. */ @@ -8500,8 +8502,6 @@ 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 { @@ -8510,16 +8510,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; @@ -8527,16 +8527,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 { @@ -8550,6 +8550,10 @@ 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 */ @@ -8560,10 +8564,6 @@ 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 { @@ -8577,6 +8577,10 @@ 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 */ @@ -8585,10 +8589,6 @@ 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 { @@ -8599,6 +8599,10 @@ 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. */ @@ -8607,10 +8611,6 @@ 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; @@ -8618,6 +8618,10 @@ 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. */ @@ -8626,10 +8630,6 @@ 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; @@ -8639,12 +8639,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 { @@ -8667,12 +8667,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; @@ -8697,6 +8697,10 @@ 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. */ @@ -8705,10 +8709,6 @@ 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; @@ -8718,6 +8718,10 @@ 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. */ @@ -8726,10 +8730,6 @@ 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; @@ -8743,6 +8743,10 @@ 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. */ @@ -8753,10 +8757,6 @@ 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; @@ -8765,188 +8765,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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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; @@ -8954,16 +8954,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 { @@ -8977,6 +8977,10 @@ 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 */ @@ -8985,10 +8989,6 @@ 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 { @@ -8997,6 +8997,8 @@ 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. */ @@ -9023,8 +9025,6 @@ 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; @@ -9034,14 +9034,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 { @@ -9060,6 +9060,8 @@ 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. */ @@ -9094,8 +9096,6 @@ 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 { @@ -9104,16 +9104,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; @@ -9121,16 +9121,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 { @@ -9144,6 +9144,10 @@ 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 */ @@ -9154,10 +9158,6 @@ 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 { @@ -9171,6 +9171,10 @@ 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 */ @@ -9179,10 +9183,6 @@ 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 { @@ -9191,6 +9191,8 @@ 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. */ @@ -9217,8 +9219,6 @@ 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; @@ -9228,14 +9228,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 { @@ -9254,6 +9254,8 @@ 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. */ @@ -9288,8 +9290,6 @@ 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 { @@ -9298,16 +9298,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; @@ -9315,16 +9315,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 { @@ -9338,6 +9338,10 @@ 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 */ @@ -9348,10 +9352,6 @@ 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 { @@ -9365,6 +9365,10 @@ 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 */ @@ -9373,10 +9377,6 @@ 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 { @@ -9385,12 +9385,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; @@ -9398,16 +9398,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 { @@ -9421,6 +9421,10 @@ 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 */ @@ -9429,10 +9433,6 @@ 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 { @@ -9441,12 +9441,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; @@ -9454,16 +9454,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 { @@ -9477,6 +9477,10 @@ 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 */ @@ -9485,10 +9489,6 @@ 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 { @@ -9497,6 +9497,8 @@ 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. */ @@ -9523,8 +9525,6 @@ 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; @@ -9534,14 +9534,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 { @@ -9560,6 +9560,8 @@ 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. */ @@ -9594,8 +9596,6 @@ 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 { @@ -9604,16 +9604,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; @@ -9621,16 +9621,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 { @@ -9644,6 +9644,10 @@ 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 */ @@ -9654,10 +9658,6 @@ 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 { @@ -9671,6 +9671,10 @@ 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 */ @@ -9679,10 +9683,6 @@ 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 { @@ -9691,12 +9691,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; @@ -9704,16 +9704,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 { @@ -9727,6 +9727,10 @@ 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 */ @@ -9735,10 +9739,6 @@ 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 { @@ -9747,6 +9747,8 @@ 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. */ @@ -9773,8 +9775,6 @@ 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; @@ -9784,14 +9784,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 { @@ -9810,6 +9810,8 @@ 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. */ @@ -9844,8 +9846,6 @@ 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 { @@ -9854,16 +9854,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; @@ -9871,16 +9871,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 { @@ -9894,6 +9894,10 @@ 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 */ @@ -9904,10 +9908,6 @@ 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 { @@ -9921,6 +9921,10 @@ 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 */ @@ -9929,10 +9933,6 @@ 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 { @@ -9941,6 +9941,8 @@ 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. */ @@ -9967,8 +9969,6 @@ 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; @@ -9978,14 +9978,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 { @@ -10004,6 +10004,8 @@ 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. */ @@ -10038,8 +10040,6 @@ 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 { @@ -10048,16 +10048,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; @@ -10065,16 +10065,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 { @@ -10088,6 +10088,10 @@ 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 */ @@ -10098,10 +10102,6 @@ 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 { @@ -10115,6 +10115,10 @@ 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 */ @@ -10123,10 +10127,6 @@ 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 { @@ -10139,12 +10139,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; @@ -10165,6 +10165,8 @@ 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. */ @@ -10191,8 +10193,6 @@ 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; @@ -10202,14 +10202,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 { @@ -10228,16 +10228,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; @@ -10245,16 +10245,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 { @@ -10268,6 +10268,10 @@ 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 */ @@ -10278,10 +10282,6 @@ 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 { @@ -10295,6 +10295,10 @@ 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 */ @@ -10303,10 +10307,6 @@ 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 { @@ -10315,166 +10315,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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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; @@ -10482,16 +10482,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 { @@ -10505,6 +10505,10 @@ 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 */ @@ -10513,10 +10517,6 @@ 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 { @@ -10525,14 +10525,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; @@ -10540,14 +10540,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 { @@ -10561,6 +10561,8 @@ 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 */ @@ -10571,8 +10573,6 @@ 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 { @@ -10586,6 +10586,8 @@ 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 */ @@ -10594,8 +10596,6 @@ 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 { @@ -10608,10 +10608,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; - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the Namespace */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export type RequestBody$replaceCoreV1NamespaceFinalize = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1NamespaceFinalize$Status$200 { @@ -10625,10 +10625,10 @@ export interface Response$replaceCoreV1NamespaceFinalize$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$readCoreV1NamespaceStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the Namespace */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1NamespaceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -10636,14 +10636,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 { @@ -10657,6 +10657,8 @@ 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 */ @@ -10665,8 +10667,6 @@ 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 { @@ -10776,14 +10776,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; @@ -10791,14 +10791,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 { @@ -10812,6 +10812,8 @@ 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 */ @@ -10822,8 +10824,6 @@ 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 { @@ -10837,6 +10837,8 @@ 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 */ @@ -10845,8 +10847,6 @@ 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 { @@ -10855,136 +10855,136 @@ export interface Response$patchCoreV1Node$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$connectCoreV1GetNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1GetNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1PutNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1PostNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1DeleteNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1OptionsNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1HeadNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1PatchNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNodeProxyWithPath { - /** path to the resource */ - path: string; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + path: string; } export interface Response$connectCoreV1PatchNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NodeStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the Node */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1NodeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -10992,14 +10992,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 { @@ -11013,6 +11013,8 @@ 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 */ @@ -11021,8 +11023,6 @@ 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 { @@ -11167,14 +11167,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; @@ -11182,14 +11182,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 { @@ -11203,6 +11203,8 @@ 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 */ @@ -11213,8 +11215,6 @@ 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 { @@ -11228,6 +11228,8 @@ 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 */ @@ -11236,8 +11238,6 @@ 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 { @@ -11246,10 +11246,10 @@ export interface Response$patchCoreV1PersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$readCoreV1PersistentVolumeStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the PersistentVolume */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -11257,14 +11257,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 { @@ -11278,6 +11278,8 @@ 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 */ @@ -11286,8 +11288,6 @@ 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 { @@ -11734,6 +11734,8 @@ 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. */ @@ -11742,8 +11744,6 @@ 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; @@ -11771,6 +11771,10 @@ 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. */ @@ -11779,10 +11783,6 @@ 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; @@ -11810,6 +11810,8 @@ 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. */ @@ -11818,8 +11820,6 @@ 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; @@ -11847,6 +11847,10 @@ 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. */ @@ -11855,10 +11859,6 @@ 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; @@ -11886,6 +11886,8 @@ 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. */ @@ -11894,8 +11896,6 @@ 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; @@ -11923,6 +11923,10 @@ 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. */ @@ -11931,10 +11935,6 @@ 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; @@ -11962,6 +11962,8 @@ 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. */ @@ -11970,8 +11972,6 @@ 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; @@ -11999,6 +11999,10 @@ 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. */ @@ -12007,10 +12011,6 @@ 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; @@ -12038,6 +12038,8 @@ 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. */ @@ -12046,8 +12048,6 @@ 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; @@ -12075,6 +12075,10 @@ 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. */ @@ -12083,10 +12087,6 @@ 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; @@ -12114,6 +12114,8 @@ 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. */ @@ -12122,8 +12124,6 @@ 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; @@ -12151,6 +12151,10 @@ 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. */ @@ -12159,10 +12163,6 @@ 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; @@ -12190,6 +12190,8 @@ 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. */ @@ -12198,8 +12200,6 @@ 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; @@ -12227,6 +12227,10 @@ 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. */ @@ -12235,10 +12239,6 @@ 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; @@ -12266,6 +12266,8 @@ 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. */ @@ -12274,8 +12276,6 @@ 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; @@ -12303,6 +12303,10 @@ 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. */ @@ -12311,10 +12315,6 @@ 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; @@ -12342,6 +12342,8 @@ 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. */ @@ -12350,8 +12352,6 @@ 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; @@ -12379,6 +12379,10 @@ 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. */ @@ -12387,10 +12391,6 @@ 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; @@ -12418,6 +12418,8 @@ 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. */ @@ -12426,8 +12428,6 @@ 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; @@ -12455,6 +12455,10 @@ 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. */ @@ -12463,10 +12467,6 @@ 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; @@ -12494,6 +12494,8 @@ 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. */ @@ -12502,8 +12504,6 @@ 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; @@ -12531,6 +12531,10 @@ 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. */ @@ -12539,10 +12543,6 @@ 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; @@ -12570,6 +12570,8 @@ 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. */ @@ -12578,8 +12580,6 @@ 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; @@ -12607,6 +12607,10 @@ 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. */ @@ -12615,10 +12619,6 @@ 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; @@ -12646,6 +12646,8 @@ 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. */ @@ -12654,8 +12656,6 @@ 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; @@ -12718,6 +12718,8 @@ 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. */ @@ -12726,8 +12728,6 @@ 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; @@ -12825,6 +12825,8 @@ 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. */ @@ -12833,8 +12835,6 @@ 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; @@ -13205,14 +13205,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; @@ -13220,14 +13220,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 { @@ -13241,6 +13241,8 @@ 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 */ @@ -13251,8 +13253,6 @@ 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 { @@ -13266,6 +13266,8 @@ 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 */ @@ -13274,8 +13276,6 @@ 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 { @@ -13385,14 +13385,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; @@ -13400,14 +13400,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 { @@ -13421,6 +13421,8 @@ 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 */ @@ -13431,8 +13433,6 @@ 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 { @@ -13446,6 +13446,8 @@ 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 */ @@ -13454,8 +13456,6 @@ 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 { @@ -13517,6 +13517,8 @@ 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. */ @@ -13525,8 +13527,6 @@ 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; @@ -13589,6 +13589,8 @@ 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. */ @@ -13597,8 +13599,6 @@ 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; @@ -13714,14 +13714,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; @@ -13729,14 +13729,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 { @@ -13750,6 +13750,8 @@ 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 */ @@ -13760,8 +13762,6 @@ 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 { @@ -13775,6 +13775,8 @@ 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 */ @@ -13783,8 +13785,6 @@ 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 { @@ -13894,14 +13894,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; @@ -13909,14 +13909,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 { @@ -13930,6 +13930,8 @@ 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 */ @@ -13940,8 +13942,6 @@ 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 { @@ -13955,6 +13955,8 @@ 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 */ @@ -13963,8 +13965,6 @@ 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 { @@ -14026,6 +14026,8 @@ 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. */ @@ -14034,8 +14036,6 @@ 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; @@ -14098,6 +14098,8 @@ 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. */ @@ -14106,8 +14108,6 @@ 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; @@ -14228,14 +14228,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; @@ -14243,14 +14243,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 { @@ -14264,6 +14264,8 @@ 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 */ @@ -14274,8 +14276,6 @@ 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 { @@ -14289,6 +14289,8 @@ 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 */ @@ -14297,8 +14299,6 @@ 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 { @@ -14307,10 +14307,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 { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CustomResourceDefinition */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -14318,14 +14318,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 { @@ -14339,6 +14339,8 @@ 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 */ @@ -14347,8 +14349,6 @@ 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 { @@ -14410,6 +14410,8 @@ 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. */ @@ -14418,8 +14420,6 @@ 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; @@ -14535,14 +14535,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; @@ -14550,14 +14550,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 { @@ -14571,6 +14571,8 @@ 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 */ @@ -14581,8 +14583,6 @@ 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 { @@ -14596,6 +14596,8 @@ 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 */ @@ -14604,8 +14606,6 @@ 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 { @@ -14614,10 +14614,10 @@ export interface Response$patchApiextensionsV1beta1CustomResourceDefinition$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$readApiextensionsV1beta1CustomResourceDefinitionStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CustomResourceDefinition */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; @@ -14625,14 +14625,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 { @@ -14646,6 +14646,8 @@ 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 */ @@ -14654,8 +14656,6 @@ 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 { @@ -14717,6 +14717,8 @@ 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. */ @@ -14725,8 +14727,6 @@ 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; @@ -14847,14 +14847,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; @@ -14862,14 +14862,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 { @@ -14883,6 +14883,8 @@ 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 */ @@ -14893,8 +14895,6 @@ 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 { @@ -14908,6 +14908,8 @@ 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 */ @@ -14916,8 +14918,6 @@ 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 { @@ -14926,10 +14926,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 { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the APIService */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -14937,14 +14937,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 { @@ -14958,6 +14958,8 @@ 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 */ @@ -14966,8 +14968,6 @@ 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 { @@ -15029,6 +15029,8 @@ 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. */ @@ -15037,8 +15039,6 @@ 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; @@ -15154,14 +15154,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; @@ -15169,14 +15169,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 { @@ -15190,6 +15190,8 @@ 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 */ @@ -15200,8 +15202,6 @@ 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 { @@ -15215,6 +15215,8 @@ 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 */ @@ -15223,8 +15225,6 @@ 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 { @@ -15233,10 +15233,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 { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the APIService */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiregistrationV1beta1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; @@ -15244,14 +15244,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 { @@ -15265,6 +15265,8 @@ 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 */ @@ -15273,8 +15275,6 @@ 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 { @@ -15336,6 +15336,8 @@ 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. */ @@ -15344,8 +15346,6 @@ 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; @@ -15470,6 +15470,8 @@ 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. */ @@ -15496,8 +15498,6 @@ 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; @@ -15507,14 +15507,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 { @@ -15533,6 +15533,8 @@ 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. */ @@ -15567,8 +15569,6 @@ 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 { @@ -15577,16 +15577,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; @@ -15594,16 +15594,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 { @@ -15617,6 +15617,10 @@ 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 */ @@ -15627,10 +15631,6 @@ 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 { @@ -15644,6 +15644,10 @@ 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 */ @@ -15652,10 +15656,6 @@ 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 { @@ -15664,6 +15664,8 @@ 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. */ @@ -15690,8 +15692,6 @@ 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; @@ -15701,14 +15701,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 { @@ -15727,6 +15727,8 @@ 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. */ @@ -15761,8 +15763,6 @@ 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 { @@ -15771,16 +15771,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; @@ -15788,16 +15788,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 { @@ -15811,6 +15811,10 @@ 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 */ @@ -15821,10 +15825,6 @@ 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 { @@ -15838,6 +15838,10 @@ 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 */ @@ -15846,10 +15850,6 @@ 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 { @@ -15858,12 +15858,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; @@ -15871,16 +15871,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 { @@ -15894,6 +15894,10 @@ 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 */ @@ -15902,10 +15906,6 @@ 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 { @@ -15914,6 +15914,8 @@ 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. */ @@ -15940,8 +15942,6 @@ 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; @@ -15951,14 +15951,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 { @@ -15977,6 +15977,8 @@ 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. */ @@ -16011,8 +16013,6 @@ 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 { @@ -16021,16 +16021,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; @@ -16038,16 +16038,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 { @@ -16061,6 +16061,10 @@ 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 */ @@ -16071,10 +16075,6 @@ 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 { @@ -16088,6 +16088,10 @@ 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 */ @@ -16096,10 +16100,6 @@ 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 { @@ -16108,12 +16108,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; @@ -16121,16 +16121,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 { @@ -16144,6 +16144,10 @@ 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 */ @@ -16152,10 +16156,6 @@ 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 { @@ -16164,12 +16164,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; @@ -16177,16 +16177,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 { @@ -16200,6 +16200,10 @@ 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 */ @@ -16208,10 +16212,6 @@ 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 { @@ -16220,6 +16220,8 @@ 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. */ @@ -16246,8 +16248,6 @@ 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; @@ -16257,14 +16257,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 { @@ -16283,6 +16283,8 @@ 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. */ @@ -16317,8 +16319,6 @@ 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 { @@ -16327,16 +16327,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; @@ -16344,16 +16344,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 { @@ -16367,6 +16367,10 @@ 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 */ @@ -16377,10 +16381,6 @@ 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 { @@ -16394,6 +16394,10 @@ 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 */ @@ -16402,10 +16406,6 @@ 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 { @@ -16414,12 +16414,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; @@ -16427,16 +16427,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 { @@ -16450,6 +16450,10 @@ 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 */ @@ -16458,10 +16462,6 @@ 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 { @@ -16470,12 +16470,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; @@ -16483,16 +16483,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 { @@ -16506,6 +16506,10 @@ 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 */ @@ -16514,10 +16518,6 @@ 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 { @@ -16526,6 +16526,8 @@ 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. */ @@ -16552,8 +16554,6 @@ 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; @@ -16563,14 +16563,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 { @@ -16589,6 +16589,8 @@ 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. */ @@ -16623,8 +16625,6 @@ 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 { @@ -16633,16 +16633,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; @@ -16650,16 +16650,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 { @@ -16673,6 +16673,10 @@ 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 */ @@ -16683,10 +16687,6 @@ 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 { @@ -16700,6 +16700,10 @@ 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 */ @@ -16708,10 +16712,6 @@ 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 { @@ -16720,12 +16720,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; @@ -16733,16 +16733,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 { @@ -16756,6 +16756,10 @@ 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 */ @@ -16764,10 +16768,6 @@ 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 { @@ -16776,12 +16776,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; @@ -16789,16 +16789,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 { @@ -16812,6 +16812,10 @@ 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 */ @@ -16820,10 +16824,6 @@ 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 { @@ -17025,6 +17025,8 @@ 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. */ @@ -17033,8 +17035,6 @@ 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; @@ -17062,6 +17062,10 @@ 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. */ @@ -17070,10 +17074,6 @@ 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; @@ -17101,6 +17101,8 @@ 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. */ @@ -17109,8 +17111,6 @@ 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; @@ -17138,6 +17138,10 @@ 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. */ @@ -17146,10 +17150,6 @@ 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; @@ -17177,6 +17177,8 @@ 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. */ @@ -17185,8 +17187,6 @@ 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; @@ -17214,6 +17214,10 @@ 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. */ @@ -17222,10 +17226,6 @@ 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; @@ -17253,6 +17253,8 @@ 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. */ @@ -17261,8 +17263,6 @@ 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; @@ -17290,6 +17290,10 @@ 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. */ @@ -17298,10 +17302,6 @@ 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; @@ -17329,6 +17329,8 @@ 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. */ @@ -17337,8 +17339,6 @@ 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; @@ -17366,6 +17366,10 @@ 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. */ @@ -17374,10 +17378,6 @@ 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; @@ -17568,14 +17568,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; @@ -17583,14 +17583,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 { @@ -17604,6 +17604,8 @@ 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 */ @@ -17614,8 +17616,6 @@ 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 { @@ -17629,6 +17629,8 @@ 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 */ @@ -17637,8 +17639,6 @@ 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 { @@ -17700,6 +17700,8 @@ 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. */ @@ -17708,8 +17710,6 @@ 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; @@ -17800,10 +17800,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; - /** If 'true', then the output is pretty printed. */ - pretty?: 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$createAuthorizationV1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; @@ -17911,10 +17911,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; - /** If 'true', then the output is pretty printed. */ - pretty?: 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$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1beta1$LocalSubjectAccessReview; @@ -18058,6 +18058,8 @@ 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. */ @@ -18084,8 +18086,6 @@ 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; @@ -18095,14 +18095,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 { @@ -18121,6 +18121,8 @@ 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. */ @@ -18155,8 +18157,6 @@ 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 { @@ -18165,16 +18165,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; @@ -18182,16 +18182,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 { @@ -18205,6 +18205,10 @@ 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 */ @@ -18215,10 +18219,6 @@ 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 { @@ -18232,6 +18232,10 @@ 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 */ @@ -18240,10 +18244,6 @@ 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 { @@ -18252,12 +18252,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; @@ -18265,16 +18265,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 { @@ -18288,6 +18288,10 @@ 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 */ @@ -18296,10 +18300,6 @@ 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 { @@ -18361,6 +18361,8 @@ 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. */ @@ -18369,8 +18371,6 @@ 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; @@ -18398,6 +18398,10 @@ 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. */ @@ -18406,10 +18410,6 @@ 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; @@ -18459,6 +18459,8 @@ 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. */ @@ -18485,8 +18487,6 @@ 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; @@ -18496,14 +18496,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 { @@ -18522,6 +18522,8 @@ 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. */ @@ -18556,8 +18558,6 @@ 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 { @@ -18566,16 +18566,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; @@ -18583,16 +18583,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 { @@ -18606,6 +18606,10 @@ 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 */ @@ -18616,10 +18620,6 @@ 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 { @@ -18633,6 +18633,10 @@ 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 */ @@ -18641,10 +18645,6 @@ 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 { @@ -18653,12 +18653,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; @@ -18666,16 +18666,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 { @@ -18689,6 +18689,10 @@ 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 */ @@ -18697,10 +18701,6 @@ 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 { @@ -18762,6 +18762,8 @@ 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. */ @@ -18770,8 +18772,6 @@ 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; @@ -18799,6 +18799,10 @@ 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. */ @@ -18807,10 +18811,6 @@ 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; @@ -18860,6 +18860,8 @@ 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. */ @@ -18886,8 +18888,6 @@ 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; @@ -18897,14 +18897,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 { @@ -18923,6 +18923,8 @@ 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. */ @@ -18957,8 +18959,6 @@ 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 { @@ -18967,16 +18967,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; @@ -18984,16 +18984,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 { @@ -19007,6 +19007,10 @@ 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 */ @@ -19017,10 +19021,6 @@ 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 { @@ -19034,6 +19034,10 @@ 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 */ @@ -19042,10 +19046,6 @@ 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 { @@ -19054,12 +19054,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; @@ -19067,16 +19067,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 { @@ -19090,6 +19090,10 @@ 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 */ @@ -19098,10 +19102,6 @@ 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 { @@ -19163,6 +19163,8 @@ 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. */ @@ -19171,8 +19173,6 @@ 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; @@ -19200,6 +19200,10 @@ 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. */ @@ -19208,10 +19212,6 @@ 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; @@ -19266,6 +19266,8 @@ 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. */ @@ -19292,8 +19294,6 @@ 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; @@ -19303,14 +19303,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 { @@ -19329,6 +19329,8 @@ 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. */ @@ -19363,8 +19365,6 @@ 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 { @@ -19373,16 +19373,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; @@ -19390,16 +19390,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 { @@ -19413,6 +19413,10 @@ 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 */ @@ -19423,10 +19427,6 @@ 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 { @@ -19440,6 +19440,10 @@ 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 */ @@ -19448,10 +19452,6 @@ 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 { @@ -19460,12 +19460,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; @@ -19473,16 +19473,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 { @@ -19496,6 +19496,10 @@ 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 */ @@ -19504,10 +19508,6 @@ 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 { @@ -19569,6 +19569,8 @@ 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. */ @@ -19577,8 +19579,6 @@ 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; @@ -19606,6 +19606,10 @@ 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. */ @@ -19614,10 +19618,6 @@ 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; @@ -19667,6 +19667,8 @@ 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. */ @@ -19693,8 +19695,6 @@ 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; @@ -19704,14 +19704,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 { @@ -19730,6 +19730,8 @@ 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. */ @@ -19764,8 +19766,6 @@ 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 { @@ -19774,16 +19774,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; @@ -19791,16 +19791,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 { @@ -19814,6 +19814,10 @@ 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 */ @@ -19824,10 +19828,6 @@ 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 { @@ -19841,6 +19841,10 @@ 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 */ @@ -19849,10 +19853,6 @@ 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 { @@ -19861,12 +19861,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; @@ -19874,16 +19874,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 { @@ -19897,6 +19897,10 @@ 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 */ @@ -19905,10 +19909,6 @@ 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 { @@ -19970,6 +19970,8 @@ 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. */ @@ -19978,8 +19980,6 @@ 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; @@ -20007,6 +20007,10 @@ 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. */ @@ -20015,10 +20019,6 @@ 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; @@ -20068,6 +20068,8 @@ 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. */ @@ -20094,8 +20096,6 @@ 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; @@ -20105,14 +20105,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 { @@ -20131,6 +20131,8 @@ 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. */ @@ -20165,8 +20167,6 @@ 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 { @@ -20175,16 +20175,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; @@ -20192,16 +20192,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 { @@ -20215,6 +20215,10 @@ 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 */ @@ -20225,10 +20229,6 @@ 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 { @@ -20242,6 +20242,10 @@ 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 */ @@ -20250,10 +20254,6 @@ 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 { @@ -20262,12 +20262,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; @@ -20275,16 +20275,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 { @@ -20298,6 +20298,10 @@ 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 */ @@ -20306,10 +20310,6 @@ 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 { @@ -20371,6 +20371,8 @@ 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. */ @@ -20379,8 +20381,6 @@ 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; @@ -20408,6 +20408,10 @@ 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. */ @@ -20416,10 +20420,6 @@ 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; @@ -20540,14 +20540,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; @@ -20555,14 +20555,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 { @@ -20576,6 +20576,8 @@ 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 */ @@ -20586,8 +20588,6 @@ 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 { @@ -20601,6 +20601,8 @@ 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 */ @@ -20609,8 +20611,6 @@ 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 { @@ -20623,10 +20623,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; - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CertificateSigningRequest */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequestApproval = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$200 { @@ -20640,10 +20640,10 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApp "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$readCertificatesV1beta1CertificateSigningRequestStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CertificateSigningRequest */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; @@ -20651,14 +20651,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 { @@ -20672,6 +20672,8 @@ 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 */ @@ -20680,8 +20682,6 @@ 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 { @@ -20743,6 +20743,8 @@ 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. */ @@ -20751,8 +20753,6 @@ 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; @@ -20807,6 +20807,8 @@ 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. */ @@ -20833,8 +20835,6 @@ 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; @@ -20844,14 +20844,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 { @@ -20870,6 +20870,8 @@ 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. */ @@ -20904,8 +20906,6 @@ 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 { @@ -20914,16 +20914,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; @@ -20931,16 +20931,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 { @@ -20954,6 +20954,10 @@ 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 */ @@ -20964,10 +20968,6 @@ 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 { @@ -20981,6 +20981,10 @@ 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 */ @@ -20989,10 +20993,6 @@ 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 { @@ -21054,6 +21054,8 @@ 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. */ @@ -21062,8 +21064,6 @@ 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; @@ -21091,6 +21091,10 @@ 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. */ @@ -21099,10 +21103,6 @@ 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; @@ -21152,6 +21152,8 @@ 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. */ @@ -21178,8 +21180,6 @@ 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; @@ -21189,14 +21189,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 { @@ -21215,6 +21215,8 @@ 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. */ @@ -21249,8 +21251,6 @@ 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 { @@ -21259,16 +21259,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; @@ -21276,16 +21276,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 { @@ -21299,6 +21299,10 @@ 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 */ @@ -21309,10 +21313,6 @@ 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 { @@ -21326,6 +21326,10 @@ 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 */ @@ -21334,10 +21338,6 @@ 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 { @@ -21399,6 +21399,8 @@ 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. */ @@ -21407,8 +21409,6 @@ 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; @@ -21436,6 +21436,10 @@ 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. */ @@ -21444,10 +21448,6 @@ 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; @@ -21502,6 +21502,8 @@ 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. */ @@ -21528,8 +21530,6 @@ 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; @@ -21539,14 +21539,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 { @@ -21565,6 +21565,8 @@ 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. */ @@ -21599,8 +21601,6 @@ 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 { @@ -21609,16 +21609,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; @@ -21626,16 +21626,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 { @@ -21649,6 +21649,10 @@ 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 */ @@ -21659,10 +21663,6 @@ 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 { @@ -21676,6 +21676,10 @@ 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 */ @@ -21684,10 +21688,6 @@ 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 { @@ -21749,6 +21749,8 @@ 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. */ @@ -21757,8 +21759,6 @@ 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; @@ -21786,6 +21786,10 @@ 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. */ @@ -21794,10 +21798,6 @@ 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; @@ -21852,6 +21852,8 @@ 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. */ @@ -21878,8 +21880,6 @@ 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; @@ -21889,14 +21889,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 { @@ -21915,6 +21915,8 @@ 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. */ @@ -21949,8 +21951,6 @@ 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 { @@ -21959,16 +21959,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; @@ -21976,16 +21976,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 { @@ -21999,6 +21999,10 @@ 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 */ @@ -22009,10 +22013,6 @@ 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 { @@ -22026,6 +22026,10 @@ 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 */ @@ -22034,10 +22038,6 @@ 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 { @@ -22099,6 +22099,8 @@ 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. */ @@ -22107,8 +22109,6 @@ 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; @@ -22136,6 +22136,10 @@ 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. */ @@ -22144,10 +22148,6 @@ 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; @@ -22202,6 +22202,8 @@ 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. */ @@ -22228,8 +22230,6 @@ 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; @@ -22239,14 +22239,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 { @@ -22265,6 +22265,8 @@ 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. */ @@ -22299,8 +22301,6 @@ 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 { @@ -22309,16 +22309,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; @@ -22326,16 +22326,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 { @@ -22349,6 +22349,10 @@ 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 */ @@ -22359,10 +22363,6 @@ 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 { @@ -22376,6 +22376,10 @@ 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 */ @@ -22384,10 +22388,6 @@ 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 { @@ -22396,12 +22396,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; @@ -22409,16 +22409,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 { @@ -22432,6 +22432,10 @@ 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 */ @@ -22440,10 +22444,6 @@ 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 { @@ -22505,6 +22505,8 @@ 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. */ @@ -22513,8 +22515,6 @@ 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; @@ -22542,6 +22542,10 @@ 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. */ @@ -22550,10 +22554,6 @@ 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; @@ -22674,14 +22674,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; @@ -22689,14 +22689,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 { @@ -22710,6 +22710,8 @@ 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 */ @@ -22720,8 +22722,6 @@ 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 { @@ -22735,6 +22735,8 @@ 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 */ @@ -22743,8 +22745,6 @@ 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 { @@ -22753,10 +22753,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$readFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the FlowSchema */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; @@ -22764,14 +22764,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 { @@ -22785,6 +22785,8 @@ 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 */ @@ -22793,8 +22795,6 @@ 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 { @@ -22904,14 +22904,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; @@ -22919,14 +22919,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 { @@ -22940,6 +22940,8 @@ 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 */ @@ -22950,8 +22952,6 @@ 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 { @@ -22965,6 +22965,8 @@ 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 */ @@ -22973,8 +22975,6 @@ 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 { @@ -22983,10 +22983,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the PriorityLevelConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; @@ -22994,14 +22994,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 { @@ -23015,6 +23015,8 @@ 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 */ @@ -23023,8 +23025,6 @@ 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 { @@ -23086,6 +23086,8 @@ 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. */ @@ -23094,8 +23096,6 @@ 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; @@ -23158,6 +23158,8 @@ 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. */ @@ -23166,8 +23168,6 @@ 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; @@ -23187,6 +23187,8 @@ 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. */ @@ -23213,8 +23215,6 @@ 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; @@ -23224,14 +23224,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 { @@ -23250,6 +23250,8 @@ 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. */ @@ -23284,8 +23286,6 @@ 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 { @@ -23294,16 +23294,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; @@ -23311,16 +23311,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 { @@ -23334,6 +23334,10 @@ 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 */ @@ -23344,10 +23348,6 @@ 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 { @@ -23361,6 +23361,10 @@ 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 */ @@ -23369,10 +23373,6 @@ 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 { @@ -23434,6 +23434,8 @@ 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. */ @@ -23442,8 +23444,6 @@ 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; @@ -23471,6 +23471,10 @@ 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. */ @@ -23479,10 +23483,6 @@ 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; @@ -23633,14 +23633,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; @@ -23648,14 +23648,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 { @@ -23669,6 +23669,8 @@ 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 */ @@ -23679,8 +23681,6 @@ 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 { @@ -23694,6 +23694,8 @@ 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 */ @@ -23702,8 +23704,6 @@ 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 { @@ -23747,6 +23747,8 @@ 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. */ @@ -23773,8 +23775,6 @@ 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; @@ -23784,14 +23784,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 { @@ -23810,6 +23810,8 @@ 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. */ @@ -23844,8 +23846,6 @@ 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 { @@ -23854,16 +23854,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; @@ -23871,16 +23871,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 { @@ -23894,6 +23894,10 @@ 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 */ @@ -23904,10 +23908,6 @@ 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 { @@ -23921,6 +23921,10 @@ 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 */ @@ -23929,10 +23933,6 @@ 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 { @@ -23941,12 +23941,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; @@ -23954,16 +23954,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 { @@ -23977,6 +23977,10 @@ 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 */ @@ -23985,10 +23989,6 @@ 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 { @@ -24050,6 +24050,8 @@ 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. */ @@ -24058,8 +24060,6 @@ 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; @@ -24122,6 +24122,8 @@ 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. */ @@ -24130,8 +24132,6 @@ 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; @@ -24159,6 +24159,10 @@ 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. */ @@ -24167,10 +24171,6 @@ 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; @@ -24291,14 +24291,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; @@ -24306,14 +24306,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 { @@ -24327,6 +24327,8 @@ 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 */ @@ -24337,8 +24339,6 @@ 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 { @@ -24352,6 +24352,8 @@ 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 */ @@ -24360,8 +24362,6 @@ 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 { @@ -24423,6 +24423,8 @@ 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. */ @@ -24431,8 +24433,6 @@ 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; @@ -24548,14 +24548,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; @@ -24563,14 +24563,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 { @@ -24584,6 +24584,8 @@ 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 */ @@ -24594,8 +24596,6 @@ 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 { @@ -24609,6 +24609,8 @@ 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 */ @@ -24617,8 +24619,6 @@ 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 { @@ -24680,6 +24680,8 @@ 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. */ @@ -24688,8 +24690,6 @@ 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; @@ -24709,6 +24709,8 @@ 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. */ @@ -24735,8 +24737,6 @@ 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; @@ -24746,14 +24746,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 { @@ -24772,6 +24772,8 @@ 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. */ @@ -24806,8 +24808,6 @@ 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 { @@ -24816,16 +24816,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; @@ -24833,16 +24833,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 { @@ -24856,6 +24856,10 @@ 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 */ @@ -24866,10 +24870,6 @@ 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 { @@ -24883,6 +24883,10 @@ 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 */ @@ -24891,10 +24895,6 @@ 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 { @@ -24903,12 +24903,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; @@ -24916,16 +24916,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 { @@ -24939,6 +24939,10 @@ 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 */ @@ -24947,10 +24951,6 @@ 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 { @@ -25095,14 +25095,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; @@ -25110,14 +25110,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 { @@ -25131,6 +25131,8 @@ 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 */ @@ -25141,8 +25143,6 @@ 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 { @@ -25156,6 +25156,8 @@ 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 */ @@ -25164,8 +25166,6 @@ 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 { @@ -25192,6 +25192,8 @@ 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. */ @@ -25200,8 +25202,6 @@ 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; @@ -25229,6 +25229,10 @@ 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. */ @@ -25237,10 +25241,6 @@ 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; @@ -25338,6 +25338,8 @@ 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. */ @@ -25346,8 +25348,6 @@ 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; @@ -25468,10 +25468,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRoleBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRoleBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; @@ -25479,14 +25479,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 { @@ -25500,6 +25500,8 @@ 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 */ @@ -25510,8 +25512,6 @@ 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 { @@ -25525,6 +25525,8 @@ 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 */ @@ -25533,8 +25535,6 @@ 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 { @@ -25644,10 +25644,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRole { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRole */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; @@ -25655,14 +25655,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 { @@ -25676,6 +25676,8 @@ 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 */ @@ -25686,8 +25688,6 @@ 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 { @@ -25701,6 +25701,8 @@ 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 */ @@ -25709,8 +25711,6 @@ 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 { @@ -25719,6 +25719,8 @@ 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. */ @@ -25745,8 +25747,6 @@ 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; @@ -25756,14 +25756,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 { @@ -25782,6 +25782,8 @@ 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. */ @@ -25816,8 +25818,6 @@ 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 { @@ -25826,12 +25826,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; @@ -25839,16 +25839,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 { @@ -25862,6 +25862,10 @@ 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 */ @@ -25872,10 +25876,6 @@ 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 { @@ -25889,6 +25889,10 @@ 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 */ @@ -25897,10 +25901,6 @@ 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 { @@ -25909,6 +25909,8 @@ 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. */ @@ -25935,8 +25937,6 @@ 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; @@ -25946,14 +25946,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 { @@ -25972,6 +25972,8 @@ 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. */ @@ -26006,8 +26008,6 @@ 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 { @@ -26016,12 +26016,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; @@ -26029,16 +26029,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 { @@ -26052,6 +26052,10 @@ 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 */ @@ -26062,10 +26066,6 @@ 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 { @@ -26079,6 +26079,10 @@ 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 */ @@ -26087,10 +26091,6 @@ 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 { @@ -26222,6 +26222,8 @@ 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. */ @@ -26230,8 +26232,6 @@ 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; @@ -26294,6 +26294,8 @@ 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. */ @@ -26302,8 +26304,6 @@ 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; @@ -26331,6 +26331,8 @@ 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. */ @@ -26339,8 +26341,6 @@ 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; @@ -26368,6 +26368,10 @@ 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. */ @@ -26376,10 +26380,6 @@ 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; @@ -26407,6 +26407,8 @@ 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. */ @@ -26415,8 +26417,6 @@ 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; @@ -26444,6 +26444,10 @@ 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. */ @@ -26452,10 +26456,6 @@ 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; @@ -26641,10 +26641,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRoleBi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRoleBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRoleBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; @@ -26652,14 +26652,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 { @@ -26673,6 +26673,8 @@ 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 */ @@ -26683,8 +26685,6 @@ 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 { @@ -26698,6 +26698,8 @@ 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 */ @@ -26706,8 +26708,6 @@ 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 { @@ -26817,10 +26817,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRole$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRole { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRole */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; @@ -26828,14 +26828,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 { @@ -26849,6 +26849,8 @@ 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 */ @@ -26859,8 +26861,6 @@ 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 { @@ -26874,6 +26874,8 @@ 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 */ @@ -26882,8 +26884,6 @@ 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 { @@ -26892,6 +26892,8 @@ 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. */ @@ -26918,8 +26920,6 @@ 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; @@ -26929,14 +26929,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 { @@ -26955,6 +26955,8 @@ 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. */ @@ -26989,8 +26991,6 @@ 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 { @@ -26999,12 +26999,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; @@ -27012,16 +27012,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 { @@ -27035,6 +27035,10 @@ 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 */ @@ -27045,10 +27049,6 @@ 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 { @@ -27062,6 +27062,10 @@ 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 */ @@ -27070,10 +27074,6 @@ 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 { @@ -27082,6 +27082,8 @@ 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. */ @@ -27108,8 +27110,6 @@ 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; @@ -27119,14 +27119,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 { @@ -27145,6 +27145,8 @@ 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. */ @@ -27179,8 +27181,6 @@ 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 { @@ -27189,12 +27189,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; @@ -27202,16 +27202,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 { @@ -27225,6 +27225,10 @@ 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 */ @@ -27235,10 +27239,6 @@ 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 { @@ -27252,6 +27252,10 @@ 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 */ @@ -27260,10 +27264,6 @@ 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 { @@ -27395,6 +27395,8 @@ 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. */ @@ -27403,8 +27405,6 @@ 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; @@ -27467,6 +27467,8 @@ 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. */ @@ -27475,8 +27477,6 @@ 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; @@ -27504,6 +27504,8 @@ 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. */ @@ -27512,8 +27514,6 @@ 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; @@ -27541,6 +27541,10 @@ 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. */ @@ -27549,10 +27553,6 @@ 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; @@ -27580,6 +27580,8 @@ 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. */ @@ -27588,8 +27590,6 @@ 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; @@ -27617,6 +27617,10 @@ 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. */ @@ -27625,10 +27629,6 @@ 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; @@ -27814,10 +27814,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRoleBin "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRoleBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRoleBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; @@ -27825,14 +27825,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 { @@ -27846,6 +27846,8 @@ 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 */ @@ -27856,8 +27858,6 @@ 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 { @@ -27871,6 +27871,8 @@ 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 */ @@ -27879,8 +27881,6 @@ 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 { @@ -27990,10 +27990,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRole$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRole { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRole */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; @@ -28001,14 +28001,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 { @@ -28022,6 +28022,8 @@ 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 */ @@ -28032,8 +28034,6 @@ 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 { @@ -28047,6 +28047,8 @@ 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 */ @@ -28055,8 +28057,6 @@ 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 { @@ -28065,6 +28065,8 @@ 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. */ @@ -28091,8 +28093,6 @@ 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; @@ -28102,14 +28102,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 { @@ -28128,6 +28128,8 @@ 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. */ @@ -28162,8 +28164,6 @@ 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 { @@ -28172,12 +28172,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; @@ -28185,16 +28185,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 { @@ -28208,6 +28208,10 @@ 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 */ @@ -28218,10 +28222,6 @@ 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 { @@ -28235,6 +28235,10 @@ 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 */ @@ -28243,10 +28247,6 @@ 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 { @@ -28255,6 +28255,8 @@ 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. */ @@ -28281,8 +28283,6 @@ 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; @@ -28292,14 +28292,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 { @@ -28318,6 +28318,8 @@ 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. */ @@ -28352,8 +28354,6 @@ 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 { @@ -28362,12 +28362,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; @@ -28375,16 +28375,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 { @@ -28398,6 +28398,10 @@ 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 */ @@ -28408,10 +28412,6 @@ 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 { @@ -28425,6 +28425,10 @@ 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 */ @@ -28433,10 +28437,6 @@ 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 { @@ -28568,6 +28568,8 @@ 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. */ @@ -28576,8 +28578,6 @@ 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; @@ -28640,6 +28640,8 @@ 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. */ @@ -28648,8 +28650,6 @@ 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; @@ -28677,6 +28677,8 @@ 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. */ @@ -28685,8 +28687,6 @@ 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; @@ -28714,6 +28714,10 @@ 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. */ @@ -28722,10 +28726,6 @@ 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; @@ -28753,6 +28753,8 @@ 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. */ @@ -28761,8 +28763,6 @@ 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; @@ -28790,6 +28790,10 @@ 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. */ @@ -28798,10 +28802,6 @@ 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; @@ -28992,14 +28992,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; @@ -29007,14 +29007,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 { @@ -29028,6 +29028,8 @@ 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 */ @@ -29038,8 +29040,6 @@ 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 { @@ -29053,6 +29053,8 @@ 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 */ @@ -29061,8 +29063,6 @@ 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 { @@ -29124,6 +29124,8 @@ 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. */ @@ -29132,8 +29134,6 @@ 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; @@ -29249,14 +29249,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; @@ -29264,14 +29264,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 { @@ -29285,6 +29285,8 @@ 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 */ @@ -29295,8 +29297,6 @@ 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 { @@ -29310,6 +29310,8 @@ 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 */ @@ -29318,8 +29320,6 @@ 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 { @@ -29381,6 +29381,8 @@ 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. */ @@ -29389,8 +29391,6 @@ 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; @@ -29506,14 +29506,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; @@ -29521,14 +29521,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 { @@ -29542,6 +29542,8 @@ 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 */ @@ -29552,8 +29554,6 @@ 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 { @@ -29567,6 +29567,8 @@ 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 */ @@ -29575,8 +29577,6 @@ 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 { @@ -29638,6 +29638,8 @@ 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. */ @@ -29646,8 +29648,6 @@ 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; @@ -29667,6 +29667,8 @@ 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. */ @@ -29693,8 +29695,6 @@ 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; @@ -29704,14 +29704,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 { @@ -29730,6 +29730,8 @@ 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. */ @@ -29764,8 +29766,6 @@ 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 { @@ -29774,16 +29774,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; @@ -29791,16 +29791,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 { @@ -29814,6 +29814,10 @@ 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 */ @@ -29824,10 +29828,6 @@ 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 { @@ -29841,6 +29841,10 @@ 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 */ @@ -29849,10 +29853,6 @@ 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 { @@ -29914,6 +29914,8 @@ 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. */ @@ -29922,8 +29924,6 @@ 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; @@ -29951,6 +29951,10 @@ 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. */ @@ -29959,10 +29963,6 @@ 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; @@ -30118,14 +30118,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; @@ -30133,14 +30133,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 { @@ -30154,6 +30154,8 @@ 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 */ @@ -30164,8 +30166,6 @@ 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 { @@ -30179,6 +30179,8 @@ 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 */ @@ -30187,8 +30189,6 @@ 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 { @@ -30298,14 +30298,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; @@ -30313,14 +30313,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 { @@ -30334,6 +30334,8 @@ 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 */ @@ -30344,8 +30346,6 @@ 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 { @@ -30359,6 +30359,8 @@ 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 */ @@ -30367,8 +30369,6 @@ 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 { @@ -30478,14 +30478,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; @@ -30493,14 +30493,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 { @@ -30514,6 +30514,8 @@ 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 */ @@ -30524,8 +30526,6 @@ 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 { @@ -30539,6 +30539,8 @@ 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 */ @@ -30547,8 +30549,6 @@ 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 { @@ -30658,14 +30658,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; @@ -30673,14 +30673,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 { @@ -30694,6 +30694,8 @@ 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 */ @@ -30704,8 +30706,6 @@ 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 { @@ -30719,6 +30719,8 @@ 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 */ @@ -30727,8 +30729,6 @@ 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 { @@ -30737,10 +30737,10 @@ export interface Response$patchStorageV1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$readStorageV1VolumeAttachmentStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the VolumeAttachment */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -30748,14 +30748,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 { @@ -30769,6 +30769,8 @@ 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 */ @@ -30777,8 +30779,6 @@ 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 { @@ -30840,6 +30840,8 @@ 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. */ @@ -30848,8 +30850,6 @@ 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; @@ -30912,6 +30912,8 @@ 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. */ @@ -30920,8 +30922,6 @@ 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; @@ -30984,6 +30984,8 @@ 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. */ @@ -30992,8 +30994,6 @@ 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; @@ -31056,6 +31056,8 @@ 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. */ @@ -31064,8 +31066,6 @@ 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; @@ -31181,14 +31181,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; @@ -31196,14 +31196,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 { @@ -31217,6 +31217,8 @@ 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 */ @@ -31227,8 +31229,6 @@ 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 { @@ -31242,6 +31242,8 @@ 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 */ @@ -31250,8 +31252,6 @@ 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 { @@ -31313,6 +31313,8 @@ 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. */ @@ -31321,8 +31323,6 @@ 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; @@ -31438,14 +31438,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; @@ -31453,14 +31453,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 { @@ -31474,6 +31474,8 @@ 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 */ @@ -31484,8 +31486,6 @@ 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 { @@ -31499,6 +31499,8 @@ 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 */ @@ -31507,8 +31509,6 @@ 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 { @@ -31618,14 +31618,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; @@ -31633,14 +31633,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 { @@ -31654,6 +31654,8 @@ 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 */ @@ -31664,8 +31666,6 @@ 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 { @@ -31679,6 +31679,8 @@ 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 */ @@ -31687,8 +31689,6 @@ 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 { @@ -31798,14 +31798,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; @@ -31813,14 +31813,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 { @@ -31834,6 +31834,8 @@ 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 */ @@ -31844,8 +31846,6 @@ 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 { @@ -31859,6 +31859,8 @@ 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 */ @@ -31867,8 +31869,6 @@ 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 { @@ -31978,14 +31978,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; @@ -31993,14 +31993,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 { @@ -32014,6 +32014,8 @@ 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 */ @@ -32024,8 +32026,6 @@ 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 { @@ -32039,6 +32039,8 @@ 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 */ @@ -32047,8 +32049,6 @@ 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 { @@ -32110,6 +32110,8 @@ 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. */ @@ -32118,8 +32120,6 @@ 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; @@ -32182,6 +32182,8 @@ 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. */ @@ -32190,8 +32192,6 @@ 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; @@ -32254,6 +32254,8 @@ 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. */ @@ -32262,8 +32264,6 @@ 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; @@ -32326,6 +32326,8 @@ 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. */ @@ -32334,8 +32336,6 @@ 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__/kubernetes/client-v1.28.6.ts b/test/__tests__/class/__snapshots__/kubernetes/client-v1.28.6.ts index 88fb216b..4020c892 100644 --- a/test/__tests__/class/__snapshots__/kubernetes/client-v1.28.6.ts +++ b/test/__tests__/class/__snapshots__/kubernetes/client-v1.28.6.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.0 // @@ -7576,10 +7576,10 @@ export interface Response$listCoreV1ComponentStatus$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ComponentStatusList; } export interface Parameter$readCoreV1ComponentStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ComponentStatus */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCoreV1ComponentStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ComponentStatus; @@ -8103,12 +8103,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ConfigMap */ - name: string; } export interface Response$readCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ConfigMap; @@ -8116,6 +8116,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8126,8 +8128,6 @@ export interface Parameter$replaceCoreV1NamespacedConfigMap { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ConfigMap */ - name: string; } export type RequestBody$replaceCoreV1NamespacedConfigMap = RequestBodies.io$k8s$api$core$v1$ConfigMap.Content; export interface Response$replaceCoreV1NamespacedConfigMap$Status$200 { @@ -8141,6 +8141,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8153,8 +8155,6 @@ export interface Parameter$deleteCoreV1NamespacedConfigMap { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ConfigMap */ - name: string; } export type RequestBody$deleteCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedConfigMap$Status$200 { @@ -8168,6 +8168,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8180,8 +8182,6 @@ export interface Parameter$patchCoreV1NamespacedConfigMap { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ConfigMap */ - name: string; } export type RequestBody$patchCoreV1NamespacedConfigMap = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedConfigMap$Status$200 { @@ -8352,12 +8352,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Endpoints */ - name: string; } export interface Response$readCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Endpoints; @@ -8365,6 +8365,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8375,8 +8377,6 @@ export interface Parameter$replaceCoreV1NamespacedEndpoints { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Endpoints */ - name: string; } export type RequestBody$replaceCoreV1NamespacedEndpoints = RequestBodies.io$k8s$api$core$v1$Endpoints.Content; export interface Response$replaceCoreV1NamespacedEndpoints$Status$200 { @@ -8390,6 +8390,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8402,8 +8404,6 @@ export interface Parameter$deleteCoreV1NamespacedEndpoints { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Endpoints */ - name: string; } export type RequestBody$deleteCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedEndpoints$Status$200 { @@ -8417,6 +8417,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8429,8 +8431,6 @@ export interface Parameter$patchCoreV1NamespacedEndpoints { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Endpoints */ - name: string; } export type RequestBody$patchCoreV1NamespacedEndpoints = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedEndpoints$Status$200 { @@ -8601,12 +8601,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Event */ - name: string; } export interface Response$readCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Event; @@ -8614,6 +8614,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8624,8 +8626,6 @@ export interface Parameter$replaceCoreV1NamespacedEvent { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Event */ - name: string; } export type RequestBody$replaceCoreV1NamespacedEvent = RequestBodies.io$k8s$api$core$v1$Event.Content; export interface Response$replaceCoreV1NamespacedEvent$Status$200 { @@ -8639,6 +8639,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8651,8 +8653,6 @@ export interface Parameter$deleteCoreV1NamespacedEvent { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Event */ - name: string; } export type RequestBody$deleteCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedEvent$Status$200 { @@ -8666,6 +8666,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8678,8 +8680,6 @@ export interface Parameter$patchCoreV1NamespacedEvent { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Event */ - name: string; } export type RequestBody$patchCoreV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedEvent$Status$200 { @@ -8850,12 +8850,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the LimitRange */ - name: string; } export interface Response$readCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$LimitRange; @@ -8863,6 +8863,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8873,8 +8875,6 @@ export interface Parameter$replaceCoreV1NamespacedLimitRange { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the LimitRange */ - name: string; } export type RequestBody$replaceCoreV1NamespacedLimitRange = RequestBodies.io$k8s$api$core$v1$LimitRange.Content; export interface Response$replaceCoreV1NamespacedLimitRange$Status$200 { @@ -8888,6 +8888,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8900,8 +8902,6 @@ export interface Parameter$deleteCoreV1NamespacedLimitRange { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the LimitRange */ - name: string; } export type RequestBody$deleteCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedLimitRange$Status$200 { @@ -8915,6 +8915,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -8927,8 +8929,6 @@ export interface Parameter$patchCoreV1NamespacedLimitRange { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the LimitRange */ - name: string; } export type RequestBody$patchCoreV1NamespacedLimitRange = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedLimitRange$Status$200 { @@ -9099,12 +9099,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the PersistentVolumeClaim */ - name: string; } export interface Response$readCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; @@ -9112,6 +9112,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9122,8 +9124,6 @@ export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaim { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PersistentVolumeClaim */ - name: string; } export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$replaceCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -9137,6 +9137,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9149,8 +9151,6 @@ export interface Parameter$deleteCoreV1NamespacedPersistentVolumeClaim { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the PersistentVolumeClaim */ - name: string; } export type RequestBody$deleteCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -9164,6 +9164,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9176,8 +9178,6 @@ export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaim { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PersistentVolumeClaim */ - name: string; } export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$200 { @@ -9191,12 +9191,12 @@ export interface Response$patchCoreV1NamespacedPersistentVolumeClaim$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; } export interface Parameter$readCoreV1NamespacedPersistentVolumeClaimStatus { + /** name of the PersistentVolumeClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the PersistentVolumeClaim */ - name: string; } export interface Response$readCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolumeClaim; @@ -9204,6 +9204,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9214,8 +9216,6 @@ export interface Parameter$replaceCoreV1NamespacedPersistentVolumeClaimStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PersistentVolumeClaim */ - name: string; } export type RequestBody$replaceCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$api$core$v1$PersistentVolumeClaim.Content; export interface Response$replaceCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { @@ -9229,6 +9229,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9241,8 +9243,6 @@ export interface Parameter$patchCoreV1NamespacedPersistentVolumeClaimStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PersistentVolumeClaim */ - name: string; } export type RequestBody$patchCoreV1NamespacedPersistentVolumeClaimStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPersistentVolumeClaimStatus$Status$200 { @@ -9413,12 +9413,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Pod */ - name: string; } export interface Response$readCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Pod; @@ -9426,6 +9426,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9436,8 +9438,6 @@ export interface Parameter$replaceCoreV1NamespacedPod { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Pod */ - name: string; } export type RequestBody$replaceCoreV1NamespacedPod = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$replaceCoreV1NamespacedPod$Status$200 { @@ -9451,6 +9451,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9463,8 +9465,6 @@ export interface Parameter$deleteCoreV1NamespacedPod { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Pod */ - name: string; } export type RequestBody$deleteCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPod$Status$200 { @@ -9478,6 +9478,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9490,8 +9492,6 @@ export interface Parameter$patchCoreV1NamespacedPod { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Pod */ - name: string; } export type RequestBody$patchCoreV1NamespacedPod = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPod$Status$200 { @@ -9507,6 +9507,8 @@ export interface Response$patchCoreV1NamespacedPod$Status$201 { 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?: Parameters.container$_Q$EJ3nR; + /** name of the PodAttachOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ @@ -9517,8 +9519,6 @@ export interface Parameter$connectCoreV1GetNamespacedPodAttach { stdout?: Parameters.stdout$005YMKE6; /** 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?: Parameters.tty$g7MlET_l; - /** name of the PodAttachOptions */ - name: string; } export interface Response$connectCoreV1GetNamespacedPodAttach$Status$200 { "*/*": string; @@ -9526,6 +9526,8 @@ 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?: Parameters.container$_Q$EJ3nR; + /** name of the PodAttachOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. */ @@ -9536,8 +9538,6 @@ export interface Parameter$connectCoreV1PostNamespacedPodAttach { stdout?: Parameters.stdout$005YMKE6; /** 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?: Parameters.tty$g7MlET_l; - /** name of the PodAttachOptions */ - name: string; } export interface Response$connectCoreV1PostNamespacedPodAttach$Status$200 { "*/*": string; @@ -9549,12 +9549,12 @@ export interface Parameter$createCoreV1NamespacedPodBinding { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; + /** name of the Binding */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Binding */ - name: string; } export type RequestBody$createCoreV1NamespacedPodBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; export interface Response$createCoreV1NamespacedPodBinding$Status$200 { @@ -9573,12 +9573,12 @@ export interface Response$createCoreV1NamespacedPodBinding$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Binding; } export interface Parameter$readCoreV1NamespacedPodEphemeralcontainers { + /** name of the Pod */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Pod */ - name: string; } export interface Response$readCoreV1NamespacedPodEphemeralcontainers$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Pod; @@ -9586,6 +9586,8 @@ export interface Response$readCoreV1NamespacedPodEphemeralcontainers$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$replaceCoreV1NamespacedPodEphemeralcontainers { + /** name of the Pod */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9596,8 +9598,6 @@ export interface Parameter$replaceCoreV1NamespacedPodEphemeralcontainers { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Pod */ - name: string; } export type RequestBody$replaceCoreV1NamespacedPodEphemeralcontainers = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$200 { @@ -9611,6 +9611,8 @@ export interface Response$replaceCoreV1NamespacedPodEphemeralcontainers$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Pod; } export interface Parameter$patchCoreV1NamespacedPodEphemeralcontainers { + /** name of the Pod */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9623,8 +9625,6 @@ export interface Parameter$patchCoreV1NamespacedPodEphemeralcontainers { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Pod */ - name: string; } export type RequestBody$patchCoreV1NamespacedPodEphemeralcontainers = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPodEphemeralcontainers$Status$200 { @@ -9644,12 +9644,12 @@ export interface Parameter$createCoreV1NamespacedPodEviction { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; + /** name of the Eviction */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Eviction */ - name: string; } export interface RequestBody$createCoreV1NamespacedPodEviction { "*/*": Schemas.io$k8s$api$policy$v1$Eviction; @@ -9674,6 +9674,8 @@ export interface Parameter$connectCoreV1GetNamespacedPodExec { command?: Parameters.command$Py3eQybp; /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: Parameters.container$i5dOmRiM; + /** name of the PodExecOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Redirect the standard error stream of the pod for this call. */ @@ -9684,8 +9686,6 @@ export interface Parameter$connectCoreV1GetNamespacedPodExec { stdout?: Parameters.stdout$$EZLRwV1; /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ tty?: Parameters.tty$s0flW37O; - /** name of the PodExecOptions */ - name: string; } export interface Response$connectCoreV1GetNamespacedPodExec$Status$200 { "*/*": string; @@ -9695,6 +9695,8 @@ export interface Parameter$connectCoreV1PostNamespacedPodExec { command?: Parameters.command$Py3eQybp; /** Container in which to execute the command. Defaults to only container if there is only one container in the pod. */ container?: Parameters.container$i5dOmRiM; + /** name of the PodExecOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Redirect the standard error stream of the pod for this call. */ @@ -9705,8 +9707,6 @@ export interface Parameter$connectCoreV1PostNamespacedPodExec { stdout?: Parameters.stdout$$EZLRwV1; /** TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. */ tty?: Parameters.tty$s0flW37O; - /** name of the PodExecOptions */ - name: string; } export interface Response$connectCoreV1PostNamespacedPodExec$Status$200 { "*/*": string; @@ -9720,6 +9720,8 @@ export interface Parameter$readCoreV1NamespacedPodLog { insecureSkipTLSVerifyBackend?: Parameters.insecureSkipTLSVerifyBackend$gM00jVbe; /** 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?: Parameters.limitBytes$zwd1RXuc; + /** name of the Pod */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9732,8 +9734,6 @@ export interface Parameter$readCoreV1NamespacedPodLog { tailLines?: Parameters.tailLines$2fRTNzbP; /** If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. */ timestamps?: Parameters.timestamps$c17fW1w_; - /** name of the Pod */ - name: string; } export interface Response$readCoreV1NamespacedPodLog$Status$200 { "text/plain": string; @@ -9742,188 +9742,188 @@ export interface Response$readCoreV1NamespacedPodLog$Status$200 { "application/vnd.kubernetes.protobuf": string; } export interface Parameter$connectCoreV1GetNamespacedPodPortforward { + /** name of the PodPortForwardOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** List of ports to forward Required when using WebSockets */ ports?: Parameters.ports$91KROJmm; - /** name of the PodPortForwardOptions */ - name: string; } export interface Response$connectCoreV1GetNamespacedPodPortforward$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodPortforward { + /** name of the PodPortForwardOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** List of ports to forward Required when using WebSockets */ ports?: Parameters.ports$91KROJmm; - /** name of the PodPortForwardOptions */ - name: string; } export interface Response$connectCoreV1PostNamespacedPodPortforward$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedPodProxy { + /** name of the PodProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Path is the URL path to use for the current proxy request to pod. */ path?: Parameters.path$oPbzgLUj; - /** name of the PodProxyOptions */ - name: string; } export interface Response$connectCoreV1GetNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedPodProxy { + /** name of the PodProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Path is the URL path to use for the current proxy request to pod. */ path?: Parameters.path$oPbzgLUj; - /** name of the PodProxyOptions */ - name: string; } export interface Response$connectCoreV1PutNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodProxy { + /** name of the PodProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Path is the URL path to use for the current proxy request to pod. */ path?: Parameters.path$oPbzgLUj; - /** name of the PodProxyOptions */ - name: string; } export interface Response$connectCoreV1PostNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedPodProxy { + /** name of the PodProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Path is the URL path to use for the current proxy request to pod. */ path?: Parameters.path$oPbzgLUj; - /** name of the PodProxyOptions */ - name: string; } export interface Response$connectCoreV1DeleteNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedPodProxy { + /** name of the PodProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Path is the URL path to use for the current proxy request to pod. */ path?: Parameters.path$oPbzgLUj; - /** name of the PodProxyOptions */ - name: string; } export interface Response$connectCoreV1OptionsNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedPodProxy { + /** name of the PodProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Path is the URL path to use for the current proxy request to pod. */ path?: Parameters.path$oPbzgLUj; - /** name of the PodProxyOptions */ - name: string; } export interface Response$connectCoreV1HeadNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedPodProxy { + /** name of the PodProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** Path is the URL path to use for the current proxy request to pod. */ path?: Parameters.path$oPbzgLUj; - /** name of the PodProxyOptions */ - name: string; } export interface Response$connectCoreV1PatchNamespacedPodProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedPodProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: Parameters.path$oPbzgLUj; /** name of the PodProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1GetNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedPodProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: Parameters.path$oPbzgLUj; /** name of the PodProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PutNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedPodProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: Parameters.path$oPbzgLUj; /** name of the PodProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PostNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedPodProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: Parameters.path$oPbzgLUj; /** name of the PodProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1DeleteNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedPodProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: Parameters.path$oPbzgLUj; /** name of the PodProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1OptionsNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedPodProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: Parameters.path$oPbzgLUj; /** name of the PodProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1HeadNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedPodProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** Path is the URL path to use for the current proxy request to pod. */ - path?: Parameters.path$oPbzgLUj; /** name of the PodProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PatchNamespacedPodProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NamespacedPodStatus { + /** name of the Pod */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Pod */ - name: string; } export interface Response$readCoreV1NamespacedPodStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Pod; @@ -9931,6 +9931,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9941,8 +9943,6 @@ export interface Parameter$replaceCoreV1NamespacedPodStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Pod */ - name: string; } export type RequestBody$replaceCoreV1NamespacedPodStatus = RequestBodies.io$k8s$api$core$v1$Pod.Content; export interface Response$replaceCoreV1NamespacedPodStatus$Status$200 { @@ -9956,6 +9956,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -9968,8 +9970,6 @@ export interface Parameter$patchCoreV1NamespacedPodStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Pod */ - name: string; } export type RequestBody$patchCoreV1NamespacedPodStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPodStatus$Status$200 { @@ -10140,12 +10140,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the PodTemplate */ - name: string; } export interface Response$readCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PodTemplate; @@ -10153,6 +10153,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10163,8 +10165,6 @@ export interface Parameter$replaceCoreV1NamespacedPodTemplate { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PodTemplate */ - name: string; } export type RequestBody$replaceCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$api$core$v1$PodTemplate.Content; export interface Response$replaceCoreV1NamespacedPodTemplate$Status$200 { @@ -10178,6 +10178,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10190,8 +10192,6 @@ export interface Parameter$deleteCoreV1NamespacedPodTemplate { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the PodTemplate */ - name: string; } export type RequestBody$deleteCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedPodTemplate$Status$200 { @@ -10205,6 +10205,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10217,8 +10219,6 @@ export interface Parameter$patchCoreV1NamespacedPodTemplate { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PodTemplate */ - name: string; } export type RequestBody$patchCoreV1NamespacedPodTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedPodTemplate$Status$200 { @@ -10389,12 +10389,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ReplicationController */ - name: string; } export interface Response$readCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; @@ -10402,6 +10402,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10412,8 +10414,6 @@ export interface Parameter$replaceCoreV1NamespacedReplicationController { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ReplicationController */ - name: string; } export type RequestBody$replaceCoreV1NamespacedReplicationController = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$replaceCoreV1NamespacedReplicationController$Status$200 { @@ -10427,6 +10427,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10439,8 +10441,6 @@ export interface Parameter$deleteCoreV1NamespacedReplicationController { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ReplicationController */ - name: string; } export type RequestBody$deleteCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedReplicationController$Status$200 { @@ -10454,6 +10454,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10466,8 +10468,6 @@ export interface Parameter$patchCoreV1NamespacedReplicationController { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ReplicationController */ - name: string; } export type RequestBody$patchCoreV1NamespacedReplicationController = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationController$Status$200 { @@ -10481,12 +10481,12 @@ export interface Response$patchCoreV1NamespacedReplicationController$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ReplicationController; } export interface Parameter$readCoreV1NamespacedReplicationControllerScale { + /** name of the Scale */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Scale */ - name: string; } export interface Response$readCoreV1NamespacedReplicationControllerScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -10494,6 +10494,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10504,8 +10506,6 @@ export interface Parameter$replaceCoreV1NamespacedReplicationControllerScale { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Scale */ - name: string; } export type RequestBody$replaceCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceCoreV1NamespacedReplicationControllerScale$Status$200 { @@ -10519,6 +10519,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10531,8 +10533,6 @@ export interface Parameter$patchCoreV1NamespacedReplicationControllerScale { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Scale */ - name: string; } export type RequestBody$patchCoreV1NamespacedReplicationControllerScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status$200 { @@ -10546,12 +10546,12 @@ export interface Response$patchCoreV1NamespacedReplicationControllerScale$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readCoreV1NamespacedReplicationControllerStatus { + /** name of the ReplicationController */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ReplicationController */ - name: string; } export interface Response$readCoreV1NamespacedReplicationControllerStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ReplicationController; @@ -10559,6 +10559,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10569,8 +10571,6 @@ export interface Parameter$replaceCoreV1NamespacedReplicationControllerStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ReplicationController */ - name: string; } export type RequestBody$replaceCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$api$core$v1$ReplicationController.Content; export interface Response$replaceCoreV1NamespacedReplicationControllerStatus$Status$200 { @@ -10584,6 +10584,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10596,8 +10598,6 @@ export interface Parameter$patchCoreV1NamespacedReplicationControllerStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ReplicationController */ - name: string; } export type RequestBody$patchCoreV1NamespacedReplicationControllerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedReplicationControllerStatus$Status$200 { @@ -10768,12 +10768,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ResourceQuota */ - name: string; } export interface Response$readCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; @@ -10781,6 +10781,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10791,8 +10793,6 @@ export interface Parameter$replaceCoreV1NamespacedResourceQuota { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ResourceQuota */ - name: string; } export type RequestBody$replaceCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$replaceCoreV1NamespacedResourceQuota$Status$200 { @@ -10806,6 +10806,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10818,8 +10820,6 @@ export interface Parameter$deleteCoreV1NamespacedResourceQuota { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ResourceQuota */ - name: string; } export type RequestBody$deleteCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedResourceQuota$Status$200 { @@ -10833,6 +10833,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10845,8 +10847,6 @@ export interface Parameter$patchCoreV1NamespacedResourceQuota { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ResourceQuota */ - name: string; } export type RequestBody$patchCoreV1NamespacedResourceQuota = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedResourceQuota$Status$200 { @@ -10860,12 +10860,12 @@ export interface Response$patchCoreV1NamespacedResourceQuota$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$ResourceQuota; } export interface Parameter$readCoreV1NamespacedResourceQuotaStatus { + /** name of the ResourceQuota */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ResourceQuota */ - name: string; } export interface Response$readCoreV1NamespacedResourceQuotaStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ResourceQuota; @@ -10873,6 +10873,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10883,8 +10885,6 @@ export interface Parameter$replaceCoreV1NamespacedResourceQuotaStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ResourceQuota */ - name: string; } export type RequestBody$replaceCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$api$core$v1$ResourceQuota.Content; export interface Response$replaceCoreV1NamespacedResourceQuotaStatus$Status$200 { @@ -10898,6 +10898,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -10910,8 +10912,6 @@ export interface Parameter$patchCoreV1NamespacedResourceQuotaStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ResourceQuota */ - name: string; } export type RequestBody$patchCoreV1NamespacedResourceQuotaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedResourceQuotaStatus$Status$200 { @@ -11082,12 +11082,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Secret */ - name: string; } export interface Response$readCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Secret; @@ -11095,6 +11095,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11105,8 +11107,6 @@ export interface Parameter$replaceCoreV1NamespacedSecret { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Secret */ - name: string; } export type RequestBody$replaceCoreV1NamespacedSecret = RequestBodies.io$k8s$api$core$v1$Secret.Content; export interface Response$replaceCoreV1NamespacedSecret$Status$200 { @@ -11120,6 +11120,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11132,8 +11134,6 @@ export interface Parameter$deleteCoreV1NamespacedSecret { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Secret */ - name: string; } export type RequestBody$deleteCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedSecret$Status$200 { @@ -11147,6 +11147,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11159,8 +11161,6 @@ export interface Parameter$patchCoreV1NamespacedSecret { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Secret */ - name: string; } export type RequestBody$patchCoreV1NamespacedSecret = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedSecret$Status$200 { @@ -11331,12 +11331,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ServiceAccount */ - name: string; } export interface Response$readCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ServiceAccount; @@ -11344,6 +11344,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11354,8 +11356,6 @@ export interface Parameter$replaceCoreV1NamespacedServiceAccount { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ServiceAccount */ - name: string; } export type RequestBody$replaceCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$api$core$v1$ServiceAccount.Content; export interface Response$replaceCoreV1NamespacedServiceAccount$Status$200 { @@ -11369,6 +11369,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11381,8 +11383,6 @@ export interface Parameter$deleteCoreV1NamespacedServiceAccount { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ServiceAccount */ - name: string; } export type RequestBody$deleteCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedServiceAccount$Status$200 { @@ -11396,6 +11396,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11408,8 +11410,6 @@ export interface Parameter$patchCoreV1NamespacedServiceAccount { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ServiceAccount */ - name: string; } export type RequestBody$patchCoreV1NamespacedServiceAccount = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedServiceAccount$Status$200 { @@ -11429,12 +11429,12 @@ export interface Parameter$createCoreV1NamespacedServiceAccountToken { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; + /** name of the TokenRequest */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the TokenRequest */ - name: string; } export interface RequestBody$createCoreV1NamespacedServiceAccountToken { "*/*": Schemas.io$k8s$api$authentication$v1$TokenRequest; @@ -11612,12 +11612,12 @@ export interface Response$deleteCoreV1CollectionNamespacedService$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1NamespacedService { + /** name of the Service */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Service */ - name: string; } export interface Response$readCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Service; @@ -11625,6 +11625,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11635,8 +11637,6 @@ export interface Parameter$replaceCoreV1NamespacedService { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Service */ - name: string; } export type RequestBody$replaceCoreV1NamespacedService = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$replaceCoreV1NamespacedService$Status$200 { @@ -11650,6 +11650,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11662,8 +11664,6 @@ export interface Parameter$deleteCoreV1NamespacedService { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Service */ - name: string; } export type RequestBody$deleteCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoreV1NamespacedService$Status$200 { @@ -11677,6 +11677,8 @@ export interface Response$deleteCoreV1NamespacedService$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$patchCoreV1NamespacedService { + /** name of the Service */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11689,8 +11691,6 @@ export interface Parameter$patchCoreV1NamespacedService { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Service */ - name: string; } export type RequestBody$patchCoreV1NamespacedService = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedService$Status$200 { @@ -11704,166 +11704,166 @@ export interface Response$patchCoreV1NamespacedService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$connectCoreV1GetNamespacedServiceProxy { + /** name of the ServiceProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** 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?: Parameters.path$QCf0eosM; - /** name of the ServiceProxyOptions */ - name: string; } export interface Response$connectCoreV1GetNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedServiceProxy { + /** name of the ServiceProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** 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?: Parameters.path$QCf0eosM; - /** name of the ServiceProxyOptions */ - name: string; } export interface Response$connectCoreV1PutNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedServiceProxy { + /** name of the ServiceProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** 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?: Parameters.path$QCf0eosM; - /** name of the ServiceProxyOptions */ - name: string; } export interface Response$connectCoreV1PostNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedServiceProxy { + /** name of the ServiceProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** 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?: Parameters.path$QCf0eosM; - /** name of the ServiceProxyOptions */ - name: string; } export interface Response$connectCoreV1DeleteNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedServiceProxy { + /** name of the ServiceProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** 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?: Parameters.path$QCf0eosM; - /** name of the ServiceProxyOptions */ - name: string; } export interface Response$connectCoreV1OptionsNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedServiceProxy { + /** name of the ServiceProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** 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?: Parameters.path$QCf0eosM; - /** name of the ServiceProxyOptions */ - name: string; } export interface Response$connectCoreV1HeadNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedServiceProxy { + /** name of the ServiceProxyOptions */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** 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?: Parameters.path$QCf0eosM; - /** name of the ServiceProxyOptions */ - name: string; } export interface Response$connectCoreV1PatchNamespacedServiceProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNamespacedServiceProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** 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?: Parameters.path$QCf0eosM; /** name of the ServiceProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1GetNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNamespacedServiceProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** 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?: Parameters.path$QCf0eosM; /** name of the ServiceProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PutNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNamespacedServiceProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** 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?: Parameters.path$QCf0eosM; /** name of the ServiceProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PostNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNamespacedServiceProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** 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?: Parameters.path$QCf0eosM; /** name of the ServiceProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1DeleteNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNamespacedServiceProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** 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?: Parameters.path$QCf0eosM; /** name of the ServiceProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1OptionsNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNamespacedServiceProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** 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?: Parameters.path$QCf0eosM; /** name of the ServiceProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1HeadNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNamespacedServiceProxyWithPath { - /** object name and auth scope, such as for teams and projects */ - namespace: Parameters.namespace$vgWSWtn3; - /** 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?: Parameters.path$QCf0eosM; /** name of the ServiceProxyOptions */ name: string; + /** object name and auth scope, such as for teams and projects */ + namespace: Parameters.namespace$vgWSWtn3; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PatchNamespacedServiceProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NamespacedServiceStatus { + /** name of the Service */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Service */ - name: string; } export interface Response$readCoreV1NamespacedServiceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Service; @@ -11871,6 +11871,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11881,8 +11883,6 @@ export interface Parameter$replaceCoreV1NamespacedServiceStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Service */ - name: string; } export type RequestBody$replaceCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$api$core$v1$Service.Content; export interface Response$replaceCoreV1NamespacedServiceStatus$Status$200 { @@ -11896,6 +11896,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -11908,8 +11910,6 @@ export interface Parameter$patchCoreV1NamespacedServiceStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Service */ - name: string; } export type RequestBody$patchCoreV1NamespacedServiceStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoreV1NamespacedServiceStatus$Status$200 { @@ -11923,10 +11923,10 @@ export interface Response$patchCoreV1NamespacedServiceStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Service; } export interface Parameter$readCoreV1Namespace { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the Namespace */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCoreV1Namespace$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -11934,6 +11934,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -11942,8 +11944,6 @@ export interface Parameter$replaceCoreV1Namespace { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -11957,6 +11957,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -11967,8 +11969,6 @@ export interface Parameter$deleteCoreV1Namespace { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -11982,6 +11982,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -11992,8 +11994,6 @@ export interface Parameter$patchCoreV1Namespace { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -12013,10 +12013,10 @@ export interface Parameter$replaceCoreV1NamespaceFinalize { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the Namespace */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export type RequestBody$replaceCoreV1NamespaceFinalize = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1NamespaceFinalize$Status$200 { @@ -12030,10 +12030,10 @@ export interface Response$replaceCoreV1NamespaceFinalize$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$readCoreV1NamespaceStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the Namespace */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCoreV1NamespaceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -12041,6 +12041,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12049,8 +12051,6 @@ export interface Parameter$replaceCoreV1NamespaceStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -12064,6 +12064,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12074,8 +12076,6 @@ export interface Parameter$patchCoreV1NamespaceStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -12240,10 +12240,10 @@ export interface Response$deleteCoreV1CollectionNode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1Node { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the Node */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCoreV1Node$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -12251,6 +12251,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12259,8 +12261,6 @@ export interface Parameter$replaceCoreV1Node { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -12274,6 +12274,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12284,8 +12286,6 @@ export interface Parameter$deleteCoreV1Node { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -12299,6 +12299,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12309,8 +12311,6 @@ export interface Parameter$patchCoreV1Node { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -12324,136 +12324,136 @@ export interface Response$patchCoreV1Node$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$connectCoreV1GetNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; } export interface Response$connectCoreV1GetNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; } export interface Response$connectCoreV1PutNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; } export interface Response$connectCoreV1PostNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; } export interface Response$connectCoreV1DeleteNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; } export interface Response$connectCoreV1OptionsNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; } export interface Response$connectCoreV1HeadNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** Path is the URL path to use for the current proxy request to node. */ + path?: Parameters.path$rFDtV0x9; } export interface Response$connectCoreV1PatchNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNodeProxyWithPath { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1GetNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxyWithPath { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PutNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxyWithPath { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PostNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxyWithPath { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1DeleteNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxyWithPath { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1OptionsNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxyWithPath { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1HeadNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxyWithPath { - /** Path is the URL path to use for the current proxy request to node. */ - path?: Parameters.path$rFDtV0x9; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + path: Parameters.path$z6Ciiujn; } export interface Response$connectCoreV1PatchNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NodeStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the Node */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCoreV1NodeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -12461,6 +12461,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12469,8 +12471,6 @@ export interface Parameter$replaceCoreV1NodeStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -12484,6 +12484,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12494,8 +12496,6 @@ export interface Parameter$patchCoreV1NodeStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -12721,10 +12721,10 @@ export interface Response$deleteCoreV1CollectionPersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCoreV1PersistentVolume { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the PersistentVolume */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCoreV1PersistentVolume$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -12732,6 +12732,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12740,8 +12742,6 @@ export interface Parameter$replaceCoreV1PersistentVolume { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -12755,6 +12755,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12765,8 +12767,6 @@ export interface Parameter$deleteCoreV1PersistentVolume { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -12780,6 +12780,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12790,8 +12792,6 @@ export interface Parameter$patchCoreV1PersistentVolume { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -12805,10 +12805,10 @@ export interface Response$patchCoreV1PersistentVolume$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$readCoreV1PersistentVolumeStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the PersistentVolume */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -12816,6 +12816,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12824,8 +12826,6 @@ export interface Parameter$replaceCoreV1PersistentVolumeStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -12839,6 +12839,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -12849,8 +12851,6 @@ export interface Parameter$patchCoreV1PersistentVolumeStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -13677,6 +13677,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ConfigMap */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -13713,8 +13715,6 @@ export interface Parameter$watchCoreV1NamespacedConfigMap { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ConfigMap */ - name: string; } export interface Response$watchCoreV1NamespacedConfigMap$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13805,6 +13805,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Endpoints */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -13841,8 +13843,6 @@ export interface Parameter$watchCoreV1NamespacedEndpoints { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Endpoints */ - name: string; } export interface Response$watchCoreV1NamespacedEndpoints$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -13933,6 +13933,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Event */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -13969,8 +13971,6 @@ export interface Parameter$watchCoreV1NamespacedEvent { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Event */ - name: string; } export interface Response$watchCoreV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14061,6 +14061,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the LimitRange */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14097,8 +14099,6 @@ export interface Parameter$watchCoreV1NamespacedLimitRange { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the LimitRange */ - name: string; } export interface Response$watchCoreV1NamespacedLimitRange$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14189,6 +14189,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the PersistentVolumeClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14225,8 +14227,6 @@ export interface Parameter$watchCoreV1NamespacedPersistentVolumeClaim { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PersistentVolumeClaim */ - name: string; } export interface Response$watchCoreV1NamespacedPersistentVolumeClaim$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14317,6 +14317,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Pod */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14353,8 +14355,6 @@ export interface Parameter$watchCoreV1NamespacedPod { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Pod */ - name: string; } export interface Response$watchCoreV1NamespacedPod$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14445,6 +14445,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the PodTemplate */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14481,8 +14483,6 @@ export interface Parameter$watchCoreV1NamespacedPodTemplate { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PodTemplate */ - name: string; } export interface Response$watchCoreV1NamespacedPodTemplate$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14573,6 +14573,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ReplicationController */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14609,8 +14611,6 @@ export interface Parameter$watchCoreV1NamespacedReplicationController { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ReplicationController */ - name: string; } export interface Response$watchCoreV1NamespacedReplicationController$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14701,6 +14701,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ResourceQuota */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14737,8 +14739,6 @@ export interface Parameter$watchCoreV1NamespacedResourceQuota { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ResourceQuota */ - name: string; } export interface Response$watchCoreV1NamespacedResourceQuota$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14829,6 +14829,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Secret */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14865,8 +14867,6 @@ export interface Parameter$watchCoreV1NamespacedSecret { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Secret */ - name: string; } export interface Response$watchCoreV1NamespacedSecret$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -14957,6 +14957,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ServiceAccount */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -14993,8 +14995,6 @@ export interface Parameter$watchCoreV1NamespacedServiceAccount { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ServiceAccount */ - name: string; } export interface Response$watchCoreV1NamespacedServiceAccount$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15085,6 +15085,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Service */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -15121,8 +15123,6 @@ export interface Parameter$watchCoreV1NamespacedService { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Service */ - name: string; } export interface Response$watchCoreV1NamespacedService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15150,6 +15150,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Namespace */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -15184,8 +15186,6 @@ export interface Parameter$watchCoreV1Namespace { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Namespace */ - name: string; } export interface Response$watchCoreV1Namespace$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15274,6 +15274,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Node */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -15308,8 +15310,6 @@ export interface Parameter$watchCoreV1Node { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Node */ - name: string; } export interface Response$watchCoreV1Node$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -15459,6 +15459,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the PersistentVolume */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -15493,8 +15495,6 @@ export interface Parameter$watchCoreV1PersistentVolume { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PersistentVolume */ - name: string; } export interface Response$watchCoreV1PersistentVolume$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -16097,10 +16097,10 @@ export interface Response$deleteAdmissionregistrationV1CollectionMutatingWebhook "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1MutatingWebhookConfiguration { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the MutatingWebhookConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1$MutatingWebhookConfiguration; @@ -16108,6 +16108,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16116,8 +16118,6 @@ export interface Parameter$replaceAdmissionregistrationV1MutatingWebhookConfigur fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -16131,6 +16131,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16141,8 +16143,6 @@ export interface Parameter$deleteAdmissionregistrationV1MutatingWebhookConfigura orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -16156,6 +16156,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16166,8 +16168,6 @@ export interface Parameter$patchAdmissionregistrationV1MutatingWebhookConfigurat fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -16332,10 +16332,10 @@ export interface Response$deleteAdmissionregistrationV1CollectionValidatingWebho "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1ValidatingWebhookConfiguration { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ValidatingWebhookConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1$ValidatingWebhookConfiguration; @@ -16343,6 +16343,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16351,8 +16353,6 @@ export interface Parameter$replaceAdmissionregistrationV1ValidatingWebhookConfig fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -16366,6 +16366,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16376,8 +16378,6 @@ export interface Parameter$deleteAdmissionregistrationV1ValidatingWebhookConfigu orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -16391,6 +16391,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16401,8 +16403,6 @@ export interface Parameter$patchAdmissionregistrationV1ValidatingWebhookConfigur fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -16495,6 +16495,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the MutatingWebhookConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -16529,8 +16531,6 @@ export interface Parameter$watchAdmissionregistrationV1MutatingWebhookConfigurat timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the MutatingWebhookConfiguration */ - name: string; } export interface Response$watchAdmissionregistrationV1MutatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -16619,6 +16619,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ValidatingWebhookConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -16653,8 +16655,6 @@ export interface Parameter$watchAdmissionregistrationV1ValidatingWebhookConfigur timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ValidatingWebhookConfiguration */ - name: string; } export interface Response$watchAdmissionregistrationV1ValidatingWebhookConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -16820,10 +16820,10 @@ export interface Response$deleteAdmissionregistrationV1alpha1CollectionValidatin "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ValidatingAdmissionPolicy */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; @@ -16831,6 +16831,8 @@ export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPo "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; } export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16839,8 +16841,6 @@ export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissi fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy.Content; export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { @@ -16854,6 +16854,8 @@ export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; } export interface Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16864,8 +16866,6 @@ export interface Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissio orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { @@ -16879,6 +16879,8 @@ export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmission "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16889,8 +16891,6 @@ export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmission fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { @@ -16904,10 +16904,10 @@ export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionP "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; } export interface Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ValidatingAdmissionPolicy */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; @@ -16915,6 +16915,8 @@ export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPo "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; } export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16923,8 +16925,6 @@ export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissi fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy.Content; export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 { @@ -16938,6 +16938,8 @@ export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicy; } export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -16948,8 +16950,6 @@ export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmission fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus$Status$200 { @@ -17114,10 +17114,10 @@ export interface Response$deleteAdmissionregistrationV1alpha1CollectionValidatin "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ValidatingAdmissionPolicyBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; @@ -17125,6 +17125,8 @@ export interface Response$readAdmissionregistrationV1alpha1ValidatingAdmissionPo "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; } export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17133,8 +17135,6 @@ export interface Parameter$replaceAdmissionregistrationV1alpha1ValidatingAdmissi fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export type RequestBody$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding.Content; export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { @@ -17148,6 +17148,8 @@ export interface Response$replaceAdmissionregistrationV1alpha1ValidatingAdmissio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1alpha1$ValidatingAdmissionPolicyBinding; } export interface Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17158,8 +17160,6 @@ export interface Parameter$deleteAdmissionregistrationV1alpha1ValidatingAdmissio orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export type RequestBody$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { @@ -17173,6 +17173,8 @@ export interface Response$deleteAdmissionregistrationV1alpha1ValidatingAdmission "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding { + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17183,8 +17185,6 @@ export interface Parameter$patchAdmissionregistrationV1alpha1ValidatingAdmission fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export type RequestBody$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { @@ -17277,6 +17277,8 @@ export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmission * 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?: Parameters.limit$1NfNmdNH; + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -17311,8 +17313,6 @@ export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmission timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export interface Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17401,6 +17401,8 @@ export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmission * 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?: Parameters.limit$1NfNmdNH; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -17435,8 +17437,6 @@ export interface Parameter$watchAdmissionregistrationV1alpha1ValidatingAdmission timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export interface Response$watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -17602,10 +17602,10 @@ export interface Response$deleteAdmissionregistrationV1beta1CollectionValidating "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ValidatingAdmissionPolicy */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; @@ -17613,6 +17613,8 @@ export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPol "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; } export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17621,8 +17623,6 @@ export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissio fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy.Content; export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { @@ -17636,6 +17636,8 @@ export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmission "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; } export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17646,8 +17648,6 @@ export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmission orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { @@ -17661,6 +17661,8 @@ export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionP "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17671,8 +17673,6 @@ export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionP fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { @@ -17686,10 +17686,10 @@ export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPo "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; } export interface Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ValidatingAdmissionPolicy */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; @@ -17697,6 +17697,8 @@ export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPol "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; } export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17705,8 +17707,6 @@ export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissio fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy.Content; export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 { @@ -17720,6 +17720,8 @@ export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmission "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicy; } export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus { + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17730,8 +17732,6 @@ export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionP fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export type RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus$Status$200 { @@ -17896,10 +17896,10 @@ export interface Response$deleteAdmissionregistrationV1beta1CollectionValidating "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ValidatingAdmissionPolicyBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { "application/json": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; @@ -17907,6 +17907,8 @@ export interface Response$readAdmissionregistrationV1beta1ValidatingAdmissionPol "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; } export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17915,8 +17917,6 @@ export interface Parameter$replaceAdmissionregistrationV1beta1ValidatingAdmissio fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export type RequestBody$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding.Content; export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { @@ -17930,6 +17930,8 @@ export interface Response$replaceAdmissionregistrationV1beta1ValidatingAdmission "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$admissionregistration$v1beta1$ValidatingAdmissionPolicyBinding; } export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17940,8 +17942,6 @@ export interface Parameter$deleteAdmissionregistrationV1beta1ValidatingAdmission orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export type RequestBody$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { @@ -17955,6 +17955,8 @@ export interface Response$deleteAdmissionregistrationV1beta1ValidatingAdmissionP "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding { + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -17965,8 +17967,6 @@ export interface Parameter$patchAdmissionregistrationV1beta1ValidatingAdmissionP fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export type RequestBody$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { @@ -18059,6 +18059,8 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionP * 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?: Parameters.limit$1NfNmdNH; + /** name of the ValidatingAdmissionPolicy */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -18093,8 +18095,6 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionP timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ValidatingAdmissionPolicy */ - name: string; } export interface Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18183,6 +18183,8 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionP * 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?: Parameters.limit$1NfNmdNH; + /** name of the ValidatingAdmissionPolicyBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -18217,8 +18219,6 @@ export interface Parameter$watchAdmissionregistrationV1beta1ValidatingAdmissionP timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ValidatingAdmissionPolicyBinding */ - name: string; } export interface Response$watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18389,10 +18389,10 @@ export interface Response$deleteApiextensionsV1CollectionCustomResourceDefinitio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiextensionsV1CustomResourceDefinition { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the CustomResourceDefinition */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readApiextensionsV1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -18400,6 +18400,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18408,8 +18410,6 @@ export interface Parameter$replaceApiextensionsV1CustomResourceDefinition { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -18423,6 +18423,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18433,8 +18435,6 @@ export interface Parameter$deleteApiextensionsV1CustomResourceDefinition { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -18448,6 +18448,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18458,8 +18460,6 @@ export interface Parameter$patchApiextensionsV1CustomResourceDefinition { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -18473,10 +18473,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 { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the CustomResourceDefinition */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -18484,6 +18484,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18492,8 +18494,6 @@ export interface Parameter$replaceApiextensionsV1CustomResourceDefinitionStatus fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -18507,6 +18507,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18517,8 +18519,6 @@ export interface Parameter$patchApiextensionsV1CustomResourceDefinitionStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -18611,6 +18611,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the CustomResourceDefinition */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -18645,8 +18647,6 @@ export interface Parameter$watchApiextensionsV1CustomResourceDefinition { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the CustomResourceDefinition */ - name: string; } export interface Response$watchApiextensionsV1CustomResourceDefinition$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -18817,10 +18817,10 @@ export interface Response$deleteApiregistrationV1CollectionAPIService$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readApiregistrationV1APIService { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the APIService */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readApiregistrationV1APIService$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -18828,6 +18828,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18836,8 +18838,6 @@ export interface Parameter$replaceApiregistrationV1APIService { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -18851,6 +18851,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18861,8 +18863,6 @@ export interface Parameter$deleteApiregistrationV1APIService { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -18876,6 +18876,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18886,8 +18888,6 @@ export interface Parameter$patchApiregistrationV1APIService { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -18901,10 +18901,10 @@ export interface Response$patchApiregistrationV1APIService$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; } export interface Parameter$readApiregistrationV1APIServiceStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the APIService */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -18912,6 +18912,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18920,8 +18922,6 @@ export interface Parameter$replaceApiregistrationV1APIServiceStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -18935,6 +18935,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -18945,8 +18947,6 @@ export interface Parameter$patchApiregistrationV1APIServiceStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -19039,6 +19039,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the APIService */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -19073,8 +19075,6 @@ export interface Parameter$watchApiregistrationV1APIService { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the APIService */ - name: string; } export interface Response$watchApiregistrationV1APIService$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -19434,12 +19434,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ControllerRevision */ - name: string; } export interface Response$readAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ControllerRevision; @@ -19447,6 +19447,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19457,8 +19459,6 @@ export interface Parameter$replaceAppsV1NamespacedControllerRevision { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ControllerRevision */ - name: string; } export type RequestBody$replaceAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$api$apps$v1$ControllerRevision.Content; export interface Response$replaceAppsV1NamespacedControllerRevision$Status$200 { @@ -19472,6 +19472,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19484,8 +19486,6 @@ export interface Parameter$deleteAppsV1NamespacedControllerRevision { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ControllerRevision */ - name: string; } export type RequestBody$deleteAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedControllerRevision$Status$200 { @@ -19499,6 +19499,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19511,8 +19513,6 @@ export interface Parameter$patchAppsV1NamespacedControllerRevision { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ControllerRevision */ - name: string; } export type RequestBody$patchAppsV1NamespacedControllerRevision = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedControllerRevision$Status$200 { @@ -19683,12 +19683,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the DaemonSet */ - name: string; } export interface Response$readAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; @@ -19696,6 +19696,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19706,8 +19708,6 @@ export interface Parameter$replaceAppsV1NamespacedDaemonSet { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the DaemonSet */ - name: string; } export type RequestBody$replaceAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$replaceAppsV1NamespacedDaemonSet$Status$200 { @@ -19721,6 +19721,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19733,8 +19735,6 @@ export interface Parameter$deleteAppsV1NamespacedDaemonSet { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the DaemonSet */ - name: string; } export type RequestBody$deleteAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedDaemonSet$Status$200 { @@ -19748,6 +19748,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19760,8 +19762,6 @@ export interface Parameter$patchAppsV1NamespacedDaemonSet { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the DaemonSet */ - name: string; } export type RequestBody$patchAppsV1NamespacedDaemonSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDaemonSet$Status$200 { @@ -19775,12 +19775,12 @@ export interface Response$patchAppsV1NamespacedDaemonSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$DaemonSet; } export interface Parameter$readAppsV1NamespacedDaemonSetStatus { + /** name of the DaemonSet */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the DaemonSet */ - name: string; } export interface Response$readAppsV1NamespacedDaemonSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$DaemonSet; @@ -19788,6 +19788,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19798,8 +19800,6 @@ export interface Parameter$replaceAppsV1NamespacedDaemonSetStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the DaemonSet */ - name: string; } export type RequestBody$replaceAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$api$apps$v1$DaemonSet.Content; export interface Response$replaceAppsV1NamespacedDaemonSetStatus$Status$200 { @@ -19813,6 +19813,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -19825,8 +19827,6 @@ export interface Parameter$patchAppsV1NamespacedDaemonSetStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the DaemonSet */ - name: string; } export type RequestBody$patchAppsV1NamespacedDaemonSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDaemonSetStatus$Status$200 { @@ -19997,12 +19997,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Deployment */ - name: string; } export interface Response$readAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$Deployment; @@ -20010,6 +20010,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20020,8 +20022,6 @@ export interface Parameter$replaceAppsV1NamespacedDeployment { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Deployment */ - name: string; } export type RequestBody$replaceAppsV1NamespacedDeployment = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$replaceAppsV1NamespacedDeployment$Status$200 { @@ -20035,6 +20035,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20047,8 +20049,6 @@ export interface Parameter$deleteAppsV1NamespacedDeployment { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Deployment */ - name: string; } export type RequestBody$deleteAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedDeployment$Status$200 { @@ -20062,6 +20062,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20074,8 +20076,6 @@ export interface Parameter$patchAppsV1NamespacedDeployment { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Deployment */ - name: string; } export type RequestBody$patchAppsV1NamespacedDeployment = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeployment$Status$200 { @@ -20089,12 +20089,12 @@ export interface Response$patchAppsV1NamespacedDeployment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$Deployment; } export interface Parameter$readAppsV1NamespacedDeploymentScale { + /** name of the Scale */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Scale */ - name: string; } export interface Response$readAppsV1NamespacedDeploymentScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -20102,6 +20102,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20112,8 +20114,6 @@ export interface Parameter$replaceAppsV1NamespacedDeploymentScale { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Scale */ - name: string; } export type RequestBody$replaceAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedDeploymentScale$Status$200 { @@ -20127,6 +20127,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20139,8 +20141,6 @@ export interface Parameter$patchAppsV1NamespacedDeploymentScale { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Scale */ - name: string; } export type RequestBody$patchAppsV1NamespacedDeploymentScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeploymentScale$Status$200 { @@ -20154,12 +20154,12 @@ export interface Response$patchAppsV1NamespacedDeploymentScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedDeploymentStatus { + /** name of the Deployment */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Deployment */ - name: string; } export interface Response$readAppsV1NamespacedDeploymentStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$Deployment; @@ -20167,6 +20167,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20177,8 +20179,6 @@ export interface Parameter$replaceAppsV1NamespacedDeploymentStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Deployment */ - name: string; } export type RequestBody$replaceAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$api$apps$v1$Deployment.Content; export interface Response$replaceAppsV1NamespacedDeploymentStatus$Status$200 { @@ -20192,6 +20192,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20204,8 +20206,6 @@ export interface Parameter$patchAppsV1NamespacedDeploymentStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Deployment */ - name: string; } export type RequestBody$patchAppsV1NamespacedDeploymentStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedDeploymentStatus$Status$200 { @@ -20376,12 +20376,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ReplicaSet */ - name: string; } export interface Response$readAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; @@ -20389,6 +20389,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20399,8 +20401,6 @@ export interface Parameter$replaceAppsV1NamespacedReplicaSet { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ReplicaSet */ - name: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$replaceAppsV1NamespacedReplicaSet$Status$200 { @@ -20414,6 +20414,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20426,8 +20428,6 @@ export interface Parameter$deleteAppsV1NamespacedReplicaSet { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ReplicaSet */ - name: string; } export type RequestBody$deleteAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedReplicaSet$Status$200 { @@ -20441,6 +20441,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20453,8 +20455,6 @@ export interface Parameter$patchAppsV1NamespacedReplicaSet { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ReplicaSet */ - name: string; } export type RequestBody$patchAppsV1NamespacedReplicaSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSet$Status$200 { @@ -20468,12 +20468,12 @@ export interface Response$patchAppsV1NamespacedReplicaSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$ReplicaSet; } export interface Parameter$readAppsV1NamespacedReplicaSetScale { + /** name of the Scale */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Scale */ - name: string; } export interface Response$readAppsV1NamespacedReplicaSetScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -20481,6 +20481,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20491,8 +20493,6 @@ export interface Parameter$replaceAppsV1NamespacedReplicaSetScale { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Scale */ - name: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedReplicaSetScale$Status$200 { @@ -20506,6 +20506,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20518,8 +20520,6 @@ export interface Parameter$patchAppsV1NamespacedReplicaSetScale { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Scale */ - name: string; } export type RequestBody$patchAppsV1NamespacedReplicaSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$200 { @@ -20533,12 +20533,12 @@ export interface Response$patchAppsV1NamespacedReplicaSetScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedReplicaSetStatus { + /** name of the ReplicaSet */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ReplicaSet */ - name: string; } export interface Response$readAppsV1NamespacedReplicaSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$ReplicaSet; @@ -20546,6 +20546,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20556,8 +20558,6 @@ export interface Parameter$replaceAppsV1NamespacedReplicaSetStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ReplicaSet */ - name: string; } export type RequestBody$replaceAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$api$apps$v1$ReplicaSet.Content; export interface Response$replaceAppsV1NamespacedReplicaSetStatus$Status$200 { @@ -20571,6 +20571,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20583,8 +20585,6 @@ export interface Parameter$patchAppsV1NamespacedReplicaSetStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ReplicaSet */ - name: string; } export type RequestBody$patchAppsV1NamespacedReplicaSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedReplicaSetStatus$Status$200 { @@ -20755,12 +20755,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the StatefulSet */ - name: string; } export interface Response$readAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; @@ -20768,6 +20768,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20778,8 +20780,6 @@ export interface Parameter$replaceAppsV1NamespacedStatefulSet { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the StatefulSet */ - name: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$replaceAppsV1NamespacedStatefulSet$Status$200 { @@ -20793,6 +20793,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20805,8 +20807,6 @@ export interface Parameter$deleteAppsV1NamespacedStatefulSet { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the StatefulSet */ - name: string; } export type RequestBody$deleteAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAppsV1NamespacedStatefulSet$Status$200 { @@ -20820,6 +20820,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20832,8 +20834,6 @@ export interface Parameter$patchAppsV1NamespacedStatefulSet { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the StatefulSet */ - name: string; } export type RequestBody$patchAppsV1NamespacedStatefulSet = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSet$Status$200 { @@ -20847,12 +20847,12 @@ export interface Response$patchAppsV1NamespacedStatefulSet$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apps$v1$StatefulSet; } export interface Parameter$readAppsV1NamespacedStatefulSetScale { + /** name of the Scale */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Scale */ - name: string; } export interface Response$readAppsV1NamespacedStatefulSetScale$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$Scale; @@ -20860,6 +20860,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20870,8 +20872,6 @@ export interface Parameter$replaceAppsV1NamespacedStatefulSetScale { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Scale */ - name: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$api$autoscaling$v1$Scale.Content; export interface Response$replaceAppsV1NamespacedStatefulSetScale$Status$200 { @@ -20885,6 +20885,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20897,8 +20899,6 @@ export interface Parameter$patchAppsV1NamespacedStatefulSetScale { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Scale */ - name: string; } export type RequestBody$patchAppsV1NamespacedStatefulSetScale = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$200 { @@ -20912,12 +20912,12 @@ export interface Response$patchAppsV1NamespacedStatefulSetScale$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$Scale; } export interface Parameter$readAppsV1NamespacedStatefulSetStatus { + /** name of the StatefulSet */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the StatefulSet */ - name: string; } export interface Response$readAppsV1NamespacedStatefulSetStatus$Status$200 { "application/json": Schemas.io$k8s$api$apps$v1$StatefulSet; @@ -20925,6 +20925,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20935,8 +20937,6 @@ export interface Parameter$replaceAppsV1NamespacedStatefulSetStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the StatefulSet */ - name: string; } export type RequestBody$replaceAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$api$apps$v1$StatefulSet.Content; export interface Response$replaceAppsV1NamespacedStatefulSetStatus$Status$200 { @@ -20950,6 +20950,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -20962,8 +20964,6 @@ export interface Parameter$patchAppsV1NamespacedStatefulSetStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the StatefulSet */ - name: string; } export type RequestBody$patchAppsV1NamespacedStatefulSetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAppsV1NamespacedStatefulSetStatus$Status$200 { @@ -21363,6 +21363,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ControllerRevision */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -21399,8 +21401,6 @@ export interface Parameter$watchAppsV1NamespacedControllerRevision { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ControllerRevision */ - name: string; } export interface Response$watchAppsV1NamespacedControllerRevision$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21491,6 +21491,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the DaemonSet */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -21527,8 +21529,6 @@ export interface Parameter$watchAppsV1NamespacedDaemonSet { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the DaemonSet */ - name: string; } export interface Response$watchAppsV1NamespacedDaemonSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21619,6 +21619,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Deployment */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -21655,8 +21657,6 @@ export interface Parameter$watchAppsV1NamespacedDeployment { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Deployment */ - name: string; } export interface Response$watchAppsV1NamespacedDeployment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21747,6 +21747,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ReplicaSet */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -21783,8 +21785,6 @@ export interface Parameter$watchAppsV1NamespacedReplicaSet { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ReplicaSet */ - name: string; } export interface Response$watchAppsV1NamespacedReplicaSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -21875,6 +21875,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the StatefulSet */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -21911,8 +21913,6 @@ export interface Parameter$watchAppsV1NamespacedStatefulSet { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the StatefulSet */ - name: string; } export interface Response$watchAppsV1NamespacedStatefulSet$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -22528,12 +22528,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the HorizontalPodAutoscaler */ - name: string; } export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; @@ -22541,6 +22541,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -22551,8 +22553,6 @@ export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -22566,6 +22566,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -22578,8 +22580,6 @@ export interface Parameter$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -22593,6 +22593,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -22605,8 +22607,6 @@ export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscaler { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { @@ -22620,12 +22620,12 @@ export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscaler$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the HorizontalPodAutoscaler */ - name: string; } export interface Response$readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler; @@ -22633,6 +22633,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -22643,8 +22645,6 @@ export interface Parameter$replaceAutoscalingV1NamespacedHorizontalPodAutoscaler fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v1$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -22658,6 +22658,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -22670,8 +22672,6 @@ export interface Parameter$patchAutoscalingV1NamespacedHorizontalPodAutoscalerSt fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -22827,6 +22827,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -22863,8 +22865,6 @@ export interface Parameter$watchAutoscalingV1NamespacedHorizontalPodAutoscaler { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the HorizontalPodAutoscaler */ - name: string; } export interface Response$watchAutoscalingV1NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23097,12 +23097,12 @@ export interface Response$deleteAutoscalingV2CollectionNamespacedHorizontalPodAu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the HorizontalPodAutoscaler */ - name: string; } export interface Response$readAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; @@ -23110,6 +23110,8 @@ export interface Response$readAutoscalingV2NamespacedHorizontalPodAutoscaler$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23120,8 +23122,6 @@ export interface Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -23135,6 +23135,8 @@ export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; } export interface Parameter$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23147,8 +23149,6 @@ export interface Parameter$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -23162,6 +23162,8 @@ export interface Response$deleteAutoscalingV2NamespacedHorizontalPodAutoscaler$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscaler { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23174,8 +23176,6 @@ export interface Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscaler { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscaler = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { @@ -23189,12 +23189,12 @@ export interface Response$patchAutoscalingV2NamespacedHorizontalPodAutoscaler$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; } export interface Parameter$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the HorizontalPodAutoscaler */ - name: string; } export interface Response$readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 { "application/json": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; @@ -23202,6 +23202,8 @@ export interface Response$readAutoscalingV2NamespacedHorizontalPodAutoscalerStat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; } export interface Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23212,8 +23214,6 @@ export interface Parameter$replaceAutoscalingV2NamespacedHorizontalPodAutoscaler fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler.Content; export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -23227,6 +23227,8 @@ export interface Response$replaceAutoscalingV2NamespacedHorizontalPodAutoscalerS "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$autoscaling$v2$HorizontalPodAutoscaler; } export interface Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus { + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23239,8 +23241,6 @@ export interface Parameter$patchAutoscalingV2NamespacedHorizontalPodAutoscalerSt fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the HorizontalPodAutoscaler */ - name: string; } export type RequestBody$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus$Status$200 { @@ -23396,6 +23396,8 @@ export interface Parameter$watchAutoscalingV2NamespacedHorizontalPodAutoscaler { * 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?: Parameters.limit$1NfNmdNH; + /** name of the HorizontalPodAutoscaler */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23432,8 +23434,6 @@ export interface Parameter$watchAutoscalingV2NamespacedHorizontalPodAutoscaler { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the HorizontalPodAutoscaler */ - name: string; } export interface Response$watchAutoscalingV2NamespacedHorizontalPodAutoscaler$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -23732,12 +23732,12 @@ export interface Response$deleteBatchV1CollectionNamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readBatchV1NamespacedCronJob { + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the CronJob */ - name: string; } export interface Response$readBatchV1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$CronJob; @@ -23745,6 +23745,8 @@ export interface Response$readBatchV1NamespacedCronJob$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; } export interface Parameter$replaceBatchV1NamespacedCronJob { + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23755,8 +23757,6 @@ export interface Parameter$replaceBatchV1NamespacedCronJob { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the CronJob */ - name: string; } export type RequestBody$replaceBatchV1NamespacedCronJob = RequestBodies.io$k8s$api$batch$v1$CronJob.Content; export interface Response$replaceBatchV1NamespacedCronJob$Status$200 { @@ -23770,6 +23770,8 @@ export interface Response$replaceBatchV1NamespacedCronJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; } export interface Parameter$deleteBatchV1NamespacedCronJob { + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23782,8 +23784,6 @@ export interface Parameter$deleteBatchV1NamespacedCronJob { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the CronJob */ - name: string; } export type RequestBody$deleteBatchV1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1NamespacedCronJob$Status$200 { @@ -23797,6 +23797,8 @@ export interface Response$deleteBatchV1NamespacedCronJob$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchBatchV1NamespacedCronJob { + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23809,8 +23811,6 @@ export interface Parameter$patchBatchV1NamespacedCronJob { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the CronJob */ - name: string; } export type RequestBody$patchBatchV1NamespacedCronJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedCronJob$Status$200 { @@ -23824,12 +23824,12 @@ export interface Response$patchBatchV1NamespacedCronJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; } export interface Parameter$readBatchV1NamespacedCronJobStatus { + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the CronJob */ - name: string; } export interface Response$readBatchV1NamespacedCronJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$CronJob; @@ -23837,6 +23837,8 @@ export interface Response$readBatchV1NamespacedCronJobStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; } export interface Parameter$replaceBatchV1NamespacedCronJobStatus { + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23847,8 +23849,6 @@ export interface Parameter$replaceBatchV1NamespacedCronJobStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the CronJob */ - name: string; } export type RequestBody$replaceBatchV1NamespacedCronJobStatus = RequestBodies.io$k8s$api$batch$v1$CronJob.Content; export interface Response$replaceBatchV1NamespacedCronJobStatus$Status$200 { @@ -23862,6 +23862,8 @@ export interface Response$replaceBatchV1NamespacedCronJobStatus$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$CronJob; } export interface Parameter$patchBatchV1NamespacedCronJobStatus { + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -23874,8 +23876,6 @@ export interface Parameter$patchBatchV1NamespacedCronJobStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the CronJob */ - name: string; } export type RequestBody$patchBatchV1NamespacedCronJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedCronJobStatus$Status$200 { @@ -24046,12 +24046,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Job */ - name: string; } export interface Response$readBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$Job; @@ -24059,6 +24059,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -24069,8 +24071,6 @@ export interface Parameter$replaceBatchV1NamespacedJob { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Job */ - name: string; } export type RequestBody$replaceBatchV1NamespacedJob = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$replaceBatchV1NamespacedJob$Status$200 { @@ -24084,6 +24084,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -24096,8 +24098,6 @@ export interface Parameter$deleteBatchV1NamespacedJob { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Job */ - name: string; } export type RequestBody$deleteBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteBatchV1NamespacedJob$Status$200 { @@ -24111,6 +24111,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -24123,8 +24125,6 @@ export interface Parameter$patchBatchV1NamespacedJob { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Job */ - name: string; } export type RequestBody$patchBatchV1NamespacedJob = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedJob$Status$200 { @@ -24138,12 +24138,12 @@ export interface Response$patchBatchV1NamespacedJob$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$batch$v1$Job; } export interface Parameter$readBatchV1NamespacedJobStatus { + /** name of the Job */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Job */ - name: string; } export interface Response$readBatchV1NamespacedJobStatus$Status$200 { "application/json": Schemas.io$k8s$api$batch$v1$Job; @@ -24151,6 +24151,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -24161,8 +24163,6 @@ export interface Parameter$replaceBatchV1NamespacedJobStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Job */ - name: string; } export type RequestBody$replaceBatchV1NamespacedJobStatus = RequestBodies.io$k8s$api$batch$v1$Job.Content; export interface Response$replaceBatchV1NamespacedJobStatus$Status$200 { @@ -24176,6 +24176,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -24188,8 +24190,6 @@ export interface Parameter$patchBatchV1NamespacedJobStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Job */ - name: string; } export type RequestBody$patchBatchV1NamespacedJobStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchBatchV1NamespacedJobStatus$Status$200 { @@ -24406,6 +24406,8 @@ export interface Parameter$watchBatchV1NamespacedCronJob { * 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?: Parameters.limit$1NfNmdNH; + /** name of the CronJob */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -24442,8 +24444,6 @@ export interface Parameter$watchBatchV1NamespacedCronJob { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the CronJob */ - name: string; } export interface Response$watchBatchV1NamespacedCronJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24534,6 +24534,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Job */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -24570,8 +24572,6 @@ export interface Parameter$watchBatchV1NamespacedJob { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Job */ - name: string; } export interface Response$watchBatchV1NamespacedJob$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -24742,10 +24742,10 @@ export interface Response$deleteCertificatesV1CollectionCertificateSigningReques "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCertificatesV1CertificateSigningRequest { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the CertificateSigningRequest */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCertificatesV1CertificateSigningRequest$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; @@ -24753,6 +24753,8 @@ export interface Response$readCertificatesV1CertificateSigningRequest$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$replaceCertificatesV1CertificateSigningRequest { + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -24761,8 +24763,6 @@ export interface Parameter$replaceCertificatesV1CertificateSigningRequest { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the CertificateSigningRequest */ - name: string; } export type RequestBody$replaceCertificatesV1CertificateSigningRequest = RequestBodies.io$k8s$api$certificates$v1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1CertificateSigningRequest$Status$200 { @@ -24776,6 +24776,8 @@ export interface Response$replaceCertificatesV1CertificateSigningRequest$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$deleteCertificatesV1CertificateSigningRequest { + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -24786,8 +24788,6 @@ export interface Parameter$deleteCertificatesV1CertificateSigningRequest { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the CertificateSigningRequest */ - name: string; } export type RequestBody$deleteCertificatesV1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCertificatesV1CertificateSigningRequest$Status$200 { @@ -24801,6 +24801,8 @@ export interface Response$deleteCertificatesV1CertificateSigningRequest$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCertificatesV1CertificateSigningRequest { + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -24811,8 +24813,6 @@ export interface Parameter$patchCertificatesV1CertificateSigningRequest { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the CertificateSigningRequest */ - name: string; } export type RequestBody$patchCertificatesV1CertificateSigningRequest = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1CertificateSigningRequest$Status$200 { @@ -24826,10 +24826,10 @@ export interface Response$patchCertificatesV1CertificateSigningRequest$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$readCertificatesV1CertificateSigningRequestApproval { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the CertificateSigningRequest */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCertificatesV1CertificateSigningRequestApproval$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; @@ -24837,6 +24837,8 @@ export interface Response$readCertificatesV1CertificateSigningRequestApproval$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$replaceCertificatesV1CertificateSigningRequestApproval { + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -24845,8 +24847,6 @@ export interface Parameter$replaceCertificatesV1CertificateSigningRequestApprova fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the CertificateSigningRequest */ - name: string; } export type RequestBody$replaceCertificatesV1CertificateSigningRequestApproval = RequestBodies.io$k8s$api$certificates$v1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1CertificateSigningRequestApproval$Status$200 { @@ -24860,6 +24860,8 @@ export interface Response$replaceCertificatesV1CertificateSigningRequestApproval "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$patchCertificatesV1CertificateSigningRequestApproval { + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -24870,8 +24872,6 @@ export interface Parameter$patchCertificatesV1CertificateSigningRequestApproval fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the CertificateSigningRequest */ - name: string; } export type RequestBody$patchCertificatesV1CertificateSigningRequestApproval = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1CertificateSigningRequestApproval$Status$200 { @@ -24885,10 +24885,10 @@ export interface Response$patchCertificatesV1CertificateSigningRequestApproval$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$readCertificatesV1CertificateSigningRequestStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the CertificateSigningRequest */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCertificatesV1CertificateSigningRequestStatus$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; @@ -24896,6 +24896,8 @@ export interface Response$readCertificatesV1CertificateSigningRequestStatus$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$replaceCertificatesV1CertificateSigningRequestStatus { + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -24904,8 +24906,6 @@ export interface Parameter$replaceCertificatesV1CertificateSigningRequestStatus fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the CertificateSigningRequest */ - name: string; } export type RequestBody$replaceCertificatesV1CertificateSigningRequestStatus = RequestBodies.io$k8s$api$certificates$v1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1CertificateSigningRequestStatus$Status$200 { @@ -24919,6 +24919,8 @@ export interface Response$replaceCertificatesV1CertificateSigningRequestStatus$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1$CertificateSigningRequest; } export interface Parameter$patchCertificatesV1CertificateSigningRequestStatus { + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -24929,8 +24931,6 @@ export interface Parameter$patchCertificatesV1CertificateSigningRequestStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the CertificateSigningRequest */ - name: string; } export type RequestBody$patchCertificatesV1CertificateSigningRequestStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1CertificateSigningRequestStatus$Status$200 { @@ -25023,6 +25023,8 @@ export interface Parameter$watchCertificatesV1CertificateSigningRequest { * 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?: Parameters.limit$1NfNmdNH; + /** name of the CertificateSigningRequest */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -25057,8 +25059,6 @@ export interface Parameter$watchCertificatesV1CertificateSigningRequest { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the CertificateSigningRequest */ - name: string; } export interface Response$watchCertificatesV1CertificateSigningRequest$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25224,10 +25224,10 @@ export interface Response$deleteCertificatesV1alpha1CollectionClusterTrustBundle "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readCertificatesV1alpha1ClusterTrustBundle { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ClusterTrustBundle */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readCertificatesV1alpha1ClusterTrustBundle$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; @@ -25235,6 +25235,8 @@ export interface Response$readCertificatesV1alpha1ClusterTrustBundle$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; } export interface Parameter$replaceCertificatesV1alpha1ClusterTrustBundle { + /** name of the ClusterTrustBundle */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -25243,8 +25245,6 @@ export interface Parameter$replaceCertificatesV1alpha1ClusterTrustBundle { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ClusterTrustBundle */ - name: string; } export type RequestBody$replaceCertificatesV1alpha1ClusterTrustBundle = RequestBodies.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle.Content; export interface Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$200 { @@ -25258,6 +25258,8 @@ export interface Response$replaceCertificatesV1alpha1ClusterTrustBundle$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1alpha1$ClusterTrustBundle; } export interface Parameter$deleteCertificatesV1alpha1ClusterTrustBundle { + /** name of the ClusterTrustBundle */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -25268,8 +25270,6 @@ export interface Parameter$deleteCertificatesV1alpha1ClusterTrustBundle { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ClusterTrustBundle */ - name: string; } export type RequestBody$deleteCertificatesV1alpha1ClusterTrustBundle = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$200 { @@ -25283,6 +25283,8 @@ export interface Response$deleteCertificatesV1alpha1ClusterTrustBundle$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchCertificatesV1alpha1ClusterTrustBundle { + /** name of the ClusterTrustBundle */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -25293,8 +25295,6 @@ export interface Parameter$patchCertificatesV1alpha1ClusterTrustBundle { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ClusterTrustBundle */ - name: string; } export type RequestBody$patchCertificatesV1alpha1ClusterTrustBundle = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCertificatesV1alpha1ClusterTrustBundle$Status$200 { @@ -25387,6 +25387,8 @@ export interface Parameter$watchCertificatesV1alpha1ClusterTrustBundle { * 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?: Parameters.limit$1NfNmdNH; + /** name of the ClusterTrustBundle */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -25421,8 +25423,6 @@ export interface Parameter$watchCertificatesV1alpha1ClusterTrustBundle { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ClusterTrustBundle */ - name: string; } export interface Response$watchCertificatesV1alpha1ClusterTrustBundle$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -25660,12 +25660,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Lease */ - name: string; } export interface Response$readCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$api$coordination$v1$Lease; @@ -25673,6 +25673,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -25683,8 +25685,6 @@ export interface Parameter$replaceCoordinationV1NamespacedLease { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Lease */ - name: string; } export type RequestBody$replaceCoordinationV1NamespacedLease = RequestBodies.io$k8s$api$coordination$v1$Lease.Content; export interface Response$replaceCoordinationV1NamespacedLease$Status$200 { @@ -25698,6 +25698,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -25710,8 +25712,6 @@ export interface Parameter$deleteCoordinationV1NamespacedLease { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Lease */ - name: string; } export type RequestBody$deleteCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteCoordinationV1NamespacedLease$Status$200 { @@ -25725,6 +25725,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -25737,8 +25739,6 @@ export interface Parameter$patchCoordinationV1NamespacedLease { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Lease */ - name: string; } export type RequestBody$patchCoordinationV1NamespacedLease = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchCoordinationV1NamespacedLease$Status$200 { @@ -25894,6 +25894,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Lease */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -25930,8 +25932,6 @@ export interface Parameter$watchCoordinationV1NamespacedLease { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Lease */ - name: string; } export interface Response$watchCoordinationV1NamespacedLease$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26169,12 +26169,12 @@ export interface Response$deleteDiscoveryV1CollectionNamespacedEndpointSlice$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readDiscoveryV1NamespacedEndpointSlice { + /** name of the EndpointSlice */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the EndpointSlice */ - name: string; } export interface Response$readDiscoveryV1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$api$discovery$v1$EndpointSlice; @@ -26182,6 +26182,8 @@ export interface Response$readDiscoveryV1NamespacedEndpointSlice$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; } export interface Parameter$replaceDiscoveryV1NamespacedEndpointSlice { + /** name of the EndpointSlice */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26192,8 +26194,6 @@ export interface Parameter$replaceDiscoveryV1NamespacedEndpointSlice { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the EndpointSlice */ - name: string; } export type RequestBody$replaceDiscoveryV1NamespacedEndpointSlice = RequestBodies.io$k8s$api$discovery$v1$EndpointSlice.Content; export interface Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$200 { @@ -26207,6 +26207,8 @@ export interface Response$replaceDiscoveryV1NamespacedEndpointSlice$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$discovery$v1$EndpointSlice; } export interface Parameter$deleteDiscoveryV1NamespacedEndpointSlice { + /** name of the EndpointSlice */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26219,8 +26221,6 @@ export interface Parameter$deleteDiscoveryV1NamespacedEndpointSlice { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the EndpointSlice */ - name: string; } export type RequestBody$deleteDiscoveryV1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$200 { @@ -26234,6 +26234,8 @@ export interface Response$deleteDiscoveryV1NamespacedEndpointSlice$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchDiscoveryV1NamespacedEndpointSlice { + /** name of the EndpointSlice */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26246,8 +26248,6 @@ export interface Parameter$patchDiscoveryV1NamespacedEndpointSlice { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the EndpointSlice */ - name: string; } export type RequestBody$patchDiscoveryV1NamespacedEndpointSlice = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchDiscoveryV1NamespacedEndpointSlice$Status$200 { @@ -26403,6 +26403,8 @@ export interface Parameter$watchDiscoveryV1NamespacedEndpointSlice { * 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?: Parameters.limit$1NfNmdNH; + /** name of the EndpointSlice */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26439,8 +26441,6 @@ export interface Parameter$watchDiscoveryV1NamespacedEndpointSlice { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the EndpointSlice */ - name: string; } export interface Response$watchDiscoveryV1NamespacedEndpointSlice$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -26678,12 +26678,12 @@ export interface Response$deleteEventsV1CollectionNamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readEventsV1NamespacedEvent { + /** name of the Event */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Event */ - name: string; } export interface Response$readEventsV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$api$events$v1$Event; @@ -26691,6 +26691,8 @@ export interface Response$readEventsV1NamespacedEvent$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; } export interface Parameter$replaceEventsV1NamespacedEvent { + /** name of the Event */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26701,8 +26703,6 @@ export interface Parameter$replaceEventsV1NamespacedEvent { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Event */ - name: string; } export type RequestBody$replaceEventsV1NamespacedEvent = RequestBodies.io$k8s$api$events$v1$Event.Content; export interface Response$replaceEventsV1NamespacedEvent$Status$200 { @@ -26716,6 +26716,8 @@ export interface Response$replaceEventsV1NamespacedEvent$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$events$v1$Event; } export interface Parameter$deleteEventsV1NamespacedEvent { + /** name of the Event */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26728,8 +26730,6 @@ export interface Parameter$deleteEventsV1NamespacedEvent { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Event */ - name: string; } export type RequestBody$deleteEventsV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteEventsV1NamespacedEvent$Status$200 { @@ -26743,6 +26743,8 @@ export interface Response$deleteEventsV1NamespacedEvent$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchEventsV1NamespacedEvent { + /** name of the Event */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26755,8 +26757,6 @@ export interface Parameter$patchEventsV1NamespacedEvent { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Event */ - name: string; } export type RequestBody$patchEventsV1NamespacedEvent = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchEventsV1NamespacedEvent$Status$200 { @@ -26912,6 +26912,8 @@ export interface Parameter$watchEventsV1NamespacedEvent { * 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?: Parameters.limit$1NfNmdNH; + /** name of the Event */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -26948,8 +26950,6 @@ export interface Parameter$watchEventsV1NamespacedEvent { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Event */ - name: string; } export interface Response$watchEventsV1NamespacedEvent$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27120,10 +27120,10 @@ export interface Response$deleteFlowcontrolApiserverV1beta2CollectionFlowSchema$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1beta2FlowSchema { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the FlowSchema */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta2FlowSchema$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; @@ -27131,6 +27131,8 @@ export interface Response$readFlowcontrolApiserverV1beta2FlowSchema$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1beta2FlowSchema { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27139,8 +27141,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta2FlowSchema { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the FlowSchema */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1beta2$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$200 { @@ -27154,6 +27154,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchema$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; } export interface Parameter$deleteFlowcontrolApiserverV1beta2FlowSchema { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27164,8 +27166,6 @@ export interface Parameter$deleteFlowcontrolApiserverV1beta2FlowSchema { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the FlowSchema */ - name: string; } export type RequestBody$deleteFlowcontrolApiserverV1beta2FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$200 { @@ -27179,6 +27179,8 @@ export interface Response$deleteFlowcontrolApiserverV1beta2FlowSchema$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1beta2FlowSchema { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27189,8 +27191,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta2FlowSchema { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the FlowSchema */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta2FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$200 { @@ -27204,10 +27204,10 @@ export interface Response$patchFlowcontrolApiserverV1beta2FlowSchema$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; } export interface Parameter$readFlowcontrolApiserverV1beta2FlowSchemaStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the FlowSchema */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; @@ -27215,6 +27215,8 @@ export interface Response$readFlowcontrolApiserverV1beta2FlowSchemaStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27223,8 +27225,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the FlowSchema */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta2$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 { @@ -27238,6 +27238,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta2FlowSchemaStatus$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$FlowSchema; } export interface Parameter$patchFlowcontrolApiserverV1beta2FlowSchemaStatus { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27248,8 +27250,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta2FlowSchemaStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the FlowSchema */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta2FlowSchemaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta2FlowSchemaStatus$Status$200 { @@ -27414,10 +27414,10 @@ export interface Response$deleteFlowcontrolApiserverV1beta2CollectionPriorityLev "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the PriorityLevelConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; @@ -27425,6 +27425,8 @@ export interface Response$readFlowcontrolApiserverV1beta2PriorityLevelConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27433,8 +27435,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfig fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { @@ -27448,6 +27448,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; } export interface Parameter$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27458,8 +27460,6 @@ export interface Parameter$deleteFlowcontrolApiserverV1beta2PriorityLevelConfigu orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { @@ -27473,6 +27473,8 @@ export interface Response$deleteFlowcontrolApiserverV1beta2PriorityLevelConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27483,8 +27485,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfigur fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { @@ -27498,10 +27498,10 @@ export interface Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; } export interface Parameter$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the PriorityLevelConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; @@ -27509,6 +27509,8 @@ export interface Response$readFlowcontrolApiserverV1beta2PriorityLevelConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27517,8 +27519,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta2PriorityLevelConfig fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 { @@ -27532,6 +27532,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta2PriorityLevelConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta2$PriorityLevelConfiguration; } export interface Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27542,8 +27544,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta2PriorityLevelConfigur fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus$Status$200 { @@ -27636,6 +27636,8 @@ export interface Parameter$watchFlowcontrolApiserverV1beta2FlowSchema { * 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?: Parameters.limit$1NfNmdNH; + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -27670,8 +27672,6 @@ export interface Parameter$watchFlowcontrolApiserverV1beta2FlowSchema { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the FlowSchema */ - name: string; } export interface Response$watchFlowcontrolApiserverV1beta2FlowSchema$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27760,6 +27760,8 @@ export interface Parameter$watchFlowcontrolApiserverV1beta2PriorityLevelConfigur * 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?: Parameters.limit$1NfNmdNH; + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -27794,8 +27796,6 @@ export interface Parameter$watchFlowcontrolApiserverV1beta2PriorityLevelConfigur timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PriorityLevelConfiguration */ - name: string; } export interface Response$watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -27961,10 +27961,10 @@ export interface Response$deleteFlowcontrolApiserverV1beta3CollectionFlowSchema$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1beta3FlowSchema { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the FlowSchema */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta3FlowSchema$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; @@ -27972,6 +27972,8 @@ export interface Response$readFlowcontrolApiserverV1beta3FlowSchema$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1beta3FlowSchema { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -27980,8 +27982,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta3FlowSchema { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the FlowSchema */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchema = RequestBodies.io$k8s$api$flowcontrol$v1beta3$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$200 { @@ -27995,6 +27995,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchema$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; } export interface Parameter$deleteFlowcontrolApiserverV1beta3FlowSchema { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28005,8 +28007,6 @@ export interface Parameter$deleteFlowcontrolApiserverV1beta3FlowSchema { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the FlowSchema */ - name: string; } export type RequestBody$deleteFlowcontrolApiserverV1beta3FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$200 { @@ -28020,6 +28020,8 @@ export interface Response$deleteFlowcontrolApiserverV1beta3FlowSchema$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1beta3FlowSchema { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28030,8 +28032,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta3FlowSchema { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the FlowSchema */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta3FlowSchema = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$200 { @@ -28045,10 +28045,10 @@ export interface Response$patchFlowcontrolApiserverV1beta3FlowSchema$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; } export interface Parameter$readFlowcontrolApiserverV1beta3FlowSchemaStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the FlowSchema */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; @@ -28056,6 +28056,8 @@ export interface Response$readFlowcontrolApiserverV1beta3FlowSchemaStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; } export interface Parameter$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28064,8 +28066,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the FlowSchema */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta3$FlowSchema.Content; export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 { @@ -28079,6 +28079,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta3FlowSchemaStatus$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$FlowSchema; } export interface Parameter$patchFlowcontrolApiserverV1beta3FlowSchemaStatus { + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28089,8 +28091,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta3FlowSchemaStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the FlowSchema */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta3FlowSchemaStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta3FlowSchemaStatus$Status$200 { @@ -28255,10 +28255,10 @@ export interface Response$deleteFlowcontrolApiserverV1beta3CollectionPriorityLev "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the PriorityLevelConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; @@ -28266,6 +28266,8 @@ export interface Response$readFlowcontrolApiserverV1beta3PriorityLevelConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28274,8 +28276,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfig fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration = RequestBodies.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { @@ -28289,6 +28289,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; } export interface Parameter$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28299,8 +28301,6 @@ export interface Parameter$deleteFlowcontrolApiserverV1beta3PriorityLevelConfigu orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { @@ -28314,6 +28314,8 @@ export interface Response$deleteFlowcontrolApiserverV1beta3PriorityLevelConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28324,8 +28326,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfigur fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { @@ -28339,10 +28339,10 @@ export interface Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigura "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; } export interface Parameter$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the PriorityLevelConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; @@ -28350,6 +28350,8 @@ export interface Response$readFlowcontrolApiserverV1beta3PriorityLevelConfigurat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; } export interface Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28358,8 +28360,6 @@ export interface Parameter$replaceFlowcontrolApiserverV1beta3PriorityLevelConfig fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = RequestBodies.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration.Content; export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 { @@ -28373,6 +28373,8 @@ export interface Response$replaceFlowcontrolApiserverV1beta3PriorityLevelConfigu "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1beta3$PriorityLevelConfiguration; } export interface Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus { + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28383,8 +28385,6 @@ export interface Parameter$patchFlowcontrolApiserverV1beta3PriorityLevelConfigur fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PriorityLevelConfiguration */ - name: string; } export type RequestBody$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus$Status$200 { @@ -28477,6 +28477,8 @@ export interface Parameter$watchFlowcontrolApiserverV1beta3FlowSchema { * 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?: Parameters.limit$1NfNmdNH; + /** name of the FlowSchema */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -28511,8 +28513,6 @@ export interface Parameter$watchFlowcontrolApiserverV1beta3FlowSchema { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the FlowSchema */ - name: string; } export interface Response$watchFlowcontrolApiserverV1beta3FlowSchema$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28601,6 +28601,8 @@ export interface Parameter$watchFlowcontrolApiserverV1beta3PriorityLevelConfigur * 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?: Parameters.limit$1NfNmdNH; + /** name of the PriorityLevelConfiguration */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -28635,8 +28637,6 @@ export interface Parameter$watchFlowcontrolApiserverV1beta3PriorityLevelConfigur timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PriorityLevelConfiguration */ - name: string; } export interface Response$watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -28807,10 +28807,10 @@ export interface Response$deleteInternalApiserverV1alpha1CollectionStorageVersio "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readInternalApiserverV1alpha1StorageVersion { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the StorageVersion */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readInternalApiserverV1alpha1StorageVersion$Status$200 { "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; @@ -28818,6 +28818,8 @@ export interface Response$readInternalApiserverV1alpha1StorageVersion$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; } export interface Parameter$replaceInternalApiserverV1alpha1StorageVersion { + /** name of the StorageVersion */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28826,8 +28828,6 @@ export interface Parameter$replaceInternalApiserverV1alpha1StorageVersion { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the StorageVersion */ - name: string; } export type RequestBody$replaceInternalApiserverV1alpha1StorageVersion = RequestBodies.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion.Content; export interface Response$replaceInternalApiserverV1alpha1StorageVersion$Status$200 { @@ -28841,6 +28841,8 @@ export interface Response$replaceInternalApiserverV1alpha1StorageVersion$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; } export interface Parameter$deleteInternalApiserverV1alpha1StorageVersion { + /** name of the StorageVersion */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28851,8 +28853,6 @@ export interface Parameter$deleteInternalApiserverV1alpha1StorageVersion { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the StorageVersion */ - name: string; } export type RequestBody$deleteInternalApiserverV1alpha1StorageVersion = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteInternalApiserverV1alpha1StorageVersion$Status$200 { @@ -28866,6 +28866,8 @@ export interface Response$deleteInternalApiserverV1alpha1StorageVersion$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchInternalApiserverV1alpha1StorageVersion { + /** name of the StorageVersion */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28876,8 +28878,6 @@ export interface Parameter$patchInternalApiserverV1alpha1StorageVersion { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the StorageVersion */ - name: string; } export type RequestBody$patchInternalApiserverV1alpha1StorageVersion = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchInternalApiserverV1alpha1StorageVersion$Status$200 { @@ -28891,10 +28891,10 @@ export interface Response$patchInternalApiserverV1alpha1StorageVersion$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; } export interface Parameter$readInternalApiserverV1alpha1StorageVersionStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the StorageVersion */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readInternalApiserverV1alpha1StorageVersionStatus$Status$200 { "application/json": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; @@ -28902,6 +28902,8 @@ export interface Response$readInternalApiserverV1alpha1StorageVersionStatus$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; } export interface Parameter$replaceInternalApiserverV1alpha1StorageVersionStatus { + /** name of the StorageVersion */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28910,8 +28912,6 @@ export interface Parameter$replaceInternalApiserverV1alpha1StorageVersionStatus fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the StorageVersion */ - name: string; } export type RequestBody$replaceInternalApiserverV1alpha1StorageVersionStatus = RequestBodies.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion.Content; export interface Response$replaceInternalApiserverV1alpha1StorageVersionStatus$Status$200 { @@ -28925,6 +28925,8 @@ export interface Response$replaceInternalApiserverV1alpha1StorageVersionStatus$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$apiserverinternal$v1alpha1$StorageVersion; } export interface Parameter$patchInternalApiserverV1alpha1StorageVersionStatus { + /** name of the StorageVersion */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -28935,8 +28937,6 @@ export interface Parameter$patchInternalApiserverV1alpha1StorageVersionStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the StorageVersion */ - name: string; } export type RequestBody$patchInternalApiserverV1alpha1StorageVersionStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchInternalApiserverV1alpha1StorageVersionStatus$Status$200 { @@ -29002,69 +29002,69 @@ export interface Parameter$watchInternalApiserverV1alpha1StorageVersionList { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; -} -export interface Response$watchInternalApiserverV1alpha1StorageVersionList$Status$200 { - "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; - "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; - "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; - "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; - "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; -} -export interface Parameter$watchInternalApiserverV1alpha1StorageVersion { - /** 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. */ - allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; - /** - * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". - * - * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. - */ - continue?: Parameters.continue$QfD61s0i; - /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ - fieldSelector?: Parameters.fieldSelector$xIcQKXFG; - /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ - labelSelector?: Parameters.labelSelector$5Zw57w4C; - /** - * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. - * - * 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?: Parameters.limit$1NfNmdNH; - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; - /** - * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. - * - * Defaults to unset - */ - resourceVersion?: Parameters.resourceVersion$5WAnf1kx; - /** - * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. - * - * Defaults to unset - */ - resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; - /** - * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. - * - * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan - * is interpreted as "data at least as new as the provided `resourceVersion`" - * and the bookmark event is send when the state is synced - * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. - * If `resourceVersion` is unset, this is interpreted as "consistent read" and the - * bookmark event is send when the state is synced at least to the moment - * when request started being processed. - * - `resourceVersionMatch` set to any other value or unset - * Invalid error is returned. - * - * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. - */ - sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; - /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ - timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; - /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ - watch?: Parameters.watch$XNNPZGbK; +} +export interface Response$watchInternalApiserverV1alpha1StorageVersionList$Status$200 { + "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/yaml": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/json;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; + "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; +} +export interface Parameter$watchInternalApiserverV1alpha1StorageVersion { + /** 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. */ + allowWatchBookmarks?: Parameters.allowWatchBookmarks$HC2hJt$J; + /** + * The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". + * + * This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications. + */ + continue?: Parameters.continue$QfD61s0i; + /** A selector to restrict the list of returned objects by their fields. Defaults to everything. */ + fieldSelector?: Parameters.fieldSelector$xIcQKXFG; + /** A selector to restrict the list of returned objects by their labels. Defaults to everything. */ + labelSelector?: Parameters.labelSelector$5Zw57w4C; + /** + * limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. + * + * 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?: Parameters.limit$1NfNmdNH; /** name of the StorageVersion */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; + /** + * resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersion?: Parameters.resourceVersion$5WAnf1kx; + /** + * resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. + * + * Defaults to unset + */ + resourceVersionMatch?: Parameters.resourceVersionMatch$t8XhRHeC; + /** + * `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. + * + * When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan + * is interpreted as "data at least as new as the provided `resourceVersion`" + * and the bookmark event is send when the state is synced + * to a `resourceVersion` at least as fresh as the one provided by the ListOptions. + * If `resourceVersion` is unset, this is interpreted as "consistent read" and the + * bookmark event is send when the state is synced at least to the moment + * when request started being processed. + * - `resourceVersionMatch` set to any other value or unset + * Invalid error is returned. + * + * Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise. + */ + sendInitialEvents?: Parameters.sendInitialEvents$rLXlEK_k; + /** Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. */ + timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; + /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ + watch?: Parameters.watch$XNNPZGbK; } export interface Response$watchInternalApiserverV1alpha1StorageVersion$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -29235,10 +29235,10 @@ export interface Response$deleteNetworkingV1CollectionIngressClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1IngressClass { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the IngressClass */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readNetworkingV1IngressClass$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$IngressClass; @@ -29246,6 +29246,8 @@ export interface Response$readNetworkingV1IngressClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; } export interface Parameter$replaceNetworkingV1IngressClass { + /** name of the IngressClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -29254,8 +29256,6 @@ export interface Parameter$replaceNetworkingV1IngressClass { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the IngressClass */ - name: string; } export type RequestBody$replaceNetworkingV1IngressClass = RequestBodies.io$k8s$api$networking$v1$IngressClass.Content; export interface Response$replaceNetworkingV1IngressClass$Status$200 { @@ -29269,6 +29269,8 @@ export interface Response$replaceNetworkingV1IngressClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$IngressClass; } export interface Parameter$deleteNetworkingV1IngressClass { + /** name of the IngressClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -29279,8 +29281,6 @@ export interface Parameter$deleteNetworkingV1IngressClass { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the IngressClass */ - name: string; } export type RequestBody$deleteNetworkingV1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1IngressClass$Status$200 { @@ -29294,6 +29294,8 @@ export interface Response$deleteNetworkingV1IngressClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1IngressClass { + /** name of the IngressClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -29304,8 +29306,6 @@ export interface Parameter$patchNetworkingV1IngressClass { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the IngressClass */ - name: string; } export type RequestBody$patchNetworkingV1IngressClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1IngressClass$Status$200 { @@ -29537,12 +29537,12 @@ export interface Response$deleteNetworkingV1CollectionNamespacedIngress$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1NamespacedIngress { + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Ingress */ - name: string; } export interface Response$readNetworkingV1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$Ingress; @@ -29550,6 +29550,8 @@ export interface Response$readNetworkingV1NamespacedIngress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; } export interface Parameter$replaceNetworkingV1NamespacedIngress { + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29560,8 +29562,6 @@ export interface Parameter$replaceNetworkingV1NamespacedIngress { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Ingress */ - name: string; } export type RequestBody$replaceNetworkingV1NamespacedIngress = RequestBodies.io$k8s$api$networking$v1$Ingress.Content; export interface Response$replaceNetworkingV1NamespacedIngress$Status$200 { @@ -29575,6 +29575,8 @@ export interface Response$replaceNetworkingV1NamespacedIngress$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; } export interface Parameter$deleteNetworkingV1NamespacedIngress { + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29587,8 +29589,6 @@ export interface Parameter$deleteNetworkingV1NamespacedIngress { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Ingress */ - name: string; } export type RequestBody$deleteNetworkingV1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1NamespacedIngress$Status$200 { @@ -29602,6 +29602,8 @@ export interface Response$deleteNetworkingV1NamespacedIngress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1NamespacedIngress { + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29614,8 +29616,6 @@ export interface Parameter$patchNetworkingV1NamespacedIngress { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Ingress */ - name: string; } export type RequestBody$patchNetworkingV1NamespacedIngress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1NamespacedIngress$Status$200 { @@ -29629,12 +29629,12 @@ export interface Response$patchNetworkingV1NamespacedIngress$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; } export interface Parameter$readNetworkingV1NamespacedIngressStatus { + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Ingress */ - name: string; } export interface Response$readNetworkingV1NamespacedIngressStatus$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$Ingress; @@ -29642,6 +29642,8 @@ export interface Response$readNetworkingV1NamespacedIngressStatus$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; } export interface Parameter$replaceNetworkingV1NamespacedIngressStatus { + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29652,8 +29654,6 @@ export interface Parameter$replaceNetworkingV1NamespacedIngressStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Ingress */ - name: string; } export type RequestBody$replaceNetworkingV1NamespacedIngressStatus = RequestBodies.io$k8s$api$networking$v1$Ingress.Content; export interface Response$replaceNetworkingV1NamespacedIngressStatus$Status$200 { @@ -29667,6 +29667,8 @@ export interface Response$replaceNetworkingV1NamespacedIngressStatus$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1$Ingress; } export interface Parameter$patchNetworkingV1NamespacedIngressStatus { + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29679,8 +29681,6 @@ export interface Parameter$patchNetworkingV1NamespacedIngressStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Ingress */ - name: string; } export type RequestBody$patchNetworkingV1NamespacedIngressStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1NamespacedIngressStatus$Status$200 { @@ -29851,12 +29851,12 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the NetworkPolicy */ - name: string; } export interface Response$readNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1$NetworkPolicy; @@ -29864,6 +29864,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29874,8 +29876,6 @@ export interface Parameter$replaceNetworkingV1NamespacedNetworkPolicy { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the NetworkPolicy */ - name: string; } export type RequestBody$replaceNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$api$networking$v1$NetworkPolicy.Content; export interface Response$replaceNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -29889,6 +29889,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29901,8 +29903,6 @@ export interface Parameter$deleteNetworkingV1NamespacedNetworkPolicy { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the NetworkPolicy */ - name: string; } export type RequestBody$deleteNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -29916,6 +29916,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -29928,8 +29930,6 @@ export interface Parameter$patchNetworkingV1NamespacedNetworkPolicy { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the NetworkPolicy */ - name: string; } export type RequestBody$patchNetworkingV1NamespacedNetworkPolicy = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1NamespacedNetworkPolicy$Status$200 { @@ -30083,6 +30083,8 @@ export interface Parameter$watchNetworkingV1IngressClass { * 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?: Parameters.limit$1NfNmdNH; + /** name of the IngressClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -30117,8 +30119,6 @@ export interface Parameter$watchNetworkingV1IngressClass { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the IngressClass */ - name: string; } export interface Response$watchNetworkingV1IngressClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30270,6 +30270,8 @@ export interface Parameter$watchNetworkingV1NamespacedIngress { * 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?: Parameters.limit$1NfNmdNH; + /** name of the Ingress */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -30306,8 +30308,6 @@ export interface Parameter$watchNetworkingV1NamespacedIngress { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Ingress */ - name: string; } export interface Response$watchNetworkingV1NamespacedIngress$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30398,6 +30398,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the NetworkPolicy */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -30434,8 +30436,6 @@ export interface Parameter$watchNetworkingV1NamespacedNetworkPolicy { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the NetworkPolicy */ - name: string; } export interface Response$watchNetworkingV1NamespacedNetworkPolicy$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -30662,10 +30662,10 @@ export interface Response$deleteNetworkingV1alpha1CollectionClusterCIDR$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1alpha1ClusterCIDR { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ClusterCIDR */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readNetworkingV1alpha1ClusterCIDR$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; @@ -30673,6 +30673,8 @@ export interface Response$readNetworkingV1alpha1ClusterCIDR$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; } export interface Parameter$replaceNetworkingV1alpha1ClusterCIDR { + /** name of the ClusterCIDR */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -30681,8 +30683,6 @@ export interface Parameter$replaceNetworkingV1alpha1ClusterCIDR { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ClusterCIDR */ - name: string; } export type RequestBody$replaceNetworkingV1alpha1ClusterCIDR = RequestBodies.io$k8s$api$networking$v1alpha1$ClusterCIDR.Content; export interface Response$replaceNetworkingV1alpha1ClusterCIDR$Status$200 { @@ -30696,6 +30696,8 @@ export interface Response$replaceNetworkingV1alpha1ClusterCIDR$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$ClusterCIDR; } export interface Parameter$deleteNetworkingV1alpha1ClusterCIDR { + /** name of the ClusterCIDR */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -30706,8 +30708,6 @@ export interface Parameter$deleteNetworkingV1alpha1ClusterCIDR { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ClusterCIDR */ - name: string; } export type RequestBody$deleteNetworkingV1alpha1ClusterCIDR = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1alpha1ClusterCIDR$Status$200 { @@ -30721,6 +30721,8 @@ export interface Response$deleteNetworkingV1alpha1ClusterCIDR$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1alpha1ClusterCIDR { + /** name of the ClusterCIDR */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -30731,8 +30733,6 @@ export interface Parameter$patchNetworkingV1alpha1ClusterCIDR { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ClusterCIDR */ - name: string; } export type RequestBody$patchNetworkingV1alpha1ClusterCIDR = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1alpha1ClusterCIDR$Status$200 { @@ -30897,10 +30897,10 @@ export interface Response$deleteNetworkingV1alpha1CollectionIPAddress$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNetworkingV1alpha1IPAddress { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the IPAddress */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readNetworkingV1alpha1IPAddress$Status$200 { "application/json": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; @@ -30908,6 +30908,8 @@ export interface Response$readNetworkingV1alpha1IPAddress$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; } export interface Parameter$replaceNetworkingV1alpha1IPAddress { + /** name of the IPAddress */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -30916,8 +30918,6 @@ export interface Parameter$replaceNetworkingV1alpha1IPAddress { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the IPAddress */ - name: string; } export type RequestBody$replaceNetworkingV1alpha1IPAddress = RequestBodies.io$k8s$api$networking$v1alpha1$IPAddress.Content; export interface Response$replaceNetworkingV1alpha1IPAddress$Status$200 { @@ -30931,6 +30931,8 @@ export interface Response$replaceNetworkingV1alpha1IPAddress$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$networking$v1alpha1$IPAddress; } export interface Parameter$deleteNetworkingV1alpha1IPAddress { + /** name of the IPAddress */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -30941,8 +30943,6 @@ export interface Parameter$deleteNetworkingV1alpha1IPAddress { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the IPAddress */ - name: string; } export type RequestBody$deleteNetworkingV1alpha1IPAddress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNetworkingV1alpha1IPAddress$Status$200 { @@ -30956,6 +30956,8 @@ export interface Response$deleteNetworkingV1alpha1IPAddress$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNetworkingV1alpha1IPAddress { + /** name of the IPAddress */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -30966,8 +30968,6 @@ export interface Parameter$patchNetworkingV1alpha1IPAddress { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the IPAddress */ - name: string; } export type RequestBody$patchNetworkingV1alpha1IPAddress = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNetworkingV1alpha1IPAddress$Status$200 { @@ -31060,6 +31060,8 @@ export interface Parameter$watchNetworkingV1alpha1ClusterCIDR { * 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?: Parameters.limit$1NfNmdNH; + /** name of the ClusterCIDR */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -31094,8 +31096,6 @@ export interface Parameter$watchNetworkingV1alpha1ClusterCIDR { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ClusterCIDR */ - name: string; } export interface Response$watchNetworkingV1alpha1ClusterCIDR$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31184,6 +31184,8 @@ export interface Parameter$watchNetworkingV1alpha1IPAddress { * 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?: Parameters.limit$1NfNmdNH; + /** name of the IPAddress */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -31218,8 +31220,6 @@ export interface Parameter$watchNetworkingV1alpha1IPAddress { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the IPAddress */ - name: string; } export interface Response$watchNetworkingV1alpha1IPAddress$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31390,10 +31390,10 @@ export interface Response$deleteNodeV1CollectionRuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readNodeV1RuntimeClass { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the RuntimeClass */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readNodeV1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$api$node$v1$RuntimeClass; @@ -31401,6 +31401,8 @@ export interface Response$readNodeV1RuntimeClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; } export interface Parameter$replaceNodeV1RuntimeClass { + /** name of the RuntimeClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -31409,8 +31411,6 @@ export interface Parameter$replaceNodeV1RuntimeClass { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the RuntimeClass */ - name: string; } export type RequestBody$replaceNodeV1RuntimeClass = RequestBodies.io$k8s$api$node$v1$RuntimeClass.Content; export interface Response$replaceNodeV1RuntimeClass$Status$200 { @@ -31424,6 +31424,8 @@ export interface Response$replaceNodeV1RuntimeClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$node$v1$RuntimeClass; } export interface Parameter$deleteNodeV1RuntimeClass { + /** name of the RuntimeClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -31434,8 +31436,6 @@ export interface Parameter$deleteNodeV1RuntimeClass { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the RuntimeClass */ - name: string; } export type RequestBody$deleteNodeV1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteNodeV1RuntimeClass$Status$200 { @@ -31449,6 +31449,8 @@ export interface Response$deleteNodeV1RuntimeClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchNodeV1RuntimeClass { + /** name of the RuntimeClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -31459,8 +31461,6 @@ export interface Parameter$patchNodeV1RuntimeClass { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the RuntimeClass */ - name: string; } export type RequestBody$patchNodeV1RuntimeClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchNodeV1RuntimeClass$Status$200 { @@ -31553,6 +31553,8 @@ export interface Parameter$watchNodeV1RuntimeClass { * 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?: Parameters.limit$1NfNmdNH; + /** name of the RuntimeClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -31587,8 +31589,6 @@ export interface Parameter$watchNodeV1RuntimeClass { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the RuntimeClass */ - name: string; } export interface Response$watchNodeV1RuntimeClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -31765,12 +31765,12 @@ export interface Response$deletePolicyV1CollectionNamespacedPodDisruptionBudget$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readPolicyV1NamespacedPodDisruptionBudget { + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the PodDisruptionBudget */ - name: string; } export interface Response$readPolicyV1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; @@ -31778,6 +31778,8 @@ export interface Response$readPolicyV1NamespacedPodDisruptionBudget$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; } export interface Parameter$replacePolicyV1NamespacedPodDisruptionBudget { + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -31788,8 +31790,6 @@ export interface Parameter$replacePolicyV1NamespacedPodDisruptionBudget { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PodDisruptionBudget */ - name: string; } export type RequestBody$replacePolicyV1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$api$policy$v1$PodDisruptionBudget.Content; export interface Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$200 { @@ -31803,6 +31803,8 @@ export interface Response$replacePolicyV1NamespacedPodDisruptionBudget$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; } export interface Parameter$deletePolicyV1NamespacedPodDisruptionBudget { + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -31815,8 +31817,6 @@ export interface Parameter$deletePolicyV1NamespacedPodDisruptionBudget { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the PodDisruptionBudget */ - name: string; } export type RequestBody$deletePolicyV1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$200 { @@ -31830,6 +31830,8 @@ export interface Response$deletePolicyV1NamespacedPodDisruptionBudget$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchPolicyV1NamespacedPodDisruptionBudget { + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -31842,8 +31844,6 @@ export interface Parameter$patchPolicyV1NamespacedPodDisruptionBudget { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PodDisruptionBudget */ - name: string; } export type RequestBody$patchPolicyV1NamespacedPodDisruptionBudget = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$200 { @@ -31857,12 +31857,12 @@ export interface Response$patchPolicyV1NamespacedPodDisruptionBudget$Status$201 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; } export interface Parameter$readPolicyV1NamespacedPodDisruptionBudgetStatus { + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the PodDisruptionBudget */ - name: string; } export interface Response$readPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 { "application/json": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; @@ -31870,6 +31870,8 @@ export interface Response$readPolicyV1NamespacedPodDisruptionBudgetStatus$Status "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; } export interface Parameter$replacePolicyV1NamespacedPodDisruptionBudgetStatus { + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -31880,8 +31882,6 @@ export interface Parameter$replacePolicyV1NamespacedPodDisruptionBudgetStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PodDisruptionBudget */ - name: string; } export type RequestBody$replacePolicyV1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$api$policy$v1$PodDisruptionBudget.Content; export interface Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 { @@ -31895,6 +31895,8 @@ export interface Response$replacePolicyV1NamespacedPodDisruptionBudgetStatus$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$policy$v1$PodDisruptionBudget; } export interface Parameter$patchPolicyV1NamespacedPodDisruptionBudgetStatus { + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -31907,8 +31909,6 @@ export interface Parameter$patchPolicyV1NamespacedPodDisruptionBudgetStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PodDisruptionBudget */ - name: string; } export type RequestBody$patchPolicyV1NamespacedPodDisruptionBudgetStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchPolicyV1NamespacedPodDisruptionBudgetStatus$Status$200 { @@ -32064,6 +32064,8 @@ export interface Parameter$watchPolicyV1NamespacedPodDisruptionBudget { * 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?: Parameters.limit$1NfNmdNH; + /** name of the PodDisruptionBudget */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -32100,8 +32102,6 @@ export interface Parameter$watchPolicyV1NamespacedPodDisruptionBudget { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PodDisruptionBudget */ - name: string; } export interface Response$watchPolicyV1NamespacedPodDisruptionBudget$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -32333,10 +32333,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRoleBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ClusterRoleBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; @@ -32344,6 +32344,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -32352,8 +32354,6 @@ export interface Parameter$replaceRbacAuthorizationV1ClusterRoleBinding { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -32367,6 +32367,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -32377,8 +32379,6 @@ export interface Parameter$deleteRbacAuthorizationV1ClusterRoleBinding { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -32392,6 +32392,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -32402,8 +32404,6 @@ export interface Parameter$patchRbacAuthorizationV1ClusterRoleBinding { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -32568,10 +32568,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRole { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ClusterRole */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; @@ -32579,6 +32579,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -32587,8 +32589,6 @@ export interface Parameter$replaceRbacAuthorizationV1ClusterRole { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -32602,6 +32602,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -32612,8 +32614,6 @@ export interface Parameter$deleteRbacAuthorizationV1ClusterRole { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -32627,6 +32627,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -32637,8 +32639,6 @@ export interface Parameter$patchRbacAuthorizationV1ClusterRole { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -32809,12 +32809,12 @@ export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRoleBindi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1NamespacedRoleBinding { + /** name of the RoleBinding */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the RoleBinding */ - name: string; } export interface Response$readRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$RoleBinding; @@ -32822,6 +32822,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -32832,8 +32834,6 @@ export interface Parameter$replaceRbacAuthorizationV1NamespacedRoleBinding { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the RoleBinding */ - name: string; } export type RequestBody$replaceRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$api$rbac$v1$RoleBinding.Content; export interface Response$replaceRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -32847,6 +32847,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -32859,8 +32861,6 @@ export interface Parameter$deleteRbacAuthorizationV1NamespacedRoleBinding { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the RoleBinding */ - name: string; } export type RequestBody$deleteRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -32874,6 +32874,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -32886,8 +32888,6 @@ export interface Parameter$patchRbacAuthorizationV1NamespacedRoleBinding { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the RoleBinding */ - name: string; } export type RequestBody$patchRbacAuthorizationV1NamespacedRoleBinding = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { @@ -33058,12 +33058,12 @@ export interface Response$deleteRbacAuthorizationV1CollectionNamespacedRole$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1NamespacedRole { + /** name of the Role */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the Role */ - name: string; } export interface Response$readRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$Role; @@ -33071,6 +33071,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -33081,8 +33083,6 @@ export interface Parameter$replaceRbacAuthorizationV1NamespacedRole { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the Role */ - name: string; } export type RequestBody$replaceRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$api$rbac$v1$Role.Content; export interface Response$replaceRbacAuthorizationV1NamespacedRole$Status$200 { @@ -33096,6 +33096,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -33108,8 +33110,6 @@ export interface Parameter$deleteRbacAuthorizationV1NamespacedRole { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the Role */ - name: string; } export type RequestBody$deleteRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteRbacAuthorizationV1NamespacedRole$Status$200 { @@ -33123,6 +33123,8 @@ 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: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -33135,8 +33137,6 @@ export interface Parameter$patchRbacAuthorizationV1NamespacedRole { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the Role */ - name: string; } export type RequestBody$patchRbacAuthorizationV1NamespacedRole = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchRbacAuthorizationV1NamespacedRole$Status$200 { @@ -33351,6 +33351,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ClusterRoleBinding */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -33385,8 +33387,6 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRoleBinding { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ClusterRoleBinding */ - name: string; } export interface Response$watchRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -33475,6 +33475,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the ClusterRole */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -33509,8 +33511,6 @@ export interface Parameter$watchRbacAuthorizationV1ClusterRole { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ClusterRole */ - name: string; } export interface Response$watchRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -33601,6 +33601,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the RoleBinding */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -33637,8 +33639,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRoleBinding { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the RoleBinding */ - name: string; } export interface Response$watchRbacAuthorizationV1NamespacedRoleBinding$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -33729,6 +33729,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the Role */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -33765,8 +33767,6 @@ export interface Parameter$watchRbacAuthorizationV1NamespacedRole { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the Role */ - name: string; } export interface Response$watchRbacAuthorizationV1NamespacedRole$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -34065,12 +34065,12 @@ export interface Response$deleteResourceV1alpha2CollectionNamespacedPodSchedulin "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readResourceV1alpha2NamespacedPodSchedulingContext { + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the PodSchedulingContext */ - name: string; } export interface Response$readResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; @@ -34078,6 +34078,8 @@ export interface Response$readResourceV1alpha2NamespacedPodSchedulingContext$Sta "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; } export interface Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContext { + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34088,8 +34090,6 @@ export interface Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContext fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PodSchedulingContext */ - name: string; } export type RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContext = RequestBodies.io$k8s$api$resource$v1alpha2$PodSchedulingContext.Content; export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { @@ -34103,6 +34103,8 @@ export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContext$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; } export interface Parameter$deleteResourceV1alpha2NamespacedPodSchedulingContext { + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34115,8 +34117,6 @@ export interface Parameter$deleteResourceV1alpha2NamespacedPodSchedulingContext orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the PodSchedulingContext */ - name: string; } export type RequestBody$deleteResourceV1alpha2NamespacedPodSchedulingContext = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { @@ -34130,6 +34130,8 @@ export interface Response$deleteResourceV1alpha2NamespacedPodSchedulingContext$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; } export interface Parameter$patchResourceV1alpha2NamespacedPodSchedulingContext { + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34142,8 +34144,6 @@ export interface Parameter$patchResourceV1alpha2NamespacedPodSchedulingContext { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PodSchedulingContext */ - name: string; } export type RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContext = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { @@ -34157,12 +34157,12 @@ export interface Response$patchResourceV1alpha2NamespacedPodSchedulingContext$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; } export interface Parameter$readResourceV1alpha2NamespacedPodSchedulingContextStatus { + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the PodSchedulingContext */ - name: string; } export interface Response$readResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 { "application/json": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; @@ -34170,6 +34170,8 @@ export interface Response$readResourceV1alpha2NamespacedPodSchedulingContextStat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; } export interface Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus { + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34180,8 +34182,6 @@ export interface Parameter$replaceResourceV1alpha2NamespacedPodSchedulingContext fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the PodSchedulingContext */ - name: string; } export type RequestBody$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus = RequestBodies.io$k8s$api$resource$v1alpha2$PodSchedulingContext.Content; export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 { @@ -34195,6 +34195,8 @@ export interface Response$replaceResourceV1alpha2NamespacedPodSchedulingContextS "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$PodSchedulingContext; } export interface Parameter$patchResourceV1alpha2NamespacedPodSchedulingContextStatus { + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34207,8 +34209,6 @@ export interface Parameter$patchResourceV1alpha2NamespacedPodSchedulingContextSt fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the PodSchedulingContext */ - name: string; } export type RequestBody$patchResourceV1alpha2NamespacedPodSchedulingContextStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchResourceV1alpha2NamespacedPodSchedulingContextStatus$Status$200 { @@ -34379,12 +34379,12 @@ export interface Response$deleteResourceV1alpha2CollectionNamespacedResourceClai "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readResourceV1alpha2NamespacedResourceClaim { + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ResourceClaim */ - name: string; } export interface Response$readResourceV1alpha2NamespacedResourceClaim$Status$200 { "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; @@ -34392,6 +34392,8 @@ export interface Response$readResourceV1alpha2NamespacedResourceClaim$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; } export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaim { + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34402,8 +34404,6 @@ export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaim { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ResourceClaim */ - name: string; } export type RequestBody$replaceResourceV1alpha2NamespacedResourceClaim = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaim.Content; export interface Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$200 { @@ -34417,6 +34417,8 @@ export interface Response$replaceResourceV1alpha2NamespacedResourceClaim$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; } export interface Parameter$deleteResourceV1alpha2NamespacedResourceClaim { + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34429,8 +34431,6 @@ export interface Parameter$deleteResourceV1alpha2NamespacedResourceClaim { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ResourceClaim */ - name: string; } export type RequestBody$deleteResourceV1alpha2NamespacedResourceClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$200 { @@ -34444,6 +34444,8 @@ export interface Response$deleteResourceV1alpha2NamespacedResourceClaim$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; } export interface Parameter$patchResourceV1alpha2NamespacedResourceClaim { + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34456,8 +34458,6 @@ export interface Parameter$patchResourceV1alpha2NamespacedResourceClaim { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ResourceClaim */ - name: string; } export type RequestBody$patchResourceV1alpha2NamespacedResourceClaim = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchResourceV1alpha2NamespacedResourceClaim$Status$200 { @@ -34471,12 +34471,12 @@ export interface Response$patchResourceV1alpha2NamespacedResourceClaim$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; } export interface Parameter$readResourceV1alpha2NamespacedResourceClaimStatus { + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ResourceClaim */ - name: string; } export interface Response$readResourceV1alpha2NamespacedResourceClaimStatus$Status$200 { "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; @@ -34484,6 +34484,8 @@ export interface Response$readResourceV1alpha2NamespacedResourceClaimStatus$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; } export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaimStatus { + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34494,8 +34496,6 @@ export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaimStatus fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ResourceClaim */ - name: string; } export type RequestBody$replaceResourceV1alpha2NamespacedResourceClaimStatus = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaim.Content; export interface Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$Status$200 { @@ -34509,6 +34509,8 @@ export interface Response$replaceResourceV1alpha2NamespacedResourceClaimStatus$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaim; } export interface Parameter$patchResourceV1alpha2NamespacedResourceClaimStatus { + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34521,8 +34523,6 @@ export interface Parameter$patchResourceV1alpha2NamespacedResourceClaimStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ResourceClaim */ - name: string; } export type RequestBody$patchResourceV1alpha2NamespacedResourceClaimStatus = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchResourceV1alpha2NamespacedResourceClaimStatus$Status$200 { @@ -34693,12 +34693,12 @@ export interface Response$deleteResourceV1alpha2CollectionNamespacedResourceClai "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readResourceV1alpha2NamespacedResourceClaimTemplate { + /** name of the ResourceClaimTemplate */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the ResourceClaimTemplate */ - name: string; } export interface Response$readResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; @@ -34706,6 +34706,8 @@ export interface Response$readResourceV1alpha2NamespacedResourceClaimTemplate$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; } export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaimTemplate { + /** name of the ResourceClaimTemplate */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34716,8 +34718,6 @@ export interface Parameter$replaceResourceV1alpha2NamespacedResourceClaimTemplat fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ResourceClaimTemplate */ - name: string; } export type RequestBody$replaceResourceV1alpha2NamespacedResourceClaimTemplate = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate.Content; export interface Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { @@ -34731,6 +34731,8 @@ export interface Response$replaceResourceV1alpha2NamespacedResourceClaimTemplate "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; } export interface Parameter$deleteResourceV1alpha2NamespacedResourceClaimTemplate { + /** name of the ResourceClaimTemplate */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34743,8 +34745,6 @@ export interface Parameter$deleteResourceV1alpha2NamespacedResourceClaimTemplate orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ResourceClaimTemplate */ - name: string; } export type RequestBody$deleteResourceV1alpha2NamespacedResourceClaimTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { @@ -34758,6 +34758,8 @@ export interface Response$deleteResourceV1alpha2NamespacedResourceClaimTemplate$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClaimTemplate; } export interface Parameter$patchResourceV1alpha2NamespacedResourceClaimTemplate { + /** name of the ResourceClaimTemplate */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -34770,8 +34772,6 @@ export interface Parameter$patchResourceV1alpha2NamespacedResourceClaimTemplate fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ResourceClaimTemplate */ - name: string; } export type RequestBody$patchResourceV1alpha2NamespacedResourceClaimTemplate = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { @@ -35119,10 +35119,10 @@ export interface Response$deleteResourceV1alpha2CollectionResourceClass$Status$2 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readResourceV1alpha2ResourceClass { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the ResourceClass */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readResourceV1alpha2ResourceClass$Status$200 { "application/json": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; @@ -35130,6 +35130,8 @@ export interface Response$readResourceV1alpha2ResourceClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; } export interface Parameter$replaceResourceV1alpha2ResourceClass { + /** name of the ResourceClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -35138,8 +35140,6 @@ export interface Parameter$replaceResourceV1alpha2ResourceClass { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the ResourceClass */ - name: string; } export type RequestBody$replaceResourceV1alpha2ResourceClass = RequestBodies.io$k8s$api$resource$v1alpha2$ResourceClass.Content; export interface Response$replaceResourceV1alpha2ResourceClass$Status$200 { @@ -35153,6 +35153,8 @@ export interface Response$replaceResourceV1alpha2ResourceClass$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; } export interface Parameter$deleteResourceV1alpha2ResourceClass { + /** name of the ResourceClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -35163,8 +35165,6 @@ export interface Parameter$deleteResourceV1alpha2ResourceClass { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the ResourceClass */ - name: string; } export type RequestBody$deleteResourceV1alpha2ResourceClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteResourceV1alpha2ResourceClass$Status$200 { @@ -35178,6 +35178,8 @@ export interface Response$deleteResourceV1alpha2ResourceClass$Status$202 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$resource$v1alpha2$ResourceClass; } export interface Parameter$patchResourceV1alpha2ResourceClass { + /** name of the ResourceClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -35188,8 +35190,6 @@ export interface Parameter$patchResourceV1alpha2ResourceClass { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the ResourceClass */ - name: string; } export type RequestBody$patchResourceV1alpha2ResourceClass = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchResourceV1alpha2ResourceClass$Status$200 { @@ -35284,6 +35284,8 @@ export interface Parameter$watchResourceV1alpha2NamespacedPodSchedulingContext { * 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?: Parameters.limit$1NfNmdNH; + /** name of the PodSchedulingContext */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -35320,8 +35322,6 @@ export interface Parameter$watchResourceV1alpha2NamespacedPodSchedulingContext { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PodSchedulingContext */ - name: string; } export interface Response$watchResourceV1alpha2NamespacedPodSchedulingContext$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -35412,6 +35412,8 @@ export interface Parameter$watchResourceV1alpha2NamespacedResourceClaim { * 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?: Parameters.limit$1NfNmdNH; + /** name of the ResourceClaim */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -35448,8 +35450,6 @@ export interface Parameter$watchResourceV1alpha2NamespacedResourceClaim { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ResourceClaim */ - name: string; } export interface Response$watchResourceV1alpha2NamespacedResourceClaim$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -35540,6 +35540,8 @@ export interface Parameter$watchResourceV1alpha2NamespacedResourceClaimTemplate * 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?: Parameters.limit$1NfNmdNH; + /** name of the ResourceClaimTemplate */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -35576,8 +35578,6 @@ export interface Parameter$watchResourceV1alpha2NamespacedResourceClaimTemplate timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ResourceClaimTemplate */ - name: string; } export interface Response$watchResourceV1alpha2NamespacedResourceClaimTemplate$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -35849,6 +35849,8 @@ export interface Parameter$watchResourceV1alpha2ResourceClass { * 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?: Parameters.limit$1NfNmdNH; + /** name of the ResourceClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -35883,8 +35885,6 @@ export interface Parameter$watchResourceV1alpha2ResourceClass { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the ResourceClass */ - name: string; } export interface Response$watchResourceV1alpha2ResourceClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -36055,10 +36055,10 @@ export interface Response$deleteSchedulingV1CollectionPriorityClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readSchedulingV1PriorityClass { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the PriorityClass */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readSchedulingV1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$api$scheduling$v1$PriorityClass; @@ -36066,6 +36066,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36074,8 +36076,6 @@ export interface Parameter$replaceSchedulingV1PriorityClass { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -36089,6 +36089,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36099,8 +36101,6 @@ export interface Parameter$deleteSchedulingV1PriorityClass { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -36114,6 +36114,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36124,8 +36126,6 @@ export interface Parameter$patchSchedulingV1PriorityClass { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -36218,6 +36218,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the PriorityClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -36252,8 +36254,6 @@ export interface Parameter$watchSchedulingV1PriorityClass { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the PriorityClass */ - name: string; } export interface Response$watchSchedulingV1PriorityClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -36424,10 +36424,10 @@ export interface Response$deleteStorageV1CollectionCSIDriver$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1CSIDriver { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the CSIDriver */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readStorageV1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$CSIDriver; @@ -36435,6 +36435,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36443,8 +36445,6 @@ export interface Parameter$replaceStorageV1CSIDriver { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -36458,6 +36458,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36468,8 +36470,6 @@ export interface Parameter$deleteStorageV1CSIDriver { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -36483,6 +36483,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36493,8 +36495,6 @@ export interface Parameter$patchStorageV1CSIDriver { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -36659,10 +36659,10 @@ export interface Response$deleteStorageV1CollectionCSINode$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1CSINode { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the CSINode */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readStorageV1CSINode$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$CSINode; @@ -36670,6 +36670,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36678,8 +36680,6 @@ export interface Parameter$replaceStorageV1CSINode { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -36693,6 +36693,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36703,8 +36705,6 @@ export interface Parameter$deleteStorageV1CSINode { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -36718,6 +36718,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -36728,8 +36730,6 @@ export interface Parameter$patchStorageV1CSINode { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -36961,12 +36961,12 @@ export interface Response$deleteStorageV1CollectionNamespacedCSIStorageCapacity$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1NamespacedCSIStorageCapacity { + /** name of the CSIStorageCapacity */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; - /** name of the CSIStorageCapacity */ - name: string; } export interface Response$readStorageV1NamespacedCSIStorageCapacity$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; @@ -36974,6 +36974,8 @@ export interface Response$readStorageV1NamespacedCSIStorageCapacity$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; } export interface Parameter$replaceStorageV1NamespacedCSIStorageCapacity { + /** name of the CSIStorageCapacity */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -36984,8 +36986,6 @@ export interface Parameter$replaceStorageV1NamespacedCSIStorageCapacity { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: string; - /** name of the CSIStorageCapacity */ - name: string; } export type RequestBody$replaceStorageV1NamespacedCSIStorageCapacity = RequestBodies.io$k8s$api$storage$v1$CSIStorageCapacity.Content; export interface Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$200 { @@ -36999,6 +36999,8 @@ export interface Response$replaceStorageV1NamespacedCSIStorageCapacity$Status$20 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$CSIStorageCapacity; } export interface Parameter$deleteStorageV1NamespacedCSIStorageCapacity { + /** name of the CSIStorageCapacity */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -37011,8 +37013,6 @@ export interface Parameter$deleteStorageV1NamespacedCSIStorageCapacity { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** name of the CSIStorageCapacity */ - name: string; } export type RequestBody$deleteStorageV1NamespacedCSIStorageCapacity = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$DeleteOptions.Content; export interface Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$200 { @@ -37026,6 +37026,8 @@ export interface Response$deleteStorageV1NamespacedCSIStorageCapacity$Status$202 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$patchStorageV1NamespacedCSIStorageCapacity { + /** name of the CSIStorageCapacity */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -37038,8 +37040,6 @@ export interface Parameter$patchStorageV1NamespacedCSIStorageCapacity { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** name of the CSIStorageCapacity */ - name: string; } export type RequestBody$patchStorageV1NamespacedCSIStorageCapacity = RequestBodies.io$k8s$apimachinery$pkg$apis$meta$v1$Patch.Content; export interface Response$patchStorageV1NamespacedCSIStorageCapacity$Status$200 { @@ -37204,10 +37204,10 @@ export interface Response$deleteStorageV1CollectionStorageClass$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1StorageClass { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the StorageClass */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readStorageV1StorageClass$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$StorageClass; @@ -37215,6 +37215,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37223,8 +37225,6 @@ export interface Parameter$replaceStorageV1StorageClass { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -37238,6 +37238,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37248,8 +37250,6 @@ export interface Parameter$deleteStorageV1StorageClass { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -37263,6 +37263,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37273,8 +37275,6 @@ export interface Parameter$patchStorageV1StorageClass { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -37439,10 +37439,10 @@ export interface Response$deleteStorageV1CollectionVolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readStorageV1VolumeAttachment { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the VolumeAttachment */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readStorageV1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -37450,6 +37450,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37458,8 +37460,6 @@ export interface Parameter$replaceStorageV1VolumeAttachment { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -37473,6 +37473,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37483,8 +37485,6 @@ export interface Parameter$deleteStorageV1VolumeAttachment { orphanDependents?: Parameters.orphanDependents$uRB25kX5; /** 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?: Parameters.propagationPolicy$6jk3prlO; - /** 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 { @@ -37498,6 +37498,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37508,8 +37510,6 @@ export interface Parameter$patchStorageV1VolumeAttachment { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -37523,10 +37523,10 @@ export interface Response$patchStorageV1VolumeAttachment$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$readStorageV1VolumeAttachmentStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: Parameters.pretty$nN7o5FEq; /** name of the VolumeAttachment */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: Parameters.pretty$nN7o5FEq; } export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -37534,6 +37534,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37542,8 +37544,6 @@ export interface Parameter$replaceStorageV1VolumeAttachmentStatus { fieldManager?: Parameters.fieldManager$Qy4HdaTW; /** fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. */ fieldValidation?: 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 { @@ -37557,6 +37557,8 @@ 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?: Parameters.pretty$nN7o5FEq; /** When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed */ @@ -37567,8 +37569,6 @@ export interface Parameter$patchStorageV1VolumeAttachmentStatus { fieldValidation?: 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?: Parameters.force$tOGGb0Yi; - /** 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 { @@ -37661,6 +37661,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the CSIDriver */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -37695,8 +37697,6 @@ export interface Parameter$watchStorageV1CSIDriver { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the CSIDriver */ - name: string; } export interface Response$watchStorageV1CSIDriver$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -37785,6 +37785,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the CSINode */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -37819,8 +37821,6 @@ export interface Parameter$watchStorageV1CSINode { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the CSINode */ - name: string; } export interface Response$watchStorageV1CSINode$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -37972,6 +37972,8 @@ export interface Parameter$watchStorageV1NamespacedCSIStorageCapacity { * 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?: Parameters.limit$1NfNmdNH; + /** name of the CSIStorageCapacity */ + name: string; /** object name and auth scope, such as for teams and projects */ namespace: Parameters.namespace$vgWSWtn3; /** If 'true', then the output is pretty printed. */ @@ -38008,8 +38010,6 @@ export interface Parameter$watchStorageV1NamespacedCSIStorageCapacity { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the CSIStorageCapacity */ - name: string; } export interface Response$watchStorageV1NamespacedCSIStorageCapacity$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -38098,6 +38098,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the StorageClass */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -38132,8 +38134,6 @@ export interface Parameter$watchStorageV1StorageClass { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the StorageClass */ - name: string; } export interface Response$watchStorageV1StorageClass$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; @@ -38222,6 +38222,8 @@ 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?: Parameters.limit$1NfNmdNH; + /** name of the VolumeAttachment */ + name: string; /** If 'true', then the output is pretty printed. */ pretty?: Parameters.pretty$nN7o5FEq; /** @@ -38256,8 +38258,6 @@ export interface Parameter$watchStorageV1VolumeAttachment { timeoutSeconds?: Parameters.timeoutSeconds$yvYezaOC; /** Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. */ watch?: Parameters.watch$XNNPZGbK; - /** name of the VolumeAttachment */ - name: string; } export interface Response$watchStorageV1VolumeAttachment$Status$200 { "application/json": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$WatchEvent; diff --git a/test/__tests__/class/__snapshots__/mulit-type-test.domain/apiClient.ts b/test/__tests__/class/__snapshots__/mulit-type-test.domain/apiClient.ts index 43b370ea..088689fe 100644 --- a/test/__tests__/class/__snapshots__/mulit-type-test.domain/apiClient.ts +++ b/test/__tests__/class/__snapshots__/mulit-type-test.domain/apiClient.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.1 // diff --git a/test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts b/test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts index 8c01fd09..c09582f5 100644 --- a/test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts +++ b/test/__tests__/class/__snapshots__/mulit-type-test.domain/types.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.1 // diff --git a/test/__tests__/class/__snapshots__/parameter/path-parameter.json b/test/__tests__/class/__snapshots__/parameter/path-parameter.json index ee36a22e..887920cf 100644 --- a/test/__tests__/class/__snapshots__/parameter/path-parameter.json +++ b/test/__tests__/class/__snapshots__/parameter/path-parameter.json @@ -224,6 +224,94 @@ } } }, + { + "operationId": "getPodProxyWithPath", + "convertedParams": { + "escapedOperationId": "getPodProxyWithPath", + "argumentParamsTypeDeclaration": "Params$getPodProxyWithPath", + "functionName": "getPodProxyWithPath", + "requestContentTypeName": "RequestContentType$getPodProxyWithPath", + "responseContentTypeName": "ResponseContentType$getPodProxyWithPath", + "parameterName": "Parameter$getPodProxyWithPath", + "requestBodyName": "RequestBody$getPodProxyWithPath", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "name", + "in": "path" + }, + { + "name": "path", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getPodProxyWithPath$Status$200" + ], + "responseFirstSuccessName": "Response$getPodProxyWithPath$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/pods/{name}/proxy/{path}", + "comment": "$ref パラメータで同名の pathパラメータと queryパラメータが競合するケース", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + } + }, + { + "in": "path", + "name": "path", + "required": true, + "description": "URL パスの一部として使用されるパスパラメータ", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "path", + "description": "クエリパラメータとして使用される path(省略可能)", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, { "operationId": "getUserPost", "convertedParams": { diff --git a/test/__tests__/class/__snapshots__/split/apiClient.ts b/test/__tests__/class/__snapshots__/split/apiClient.ts index c4056f7e..d5e5a5bd 100644 --- a/test/__tests__/class/__snapshots__/split/apiClient.ts +++ b/test/__tests__/class/__snapshots__/split/apiClient.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // @@ -45,8 +45,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "from.publishedAt"?: number; "book.name": string; + "from.publishedAt"?: number; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/class/__snapshots__/split/types.ts b/test/__tests__/class/__snapshots__/split/types.ts index 517f915b..b8bde156 100644 --- a/test/__tests__/class/__snapshots__/split/types.ts +++ b/test/__tests__/class/__snapshots__/split/types.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/template-only/api.test.domain.ts b/test/__tests__/class/__snapshots__/template-only/api.test.domain.ts index 8b25965d..8106978e 100644 --- a/test/__tests__/class/__snapshots__/template-only/api.test.domain.ts +++ b/test/__tests__/class/__snapshots__/template-only/api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/template-only/infer.domain.ts b/test/__tests__/class/__snapshots__/template-only/infer.domain.ts index bdec24c2..64ecf438 100644 --- a/test/__tests__/class/__snapshots__/template-only/infer.domain.ts +++ b/test/__tests__/class/__snapshots__/template-only/infer.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts b/test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts index d89107d3..44d7ebe2 100644 --- a/test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts +++ b/test/__tests__/class/__snapshots__/template-only/sync-api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-only/api.test.domain.ts b/test/__tests__/class/__snapshots__/typedef-only/api.test.domain.ts index 517f915b..b8bde156 100644 --- a/test/__tests__/class/__snapshots__/typedef-only/api.test.domain.ts +++ b/test/__tests__/class/__snapshots__/typedef-only/api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts b/test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts index 035100ef..02f36ed2 100644 --- a/test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts +++ b/test/__tests__/class/__snapshots__/typedef-only/infer.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-only/json.properties.ts b/test/__tests__/class/__snapshots__/typedef-only/json.properties.ts index 3ff215ee..1e79e106 100644 --- a/test/__tests__/class/__snapshots__/typedef-only/json.properties.ts +++ b/test/__tests__/class/__snapshots__/typedef-only/json.properties.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/api.test.domain.ts b/test/__tests__/class/__snapshots__/typedef-with-template/api.test.domain.ts index ef52331c..38ebb7b7 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template/api.test.domain.ts +++ b/test/__tests__/class/__snapshots__/typedef-with-template/api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // @@ -331,8 +331,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "from.publishedAt"?: number; "book.name": string; + "from.publishedAt"?: number; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts b/test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts index de5ec0e6..a867bac0 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts +++ b/test/__tests__/class/__snapshots__/typedef-with-template/api.v2.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts b/test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts index 2223fda9..57515e77 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts +++ b/test/__tests__/class/__snapshots__/typedef-with-template/infer.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts b/test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts index 65df7690..dca19c7e 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts +++ b/test/__tests__/class/__snapshots__/typedef-with-template/path-parameter.ts @@ -1,11 +1,17 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // // +export namespace Parameters { + /** URL パスの一部として使用されるパスパラメータ */ + export type path$as$path$param = string; + /** クエリパラメータとして使用される path(省略可能) */ + export type path$as$query$param = string; +} export interface Parameter$getItemById { id: string; } @@ -16,20 +22,28 @@ 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 { + name: string; path: string; +} +export interface Parameter$getPodProxyWithPath { name: string; + /** URL パスの一部として使用されるパスパラメータ */ + path: Parameters.path$as$path$param; +} +export interface Response$getPodProxyWithPath$Status$200 { + "application/json": string; } export interface Parameter$getUserPost { - include?: string; userId: string; postId: number; + include?: string; } export interface Response$getUserPost$Status$200 { "application/json": { @@ -48,6 +62,10 @@ export interface Params$getNodeProxyWithPath { export interface Params$headNodeProxyWithPath { parameter: Parameter$headNodeProxyWithPath; } +export type ResponseContentType$getPodProxyWithPath = keyof Response$getPodProxyWithPath$Status$200; +export interface Params$getPodProxyWithPath { + parameter: Parameter$getPodProxyWithPath; +} export type ResponseContentType$getUserPost = keyof Response$getUserPost$Status$200; export interface Params$getUserPost { parameter: Parameter$getUserPost; @@ -64,11 +82,12 @@ export interface QueryParameter { export interface QueryParameters { [key: string]: QueryParameter; } -export type SuccessResponses = Response$getItemById$Status$200 | Response$getNodeProxyWithPath$Status$200 | Response$getUserPost$Status$200; +export type SuccessResponses = Response$getItemById$Status$200 | Response$getNodeProxyWithPath$Status$200 | Response$getPodProxyWithPath$Status$200 | Response$getUserPost$Status$200; export namespace ErrorResponse { export type getItemById = void; export type getNodeProxyWithPath = void; export type headNodeProxyWithPath = void; + export type getPodProxyWithPath = void; export type getUserPost = void; } export interface Encoding { @@ -134,6 +153,22 @@ export class Client { queryParameters: queryParameters }, option); } + /** $ref パラメータで同名の pathパラメータと queryパラメータが競合するケース */ + public async getPodProxyWithPath(params: Params$getPodProxyWithPath, option?: RequestOption): Promise { + const url = this.baseUrl + `/pods/${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); + } /** 複数のパスパラメータで 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__/class/__snapshots__/typedef-with-template/ref-access.ts b/test/__tests__/class/__snapshots__/typedef-with-template/ref-access.ts index 6b96e7f2..00445047 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template/ref-access.ts +++ b/test/__tests__/class/__snapshots__/typedef-with-template/ref-access.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts b/test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts index 67939634..d9dde78b 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts +++ b/test/__tests__/class/__snapshots__/typedef-with-template/remote-ref-access.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts b/test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts index bff0aa1c..53ce2e2f 100644 --- a/test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts +++ b/test/__tests__/class/__snapshots__/typedef-with-template/sync-api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // @@ -331,8 +331,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "from.publishedAt"?: number; "book.name": string; + "from.publishedAt"?: number; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/class/__snapshots__/unknown.schema.domain/client.ts b/test/__tests__/class/__snapshots__/unknown.schema.domain/client.ts index b9086eaa..187a9277 100644 --- a/test/__tests__/class/__snapshots__/unknown.schema.domain/client.ts +++ b/test/__tests__/class/__snapshots__/unknown.schema.domain/client.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/currying-functional/__snapshots__/cloudflare/client.ts b/test/__tests__/currying-functional/__snapshots__/cloudflare/client.ts index e36a4899..02b12ba0 100644 --- a/test/__tests__/currying-functional/__snapshots__/cloudflare/client.ts +++ b/test/__tests__/currying-functional/__snapshots__/cloudflare/client.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.3 // @@ -19030,11 +19030,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; @@ -19123,9 +19123,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; @@ -19134,6 +19134,7 @@ 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; @@ -19144,7 +19145,6 @@ 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; @@ -19243,9 +19243,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": {}; @@ -19342,10 +19342,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 & { @@ -19376,14 +19376,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 & { @@ -19394,6 +19394,7 @@ 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; @@ -19405,7 +19406,6 @@ 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; @@ -19414,8 +19414,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 { - since_minutes: Schemas.digital$experience$monitoring_since_minutes; account_id: Schemas.digital$experience$monitoring_account_identifier; + since_minutes: Schemas.digital$experience$monitoring_since_minutes; } export interface Response$dex$fleet$status$live$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_live_response; @@ -19424,16 +19424,20 @@ 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 */ @@ -19444,10 +19448,6 @@ 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 & { @@ -19458,6 +19458,10 @@ 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 */ @@ -19466,10 +19470,6 @@ 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 & { @@ -19480,6 +19480,8 @@ 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 */ @@ -19490,8 +19492,6 @@ 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 & { @@ -19503,12 +19503,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 & { @@ -19533,6 +19533,10 @@ 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 */ @@ -19543,10 +19547,6 @@ 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 & { @@ -19557,6 +19557,10 @@ 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 */ @@ -19565,10 +19569,6 @@ 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 & { @@ -19579,6 +19579,10 @@ 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 */ @@ -19587,10 +19591,6 @@ 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 & { @@ -19796,9 +19796,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; @@ -20354,9 +20354,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; @@ -20492,10 +20492,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; @@ -20550,11 +20550,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; @@ -20563,8 +20563,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 { - domain?: string; account_id: Schemas.intel_identifier; + domain?: string; } export interface Response$domain$intelligence$get$domain$details$Status$200 { "application/json": Schemas.intel_single_response; @@ -20573,8 +20573,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 { - domain?: any; account_id: Schemas.intel_identifier; + domain?: any; } export interface Response$domain$history$get$domain$history$Status$200 { "application/json": Schemas.intel_response; @@ -20583,8 +20583,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 { - domain?: any; account_id: Schemas.intel_identifier; + domain?: any; } export interface Response$domain$intelligence$get$multiple$domain$details$Status$200 { "application/json": Schemas.intel_collection_response; @@ -20593,9 +20593,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; @@ -20625,8 +20625,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 { - domain?: string; account_id: Schemas.intel_identifier; + domain?: string; } export interface Response$whois$record$get$whois$record$Status$200 { "application/json": Schemas.intel_schemas$single_response; @@ -21021,13 +21021,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 & { @@ -21210,11 +21210,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; @@ -21468,6 +21468,7 @@ 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; @@ -21476,7 +21477,6 @@ 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; @@ -21677,9 +21677,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; @@ -21691,8 +21691,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 { - "Upload-Creator"?: Schemas.stream_creator; account_id: Schemas.stream_account_identifier; + "Upload-Creator"?: Schemas.stream_creator; } export interface RequestBody$stream$videos$upload$videos$via$direct$upload$ur$ls { "application/json": Schemas.stream_direct_upload_request; @@ -21732,8 +21732,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 { - include_counts?: Schemas.stream_include_counts; account_id: Schemas.stream_schemas$identifier; + include_counts?: Schemas.stream_include_counts; } export interface Response$stream$live$inputs$list$live$inputs$Status$200 { "application/json": Schemas.stream_live_input_response_collection; @@ -21831,8 +21831,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 { - creator?: Schemas.stream_creator; account_id: Schemas.stream_account_identifier; + creator?: Schemas.stream_creator; } export interface Response$stream$videos$storage$usage$Status$200 { "application/json": Schemas.stream_storage_use_response; @@ -21914,6 +21914,7 @@ 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; @@ -21925,7 +21926,6 @@ 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; @@ -21980,9 +21980,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; @@ -22008,11 +22008,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; @@ -22031,12 +22031,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; @@ -22088,6 +22088,7 @@ 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; @@ -22099,7 +22100,6 @@ 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; @@ -22160,6 +22160,7 @@ 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; @@ -22170,7 +22171,6 @@ 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; @@ -22303,11 +22303,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 { } @@ -22325,13 +22325,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": { @@ -22378,12 +22378,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; @@ -22440,10 +22440,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 { - limit?: number; - cursor?: string; id: Schemas.workers_schemas$id; account_id: Schemas.workers_identifier; + limit?: number; + cursor?: string; } export interface Response$durable$objects$namespace$list$objects$Status$200 { "application/json": Schemas.workers_api$response$collection & { @@ -22671,10 +22671,10 @@ export interface Response$worker$script$download$worker$Status$4XX { undefined: any; } export interface Parameter$worker$script$upload$worker$module { - /** 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; + /** 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; } export type RequestBody$worker$script$upload$worker$module = RequestBodies.workers_script_upload.Content; export interface Response$worker$script$upload$worker$module$Status$200 { @@ -22684,22 +22684,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 { - /** 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; + /** 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$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": { @@ -22844,13 +22844,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": { @@ -23321,6 +23321,7 @@ 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; @@ -23333,7 +23334,6 @@ 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; @@ -23351,11 +23351,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 & { @@ -23368,11 +23368,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": { @@ -23558,6 +23558,8 @@ 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; @@ -23565,8 +23567,6 @@ 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 & { @@ -23579,6 +23579,8 @@ 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; @@ -23587,8 +23589,6 @@ 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 & { @@ -23601,11 +23601,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; @@ -23634,13 +23634,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; @@ -23892,8 +23892,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 { - monitor?: any; account_identifier: Schemas.load$balancing_components$schemas$identifier; + monitor?: any; } export interface Response$account$load$balancer$pools$list$pools$Status$200 { "application/json": Schemas.load$balancing_schemas$response_collection; @@ -24062,10 +24062,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; @@ -24084,10 +24084,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; @@ -24375,12 +24375,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; @@ -24836,10 +24836,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; @@ -25076,13 +25076,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 & { @@ -25095,13 +25095,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 & { @@ -25114,11 +25114,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 & { @@ -25196,11 +25196,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 & { @@ -25512,6 +25512,7 @@ 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; @@ -25524,7 +25525,6 @@ 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": { @@ -26130,9 +26130,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 */ @@ -27736,6 +27736,7 @@ 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; @@ -27748,7 +27749,6 @@ 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; @@ -28577,6 +28577,7 @@ 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")[]; @@ -28585,7 +28586,6 @@ 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": { @@ -28626,6 +28626,7 @@ 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")[]; @@ -28634,7 +28635,6 @@ 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": { @@ -28675,6 +28675,7 @@ 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")[]; @@ -28683,7 +28684,6 @@ 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": { @@ -31153,8 +31153,8 @@ export interface Response$radar$get$reports$datasets$Status$400 { }; } export interface Parameter$radar$get$reports$dataset$download { - date?: string | null; alias: string; + date?: string | null; } export interface Response$radar$get$reports$dataset$download$Status$200 { "text/csv": string; @@ -31978,6 +31978,7 @@ 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")[]; @@ -31989,7 +31990,6 @@ 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": { @@ -32030,6 +32030,7 @@ 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")[]; @@ -32041,7 +32042,6 @@ 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": { @@ -32082,6 +32082,7 @@ 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")[]; @@ -32093,7 +32094,6 @@ 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": { @@ -32134,6 +32134,7 @@ 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")[]; @@ -32146,7 +32147,6 @@ 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": { @@ -32187,6 +32187,7 @@ 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")[]; @@ -32199,7 +32200,6 @@ 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": { @@ -32240,6 +32240,7 @@ 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")[]; @@ -32251,7 +32252,6 @@ 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": { @@ -32344,6 +32344,7 @@ 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")[]; @@ -32355,7 +32356,6 @@ 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": { @@ -32396,6 +32396,7 @@ 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")[]; @@ -32407,7 +32408,6 @@ 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": { @@ -32448,6 +32448,7 @@ 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")[]; @@ -32459,7 +32460,6 @@ 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": { @@ -32500,6 +32500,7 @@ 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")[]; @@ -32512,7 +32513,6 @@ 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": { @@ -32553,6 +32553,7 @@ 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")[]; @@ -32565,7 +32566,6 @@ 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": { @@ -32606,6 +32606,7 @@ 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")[]; @@ -32617,7 +32618,6 @@ 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": { @@ -32693,8 +32693,8 @@ export interface Response$radar$get$entities$asn$list$Status$400 { }; } export interface Parameter$radar$get$entities$asn$by$id { - format?: "JSON" | "CSV"; asn: number; + format?: "JSON" | "CSV"; } export interface Response$radar$get$entities$asn$by$id$Status$200 { "application/json": { @@ -32740,9 +32740,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": { @@ -32875,8 +32875,8 @@ export interface Response$radar$get$entities$locations$Status$400 { }; } export interface Parameter$radar$get$entities$location$by$alpha2 { - format?: "JSON" | "CSV"; location: string; + format?: "JSON" | "CSV"; } export interface Response$radar$get$entities$location$by$alpha2$Status$200 { "application/json": { @@ -33703,6 +33703,7 @@ 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")[]; @@ -33717,7 +33718,6 @@ 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": { @@ -33758,6 +33758,7 @@ 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")[]; @@ -33772,7 +33773,6 @@ 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": { @@ -33813,6 +33813,7 @@ 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")[]; @@ -33827,7 +33828,6 @@ 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": { @@ -33868,6 +33868,7 @@ 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")[]; @@ -33882,7 +33883,6 @@ 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": { @@ -33923,6 +33923,7 @@ 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")[]; @@ -33937,7 +33938,6 @@ 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": { @@ -33978,6 +33978,7 @@ 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")[]; @@ -33992,7 +33993,6 @@ 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": { @@ -34033,6 +34033,7 @@ 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")[]; @@ -34047,7 +34048,6 @@ 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": { @@ -34251,6 +34251,7 @@ 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")[]; @@ -34265,7 +34266,6 @@ 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": { @@ -34306,6 +34306,7 @@ 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")[]; @@ -34320,7 +34321,6 @@ 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": { @@ -34361,6 +34361,7 @@ 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")[]; @@ -34375,7 +34376,6 @@ 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": { @@ -34416,6 +34416,7 @@ 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")[]; @@ -34430,7 +34431,6 @@ 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": { @@ -34471,6 +34471,7 @@ 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")[]; @@ -34485,7 +34486,6 @@ 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": { @@ -34526,6 +34526,7 @@ 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")[]; @@ -34540,7 +34541,6 @@ 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": { @@ -34581,6 +34581,7 @@ 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")[]; @@ -34595,7 +34596,6 @@ 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": { @@ -35037,12 +35037,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": { @@ -36456,6 +36456,7 @@ 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; @@ -36463,7 +36464,6 @@ 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 & { @@ -36476,6 +36476,7 @@ 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; @@ -36484,7 +36485,6 @@ 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 & { @@ -36747,8 +36747,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 { - bins?: string; zone_id: Schemas.argo$analytics_identifier; + bins?: string; } export interface Response$argo$analytics$for$zone$argo$analytics$for$a$zone$Status$200 { "application/json": Schemas.argo$analytics_response_single; @@ -37346,6 +37346,7 @@ 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; @@ -37371,7 +37372,6 @@ 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; @@ -37525,13 +37525,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; @@ -37588,6 +37588,8 @@ 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; @@ -37596,8 +37598,6 @@ 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; @@ -37633,6 +37633,8 @@ 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; @@ -37642,8 +37644,6 @@ 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; @@ -37700,6 +37700,8 @@ 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 @@ -37707,8 +37709,6 @@ 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 & { @@ -37723,6 +37723,8 @@ 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 @@ -37730,8 +37732,6 @@ 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": { @@ -37991,6 +37991,7 @@ 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; @@ -38003,7 +38004,6 @@ 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; @@ -38085,6 +38085,7 @@ 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; @@ -38098,7 +38099,6 @@ 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; @@ -38117,11 +38117,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; @@ -39797,6 +39797,7 @@ 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. */ @@ -39805,7 +39806,6 @@ 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; @@ -39827,9 +39827,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; @@ -39892,11 +39892,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; @@ -39920,9 +39920,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; @@ -39942,6 +39942,8 @@ 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; @@ -39950,8 +39952,6 @@ 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; @@ -39960,9 +39960,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; @@ -39971,9 +39971,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; @@ -39982,9 +39982,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; @@ -40177,10 +40177,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; @@ -40189,10 +40189,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; @@ -40237,8 +40237,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 { - mtls_certificate_id?: string; zone_identifier: Schemas.ApQU2qAj_identifier; + mtls_certificate_id?: string; } export interface Response$client$certificate$for$a$zone$list$hostname$associations$Status$200 { "application/json": Schemas.ApQU2qAj_hostname_associations_response; @@ -40259,12 +40259,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; @@ -40318,11 +40318,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; @@ -40407,6 +40407,7 @@ 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; @@ -40414,7 +40415,6 @@ 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; @@ -40581,10 +40581,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; @@ -40638,6 +40638,7 @@ 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; @@ -40645,7 +40646,6 @@ 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; @@ -40731,6 +40731,7 @@ 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; @@ -40742,7 +40743,6 @@ 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; @@ -40810,13 +40810,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; @@ -40939,12 +40939,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; @@ -41013,9 +41013,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; @@ -41084,13 +41084,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; @@ -41355,10 +41355,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 { - timestamps?: Schemas.dFBpZBFx_timestamps; - fields?: string; ray_identifier: Schemas.dFBpZBFx_ray_identifier; zone_identifier: Schemas.dFBpZBFx_identifier; + timestamps?: Schemas.dFBpZBFx_timestamps; + fields?: string; } export interface Response$logs$received$get$logs$ray$i$ds$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41367,13 +41367,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; @@ -41526,9 +41526,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; @@ -41847,8 +41847,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 { - status?: "all"; zone_identifier: Schemas.ApQU2qAj_identifier; + status?: "all"; } export interface Response$certificate$packs$list$certificate$packs$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_pack_response_collection; @@ -41957,8 +41957,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 { - retry?: string; zone_identifier: Schemas.ApQU2qAj_identifier; + retry?: string; } export interface Response$ssl$verification$ssl$verification$details$Status$200 { "application/json": Schemas.ApQU2qAj_ssl_verification_response_collection; @@ -42383,10 +42383,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; @@ -42395,6 +42395,7 @@ 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; @@ -42402,7 +42403,6 @@ 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; @@ -42411,13 +42411,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; @@ -42426,11 +42426,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__/argo-rollout/client.ts b/test/__tests__/functional/__snapshots__/argo-rollout/client.ts index 71b6361b..a335f4a6 100644 --- a/test/__tests__/functional/__snapshots__/argo-rollout/client.ts +++ b/test/__tests__/functional/__snapshots__/argo-rollout/client.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.0 // diff --git a/test/__tests__/functional/__snapshots__/cloudflare/client.ts b/test/__tests__/functional/__snapshots__/cloudflare/client.ts index 933e3085..2d112b9b 100644 --- a/test/__tests__/functional/__snapshots__/cloudflare/client.ts +++ b/test/__tests__/functional/__snapshots__/cloudflare/client.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.3 // @@ -19030,11 +19030,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; @@ -19123,9 +19123,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; @@ -19134,6 +19134,7 @@ 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; @@ -19144,7 +19145,6 @@ 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; @@ -19243,9 +19243,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": {}; @@ -19342,10 +19342,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 & { @@ -19376,14 +19376,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 & { @@ -19394,6 +19394,7 @@ 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; @@ -19405,7 +19406,6 @@ 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; @@ -19414,8 +19414,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 { - since_minutes: Schemas.digital$experience$monitoring_since_minutes; account_id: Schemas.digital$experience$monitoring_account_identifier; + since_minutes: Schemas.digital$experience$monitoring_since_minutes; } export interface Response$dex$fleet$status$live$Status$200 { "application/json": Schemas.digital$experience$monitoring_fleet_status_live_response; @@ -19424,16 +19424,20 @@ 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 */ @@ -19444,10 +19448,6 @@ 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 & { @@ -19458,6 +19458,10 @@ 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 */ @@ -19466,10 +19470,6 @@ 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 & { @@ -19480,6 +19480,8 @@ 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 */ @@ -19490,8 +19492,6 @@ 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 & { @@ -19503,12 +19503,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 & { @@ -19533,6 +19533,10 @@ 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 */ @@ -19543,10 +19547,6 @@ 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 & { @@ -19557,6 +19557,10 @@ 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 */ @@ -19565,10 +19569,6 @@ 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 & { @@ -19579,6 +19579,10 @@ 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 */ @@ -19587,10 +19591,6 @@ 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 & { @@ -19796,9 +19796,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; @@ -20354,9 +20354,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; @@ -20492,10 +20492,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; @@ -20550,11 +20550,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; @@ -20563,8 +20563,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 { - domain?: string; account_id: Schemas.intel_identifier; + domain?: string; } export interface Response$domain$intelligence$get$domain$details$Status$200 { "application/json": Schemas.intel_single_response; @@ -20573,8 +20573,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 { - domain?: any; account_id: Schemas.intel_identifier; + domain?: any; } export interface Response$domain$history$get$domain$history$Status$200 { "application/json": Schemas.intel_response; @@ -20583,8 +20583,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 { - domain?: any; account_id: Schemas.intel_identifier; + domain?: any; } export interface Response$domain$intelligence$get$multiple$domain$details$Status$200 { "application/json": Schemas.intel_collection_response; @@ -20593,9 +20593,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; @@ -20625,8 +20625,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 { - domain?: string; account_id: Schemas.intel_identifier; + domain?: string; } export interface Response$whois$record$get$whois$record$Status$200 { "application/json": Schemas.intel_schemas$single_response; @@ -21021,13 +21021,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 & { @@ -21210,11 +21210,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; @@ -21468,6 +21468,7 @@ 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; @@ -21476,7 +21477,6 @@ 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; @@ -21677,9 +21677,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; @@ -21691,8 +21691,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 { - "Upload-Creator"?: Schemas.stream_creator; account_id: Schemas.stream_account_identifier; + "Upload-Creator"?: Schemas.stream_creator; } export interface RequestBody$stream$videos$upload$videos$via$direct$upload$ur$ls { "application/json": Schemas.stream_direct_upload_request; @@ -21732,8 +21732,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 { - include_counts?: Schemas.stream_include_counts; account_id: Schemas.stream_schemas$identifier; + include_counts?: Schemas.stream_include_counts; } export interface Response$stream$live$inputs$list$live$inputs$Status$200 { "application/json": Schemas.stream_live_input_response_collection; @@ -21831,8 +21831,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 { - creator?: Schemas.stream_creator; account_id: Schemas.stream_account_identifier; + creator?: Schemas.stream_creator; } export interface Response$stream$videos$storage$usage$Status$200 { "application/json": Schemas.stream_storage_use_response; @@ -21914,6 +21914,7 @@ 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; @@ -21925,7 +21926,6 @@ 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; @@ -21980,9 +21980,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; @@ -22008,11 +22008,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; @@ -22031,12 +22031,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; @@ -22088,6 +22088,7 @@ 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; @@ -22099,7 +22100,6 @@ 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; @@ -22160,6 +22160,7 @@ 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; @@ -22170,7 +22171,6 @@ 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; @@ -22303,11 +22303,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 { } @@ -22325,13 +22325,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": { @@ -22378,12 +22378,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; @@ -22440,10 +22440,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 { - limit?: number; - cursor?: string; id: Schemas.workers_schemas$id; account_id: Schemas.workers_identifier; + limit?: number; + cursor?: string; } export interface Response$durable$objects$namespace$list$objects$Status$200 { "application/json": Schemas.workers_api$response$collection & { @@ -22671,10 +22671,10 @@ export interface Response$worker$script$download$worker$Status$4XX { undefined: any; } export interface Parameter$worker$script$upload$worker$module { - /** 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; + /** 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; } export type RequestBody$worker$script$upload$worker$module = RequestBodies.workers_script_upload.Content; export interface Response$worker$script$upload$worker$module$Status$200 { @@ -22684,22 +22684,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 { - /** 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; + /** 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$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": { @@ -22844,13 +22844,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": { @@ -23321,6 +23321,7 @@ 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; @@ -23333,7 +23334,6 @@ 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; @@ -23351,11 +23351,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 & { @@ -23368,11 +23368,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": { @@ -23558,6 +23558,8 @@ 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; @@ -23565,8 +23567,6 @@ 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 & { @@ -23579,6 +23579,8 @@ 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; @@ -23587,8 +23589,6 @@ 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 & { @@ -23601,11 +23601,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; @@ -23634,13 +23634,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; @@ -23892,8 +23892,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 { - monitor?: any; account_identifier: Schemas.load$balancing_components$schemas$identifier; + monitor?: any; } export interface Response$account$load$balancer$pools$list$pools$Status$200 { "application/json": Schemas.load$balancing_schemas$response_collection; @@ -24062,10 +24062,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; @@ -24084,10 +24084,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; @@ -24375,12 +24375,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; @@ -24836,10 +24836,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; @@ -25076,13 +25076,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 & { @@ -25095,13 +25095,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 & { @@ -25114,11 +25114,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 & { @@ -25196,11 +25196,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 & { @@ -25512,6 +25512,7 @@ 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; @@ -25524,7 +25525,6 @@ 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": { @@ -26130,9 +26130,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 */ @@ -27736,6 +27736,7 @@ 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; @@ -27748,7 +27749,6 @@ 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; @@ -28577,6 +28577,7 @@ 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")[]; @@ -28585,7 +28586,6 @@ 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": { @@ -28626,6 +28626,7 @@ 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")[]; @@ -28634,7 +28635,6 @@ 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": { @@ -28675,6 +28675,7 @@ 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")[]; @@ -28683,7 +28684,6 @@ 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": { @@ -31153,8 +31153,8 @@ export interface Response$radar$get$reports$datasets$Status$400 { }; } export interface Parameter$radar$get$reports$dataset$download { - date?: string | null; alias: string; + date?: string | null; } export interface Response$radar$get$reports$dataset$download$Status$200 { "text/csv": string; @@ -31978,6 +31978,7 @@ 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")[]; @@ -31989,7 +31990,6 @@ 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": { @@ -32030,6 +32030,7 @@ 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")[]; @@ -32041,7 +32042,6 @@ 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": { @@ -32082,6 +32082,7 @@ 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")[]; @@ -32093,7 +32094,6 @@ 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": { @@ -32134,6 +32134,7 @@ 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")[]; @@ -32146,7 +32147,6 @@ 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": { @@ -32187,6 +32187,7 @@ 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")[]; @@ -32199,7 +32200,6 @@ 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": { @@ -32240,6 +32240,7 @@ 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")[]; @@ -32251,7 +32252,6 @@ 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": { @@ -32344,6 +32344,7 @@ 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")[]; @@ -32355,7 +32356,6 @@ 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": { @@ -32396,6 +32396,7 @@ 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")[]; @@ -32407,7 +32408,6 @@ 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": { @@ -32448,6 +32448,7 @@ 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")[]; @@ -32459,7 +32460,6 @@ 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": { @@ -32500,6 +32500,7 @@ 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")[]; @@ -32512,7 +32513,6 @@ 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": { @@ -32553,6 +32553,7 @@ 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")[]; @@ -32565,7 +32566,6 @@ 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": { @@ -32606,6 +32606,7 @@ 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")[]; @@ -32617,7 +32618,6 @@ 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": { @@ -32693,8 +32693,8 @@ export interface Response$radar$get$entities$asn$list$Status$400 { }; } export interface Parameter$radar$get$entities$asn$by$id { - format?: "JSON" | "CSV"; asn: number; + format?: "JSON" | "CSV"; } export interface Response$radar$get$entities$asn$by$id$Status$200 { "application/json": { @@ -32740,9 +32740,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": { @@ -32875,8 +32875,8 @@ export interface Response$radar$get$entities$locations$Status$400 { }; } export interface Parameter$radar$get$entities$location$by$alpha2 { - format?: "JSON" | "CSV"; location: string; + format?: "JSON" | "CSV"; } export interface Response$radar$get$entities$location$by$alpha2$Status$200 { "application/json": { @@ -33703,6 +33703,7 @@ 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")[]; @@ -33717,7 +33718,6 @@ 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": { @@ -33758,6 +33758,7 @@ 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")[]; @@ -33772,7 +33773,6 @@ 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": { @@ -33813,6 +33813,7 @@ 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")[]; @@ -33827,7 +33828,6 @@ 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": { @@ -33868,6 +33868,7 @@ 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")[]; @@ -33882,7 +33883,6 @@ 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": { @@ -33923,6 +33923,7 @@ 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")[]; @@ -33937,7 +33938,6 @@ 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": { @@ -33978,6 +33978,7 @@ 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")[]; @@ -33992,7 +33993,6 @@ 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": { @@ -34033,6 +34033,7 @@ 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")[]; @@ -34047,7 +34048,6 @@ 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": { @@ -34251,6 +34251,7 @@ 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")[]; @@ -34265,7 +34266,6 @@ 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": { @@ -34306,6 +34306,7 @@ 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")[]; @@ -34320,7 +34321,6 @@ 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": { @@ -34361,6 +34361,7 @@ 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")[]; @@ -34375,7 +34376,6 @@ 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": { @@ -34416,6 +34416,7 @@ 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")[]; @@ -34430,7 +34431,6 @@ 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": { @@ -34471,6 +34471,7 @@ 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")[]; @@ -34485,7 +34486,6 @@ 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": { @@ -34526,6 +34526,7 @@ 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")[]; @@ -34540,7 +34541,6 @@ 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": { @@ -34581,6 +34581,7 @@ 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")[]; @@ -34595,7 +34596,6 @@ 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": { @@ -35037,12 +35037,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": { @@ -36456,6 +36456,7 @@ 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; @@ -36463,7 +36464,6 @@ 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 & { @@ -36476,6 +36476,7 @@ 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; @@ -36484,7 +36485,6 @@ 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 & { @@ -36747,8 +36747,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 { - bins?: string; zone_id: Schemas.argo$analytics_identifier; + bins?: string; } export interface Response$argo$analytics$for$zone$argo$analytics$for$a$zone$Status$200 { "application/json": Schemas.argo$analytics_response_single; @@ -37346,6 +37346,7 @@ 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; @@ -37371,7 +37372,6 @@ 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; @@ -37525,13 +37525,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; @@ -37588,6 +37588,8 @@ 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; @@ -37596,8 +37598,6 @@ 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; @@ -37633,6 +37633,8 @@ 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; @@ -37642,8 +37644,6 @@ 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; @@ -37700,6 +37700,8 @@ 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 @@ -37707,8 +37709,6 @@ 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 & { @@ -37723,6 +37723,8 @@ 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 @@ -37730,8 +37732,6 @@ 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": { @@ -37991,6 +37991,7 @@ 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; @@ -38003,7 +38004,6 @@ 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; @@ -38085,6 +38085,7 @@ 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; @@ -38098,7 +38099,6 @@ 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; @@ -38117,11 +38117,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; @@ -39797,6 +39797,7 @@ 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. */ @@ -39805,7 +39806,6 @@ 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; @@ -39827,9 +39827,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; @@ -39892,11 +39892,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; @@ -39920,9 +39920,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; @@ -39942,6 +39942,8 @@ 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; @@ -39950,8 +39952,6 @@ 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; @@ -39960,9 +39960,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; @@ -39971,9 +39971,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; @@ -39982,9 +39982,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; @@ -40177,10 +40177,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; @@ -40189,10 +40189,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; @@ -40237,8 +40237,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 { - mtls_certificate_id?: string; zone_identifier: Schemas.ApQU2qAj_identifier; + mtls_certificate_id?: string; } export interface Response$client$certificate$for$a$zone$list$hostname$associations$Status$200 { "application/json": Schemas.ApQU2qAj_hostname_associations_response; @@ -40259,12 +40259,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; @@ -40318,11 +40318,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; @@ -40407,6 +40407,7 @@ 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; @@ -40414,7 +40415,6 @@ 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; @@ -40581,10 +40581,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; @@ -40638,6 +40638,7 @@ 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; @@ -40645,7 +40646,6 @@ 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; @@ -40731,6 +40731,7 @@ 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; @@ -40742,7 +40743,6 @@ 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; @@ -40810,13 +40810,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; @@ -40939,12 +40939,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; @@ -41013,9 +41013,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; @@ -41084,13 +41084,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; @@ -41355,10 +41355,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 { - timestamps?: Schemas.dFBpZBFx_timestamps; - fields?: string; ray_identifier: Schemas.dFBpZBFx_ray_identifier; zone_identifier: Schemas.dFBpZBFx_identifier; + timestamps?: Schemas.dFBpZBFx_timestamps; + fields?: string; } export interface Response$logs$received$get$logs$ray$i$ds$Status$200 { "application/json": Schemas.dFBpZBFx_logs; @@ -41367,13 +41367,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; @@ -41526,9 +41526,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; @@ -41847,8 +41847,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 { - status?: "all"; zone_identifier: Schemas.ApQU2qAj_identifier; + status?: "all"; } export interface Response$certificate$packs$list$certificate$packs$Status$200 { "application/json": Schemas.ApQU2qAj_certificate_pack_response_collection; @@ -41957,8 +41957,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 { - retry?: string; zone_identifier: Schemas.ApQU2qAj_identifier; + retry?: string; } export interface Response$ssl$verification$ssl$verification$details$Status$200 { "application/json": Schemas.ApQU2qAj_ssl_verification_response_collection; @@ -42383,10 +42383,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; @@ -42395,6 +42395,7 @@ 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; @@ -42402,7 +42403,6 @@ 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; @@ -42411,13 +42411,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; @@ -42426,11 +42426,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__/format.domain/code.ts b/test/__tests__/functional/__snapshots__/format.domain/code.ts index 6992167e..388f469f 100644 --- a/test/__tests__/functional/__snapshots__/format.domain/code.ts +++ b/test/__tests__/functional/__snapshots__/format.domain/code.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/kubernetes/client-v1.18.5.ts b/test/__tests__/functional/__snapshots__/kubernetes/client-v1.18.5.ts index 30f3de3a..15ccb6d6 100644 --- a/test/__tests__/functional/__snapshots__/kubernetes/client-v1.18.5.ts +++ b/test/__tests__/functional/__snapshots__/kubernetes/client-v1.18.5.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.0 // @@ -7141,10 +7141,10 @@ export interface Response$listCoreV1ComponentStatus$Status$200 { "application/vnd.kubernetes.protobuf;stream=watch": Schemas.io$k8s$api$core$v1$ComponentStatusList; } export interface Parameter$readCoreV1ComponentStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ComponentStatus */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1ComponentStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$ComponentStatus; @@ -7355,10 +7355,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; - /** If 'true', then the output is pretty printed. */ - pretty?: 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$createCoreV1NamespacedBinding = RequestBodies.io$k8s$api$core$v1$Binding.Content; export interface Response$createCoreV1NamespacedBinding$Status$200 { @@ -7377,6 +7377,8 @@ 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. */ @@ -7403,8 +7405,6 @@ 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; @@ -7414,14 +7414,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 { @@ -7440,6 +7440,8 @@ 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. */ @@ -7474,8 +7476,6 @@ 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 { @@ -7484,16 +7484,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; @@ -7501,16 +7501,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 { @@ -7524,6 +7524,10 @@ 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 */ @@ -7534,10 +7538,6 @@ 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 { @@ -7551,6 +7551,10 @@ 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 */ @@ -7559,10 +7563,6 @@ 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 { @@ -7571,6 +7571,8 @@ 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. */ @@ -7597,8 +7599,6 @@ 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; @@ -7608,14 +7608,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 { @@ -7634,6 +7634,8 @@ 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. */ @@ -7668,8 +7670,6 @@ 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 { @@ -7678,16 +7678,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; @@ -7695,16 +7695,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 { @@ -7718,6 +7718,10 @@ 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 */ @@ -7728,10 +7732,6 @@ 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 { @@ -7745,6 +7745,10 @@ 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 */ @@ -7753,10 +7757,6 @@ 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 { @@ -7765,6 +7765,8 @@ 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. */ @@ -7791,8 +7793,6 @@ 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; @@ -7802,14 +7802,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 { @@ -7828,6 +7828,8 @@ 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. */ @@ -7862,8 +7864,6 @@ 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 { @@ -7872,16 +7872,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; @@ -7889,16 +7889,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 { @@ -7912,6 +7912,10 @@ 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 */ @@ -7922,10 +7926,6 @@ 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 { @@ -7939,6 +7939,10 @@ 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 */ @@ -7947,10 +7951,6 @@ 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 { @@ -7959,6 +7959,8 @@ 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. */ @@ -7985,8 +7987,6 @@ 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; @@ -7996,14 +7996,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 { @@ -8022,6 +8022,8 @@ 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. */ @@ -8056,8 +8058,6 @@ 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 { @@ -8066,16 +8066,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; @@ -8083,16 +8083,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 { @@ -8106,6 +8106,10 @@ 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 */ @@ -8116,10 +8120,6 @@ 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 { @@ -8133,6 +8133,10 @@ 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 */ @@ -8141,10 +8145,6 @@ 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 { @@ -8153,6 +8153,8 @@ 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. */ @@ -8179,8 +8181,6 @@ 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; @@ -8190,14 +8190,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 { @@ -8216,6 +8216,8 @@ 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. */ @@ -8250,8 +8252,6 @@ 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 { @@ -8260,16 +8260,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; @@ -8277,16 +8277,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 { @@ -8300,6 +8300,10 @@ 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 */ @@ -8310,10 +8314,6 @@ 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 { @@ -8327,6 +8327,10 @@ 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 */ @@ -8335,10 +8339,6 @@ 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 { @@ -8347,12 +8347,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; @@ -8360,16 +8360,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 { @@ -8383,6 +8383,10 @@ 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 */ @@ -8391,10 +8395,6 @@ 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 { @@ -8403,6 +8403,8 @@ 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. */ @@ -8429,8 +8431,6 @@ 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; @@ -8440,14 +8440,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 { @@ -8466,6 +8466,8 @@ 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. */ @@ -8500,8 +8502,6 @@ 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 { @@ -8510,16 +8510,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; @@ -8527,16 +8527,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 { @@ -8550,6 +8550,10 @@ 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 */ @@ -8560,10 +8564,6 @@ 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 { @@ -8577,6 +8577,10 @@ 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 */ @@ -8585,10 +8589,6 @@ 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 { @@ -8599,6 +8599,10 @@ 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. */ @@ -8607,10 +8611,6 @@ 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; @@ -8618,6 +8618,10 @@ 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. */ @@ -8626,10 +8630,6 @@ 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; @@ -8639,12 +8639,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 { @@ -8667,12 +8667,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; @@ -8697,6 +8697,10 @@ 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. */ @@ -8705,10 +8709,6 @@ 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; @@ -8718,6 +8718,10 @@ 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. */ @@ -8726,10 +8730,6 @@ 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; @@ -8743,6 +8743,10 @@ 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. */ @@ -8753,10 +8757,6 @@ 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; @@ -8765,188 +8765,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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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; @@ -8954,16 +8954,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 { @@ -8977,6 +8977,10 @@ 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 */ @@ -8985,10 +8989,6 @@ 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 { @@ -8997,6 +8997,8 @@ 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. */ @@ -9023,8 +9025,6 @@ 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; @@ -9034,14 +9034,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 { @@ -9060,6 +9060,8 @@ 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. */ @@ -9094,8 +9096,6 @@ 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 { @@ -9104,16 +9104,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; @@ -9121,16 +9121,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 { @@ -9144,6 +9144,10 @@ 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 */ @@ -9154,10 +9158,6 @@ 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 { @@ -9171,6 +9171,10 @@ 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 */ @@ -9179,10 +9183,6 @@ 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 { @@ -9191,6 +9191,8 @@ 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. */ @@ -9217,8 +9219,6 @@ 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; @@ -9228,14 +9228,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 { @@ -9254,6 +9254,8 @@ 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. */ @@ -9288,8 +9290,6 @@ 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 { @@ -9298,16 +9298,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; @@ -9315,16 +9315,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 { @@ -9338,6 +9338,10 @@ 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 */ @@ -9348,10 +9352,6 @@ 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 { @@ -9365,6 +9365,10 @@ 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 */ @@ -9373,10 +9377,6 @@ 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 { @@ -9385,12 +9385,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; @@ -9398,16 +9398,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 { @@ -9421,6 +9421,10 @@ 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 */ @@ -9429,10 +9433,6 @@ 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 { @@ -9441,12 +9441,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; @@ -9454,16 +9454,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 { @@ -9477,6 +9477,10 @@ 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 */ @@ -9485,10 +9489,6 @@ 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 { @@ -9497,6 +9497,8 @@ 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. */ @@ -9523,8 +9525,6 @@ 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; @@ -9534,14 +9534,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 { @@ -9560,6 +9560,8 @@ 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. */ @@ -9594,8 +9596,6 @@ 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 { @@ -9604,16 +9604,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; @@ -9621,16 +9621,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 { @@ -9644,6 +9644,10 @@ 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 */ @@ -9654,10 +9658,6 @@ 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 { @@ -9671,6 +9671,10 @@ 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 */ @@ -9679,10 +9683,6 @@ 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 { @@ -9691,12 +9691,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; @@ -9704,16 +9704,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 { @@ -9727,6 +9727,10 @@ 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 */ @@ -9735,10 +9739,6 @@ 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 { @@ -9747,6 +9747,8 @@ 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. */ @@ -9773,8 +9775,6 @@ 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; @@ -9784,14 +9784,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 { @@ -9810,6 +9810,8 @@ 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. */ @@ -9844,8 +9846,6 @@ 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 { @@ -9854,16 +9854,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; @@ -9871,16 +9871,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 { @@ -9894,6 +9894,10 @@ 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 */ @@ -9904,10 +9908,6 @@ 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 { @@ -9921,6 +9921,10 @@ 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 */ @@ -9929,10 +9933,6 @@ 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 { @@ -9941,6 +9941,8 @@ 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. */ @@ -9967,8 +9969,6 @@ 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; @@ -9978,14 +9978,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 { @@ -10004,6 +10004,8 @@ 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. */ @@ -10038,8 +10040,6 @@ 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 { @@ -10048,16 +10048,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; @@ -10065,16 +10065,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 { @@ -10088,6 +10088,10 @@ 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 */ @@ -10098,10 +10102,6 @@ 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 { @@ -10115,6 +10115,10 @@ 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 */ @@ -10123,10 +10127,6 @@ 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 { @@ -10139,12 +10139,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; @@ -10165,6 +10165,8 @@ 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. */ @@ -10191,8 +10193,6 @@ 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; @@ -10202,14 +10202,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 { @@ -10228,16 +10228,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; @@ -10245,16 +10245,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 { @@ -10268,6 +10268,10 @@ 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 */ @@ -10278,10 +10282,6 @@ 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 { @@ -10295,6 +10295,10 @@ 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 */ @@ -10303,10 +10307,6 @@ 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 { @@ -10315,166 +10315,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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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; @@ -10482,16 +10482,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 { @@ -10505,6 +10505,10 @@ 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 */ @@ -10513,10 +10517,6 @@ 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 { @@ -10525,14 +10525,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; @@ -10540,14 +10540,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 { @@ -10561,6 +10561,8 @@ 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 */ @@ -10571,8 +10573,6 @@ 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 { @@ -10586,6 +10586,8 @@ 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 */ @@ -10594,8 +10596,6 @@ 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 { @@ -10608,10 +10608,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; - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the Namespace */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export type RequestBody$replaceCoreV1NamespaceFinalize = RequestBodies.io$k8s$api$core$v1$Namespace.Content; export interface Response$replaceCoreV1NamespaceFinalize$Status$200 { @@ -10625,10 +10625,10 @@ export interface Response$replaceCoreV1NamespaceFinalize$Status$201 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Namespace; } export interface Parameter$readCoreV1NamespaceStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the Namespace */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1NamespaceStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Namespace; @@ -10636,14 +10636,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 { @@ -10657,6 +10657,8 @@ 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 */ @@ -10665,8 +10667,6 @@ 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 { @@ -10776,14 +10776,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; @@ -10791,14 +10791,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 { @@ -10812,6 +10812,8 @@ 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 */ @@ -10822,8 +10824,6 @@ 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 { @@ -10837,6 +10837,8 @@ 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 */ @@ -10845,8 +10847,6 @@ 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 { @@ -10855,136 +10855,136 @@ export interface Response$patchCoreV1Node$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$Node; } export interface Parameter$connectCoreV1GetNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1GetNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PutNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1PutNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PostNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1PostNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1DeleteNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1DeleteNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1OptionsNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1OptionsNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1HeadNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1HeadNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1PatchNodeProxy { - /** Path is the URL path to use for the current proxy request to node. */ - 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$connectCoreV1PatchNodeProxy$Status$200 { "*/*": string; } export interface Parameter$connectCoreV1GetNodeProxyWithPath { - /** path to the resource */ - path: string; /** name of the NodeProxyOptions */ name: string; + /** path to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + 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 to the resource */ + path: string; } export interface Response$connectCoreV1PatchNodeProxyWithPath$Status$200 { "*/*": string; } export interface Parameter$readCoreV1NodeStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the Node */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1NodeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$Node; @@ -10992,14 +10992,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 { @@ -11013,6 +11013,8 @@ 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 */ @@ -11021,8 +11023,6 @@ 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 { @@ -11167,14 +11167,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; @@ -11182,14 +11182,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 { @@ -11203,6 +11203,8 @@ 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 */ @@ -11213,8 +11215,6 @@ 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 { @@ -11228,6 +11228,8 @@ 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 */ @@ -11236,8 +11238,6 @@ 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 { @@ -11246,10 +11246,10 @@ export interface Response$patchCoreV1PersistentVolume$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$core$v1$PersistentVolume; } export interface Parameter$readCoreV1PersistentVolumeStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the PersistentVolume */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCoreV1PersistentVolumeStatus$Status$200 { "application/json": Schemas.io$k8s$api$core$v1$PersistentVolume; @@ -11257,14 +11257,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 { @@ -11278,6 +11278,8 @@ 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 */ @@ -11286,8 +11288,6 @@ 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 { @@ -11734,6 +11734,8 @@ 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. */ @@ -11742,8 +11744,6 @@ 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; @@ -11771,6 +11771,10 @@ 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. */ @@ -11779,10 +11783,6 @@ 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; @@ -11810,6 +11810,8 @@ 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. */ @@ -11818,8 +11820,6 @@ 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; @@ -11847,6 +11847,10 @@ 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. */ @@ -11855,10 +11859,6 @@ 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; @@ -11886,6 +11886,8 @@ 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. */ @@ -11894,8 +11896,6 @@ 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; @@ -11923,6 +11923,10 @@ 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. */ @@ -11931,10 +11935,6 @@ 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; @@ -11962,6 +11962,8 @@ 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. */ @@ -11970,8 +11972,6 @@ 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; @@ -11999,6 +11999,10 @@ 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. */ @@ -12007,10 +12011,6 @@ 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; @@ -12038,6 +12038,8 @@ 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. */ @@ -12046,8 +12048,6 @@ 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; @@ -12075,6 +12075,10 @@ 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. */ @@ -12083,10 +12087,6 @@ 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; @@ -12114,6 +12114,8 @@ 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. */ @@ -12122,8 +12124,6 @@ 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; @@ -12151,6 +12151,10 @@ 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. */ @@ -12159,10 +12163,6 @@ 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; @@ -12190,6 +12190,8 @@ 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. */ @@ -12198,8 +12200,6 @@ 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; @@ -12227,6 +12227,10 @@ 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. */ @@ -12235,10 +12239,6 @@ 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; @@ -12266,6 +12266,8 @@ 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. */ @@ -12274,8 +12276,6 @@ 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; @@ -12303,6 +12303,10 @@ 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. */ @@ -12311,10 +12315,6 @@ 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; @@ -12342,6 +12342,8 @@ 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. */ @@ -12350,8 +12352,6 @@ 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; @@ -12379,6 +12379,10 @@ 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. */ @@ -12387,10 +12391,6 @@ 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; @@ -12418,6 +12418,8 @@ 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. */ @@ -12426,8 +12428,6 @@ 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; @@ -12455,6 +12455,10 @@ 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. */ @@ -12463,10 +12467,6 @@ 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; @@ -12494,6 +12494,8 @@ 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. */ @@ -12502,8 +12504,6 @@ 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; @@ -12531,6 +12531,10 @@ 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. */ @@ -12539,10 +12543,6 @@ 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; @@ -12570,6 +12570,8 @@ 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. */ @@ -12578,8 +12580,6 @@ 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; @@ -12607,6 +12607,10 @@ 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. */ @@ -12615,10 +12619,6 @@ 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; @@ -12646,6 +12646,8 @@ 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. */ @@ -12654,8 +12656,6 @@ 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; @@ -12718,6 +12718,8 @@ 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. */ @@ -12726,8 +12728,6 @@ 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; @@ -12825,6 +12825,8 @@ 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. */ @@ -12833,8 +12835,6 @@ 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; @@ -13205,14 +13205,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; @@ -13220,14 +13220,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 { @@ -13241,6 +13241,8 @@ 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 */ @@ -13251,8 +13253,6 @@ 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 { @@ -13266,6 +13266,8 @@ 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 */ @@ -13274,8 +13276,6 @@ 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 { @@ -13385,14 +13385,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; @@ -13400,14 +13400,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 { @@ -13421,6 +13421,8 @@ 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 */ @@ -13431,8 +13433,6 @@ 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 { @@ -13446,6 +13446,8 @@ 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 */ @@ -13454,8 +13456,6 @@ 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 { @@ -13517,6 +13517,8 @@ 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. */ @@ -13525,8 +13527,6 @@ 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; @@ -13589,6 +13589,8 @@ 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. */ @@ -13597,8 +13599,6 @@ 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; @@ -13714,14 +13714,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; @@ -13729,14 +13729,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 { @@ -13750,6 +13750,8 @@ 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 */ @@ -13760,8 +13762,6 @@ 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 { @@ -13775,6 +13775,8 @@ 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 */ @@ -13783,8 +13785,6 @@ 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 { @@ -13894,14 +13894,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; @@ -13909,14 +13909,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 { @@ -13930,6 +13930,8 @@ 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 */ @@ -13940,8 +13942,6 @@ 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 { @@ -13955,6 +13955,8 @@ 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 */ @@ -13963,8 +13965,6 @@ 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 { @@ -14026,6 +14026,8 @@ 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. */ @@ -14034,8 +14036,6 @@ 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; @@ -14098,6 +14098,8 @@ 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. */ @@ -14106,8 +14108,6 @@ 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; @@ -14228,14 +14228,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; @@ -14243,14 +14243,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 { @@ -14264,6 +14264,8 @@ 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 */ @@ -14274,8 +14276,6 @@ 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 { @@ -14289,6 +14289,8 @@ 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 */ @@ -14297,8 +14299,6 @@ 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 { @@ -14307,10 +14307,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 { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CustomResourceDefinition */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiextensionsV1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1$CustomResourceDefinition; @@ -14318,14 +14318,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 { @@ -14339,6 +14339,8 @@ 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 */ @@ -14347,8 +14349,6 @@ 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 { @@ -14410,6 +14410,8 @@ 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. */ @@ -14418,8 +14420,6 @@ 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; @@ -14535,14 +14535,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; @@ -14550,14 +14550,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 { @@ -14571,6 +14571,8 @@ 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 */ @@ -14581,8 +14583,6 @@ 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 { @@ -14596,6 +14596,8 @@ 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 */ @@ -14604,8 +14606,6 @@ 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 { @@ -14614,10 +14614,10 @@ export interface Response$patchApiextensionsV1beta1CustomResourceDefinition$Stat "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; } export interface Parameter$readApiextensionsV1beta1CustomResourceDefinitionStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CustomResourceDefinition */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiextensionsV1beta1CustomResourceDefinitionStatus$Status$200 { "application/json": Schemas.io$k8s$apiextensions$apiserver$pkg$apis$apiextensions$v1beta1$CustomResourceDefinition; @@ -14625,14 +14625,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 { @@ -14646,6 +14646,8 @@ 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 */ @@ -14654,8 +14656,6 @@ 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 { @@ -14717,6 +14717,8 @@ 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. */ @@ -14725,8 +14727,6 @@ 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; @@ -14847,14 +14847,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; @@ -14862,14 +14862,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 { @@ -14883,6 +14883,8 @@ 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 */ @@ -14893,8 +14895,6 @@ 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 { @@ -14908,6 +14908,8 @@ 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 */ @@ -14916,8 +14918,6 @@ 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 { @@ -14926,10 +14926,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 { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the APIService */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiregistrationV1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1$APIService; @@ -14937,14 +14937,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 { @@ -14958,6 +14958,8 @@ 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 */ @@ -14966,8 +14968,6 @@ 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 { @@ -15029,6 +15029,8 @@ 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. */ @@ -15037,8 +15039,6 @@ 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; @@ -15154,14 +15154,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; @@ -15169,14 +15169,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 { @@ -15190,6 +15190,8 @@ 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 */ @@ -15200,8 +15202,6 @@ 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 { @@ -15215,6 +15215,8 @@ 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 */ @@ -15223,8 +15225,6 @@ 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 { @@ -15233,10 +15233,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 { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the APIService */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readApiregistrationV1beta1APIServiceStatus$Status$200 { "application/json": Schemas.io$k8s$kube$aggregator$pkg$apis$apiregistration$v1beta1$APIService; @@ -15244,14 +15244,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 { @@ -15265,6 +15265,8 @@ 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 */ @@ -15273,8 +15275,6 @@ 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 { @@ -15336,6 +15336,8 @@ 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. */ @@ -15344,8 +15346,6 @@ 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; @@ -15470,6 +15470,8 @@ 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. */ @@ -15496,8 +15498,6 @@ 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; @@ -15507,14 +15507,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 { @@ -15533,6 +15533,8 @@ 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. */ @@ -15567,8 +15569,6 @@ 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 { @@ -15577,16 +15577,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; @@ -15594,16 +15594,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 { @@ -15617,6 +15617,10 @@ 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 */ @@ -15627,10 +15631,6 @@ 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 { @@ -15644,6 +15644,10 @@ 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 */ @@ -15652,10 +15656,6 @@ 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 { @@ -15664,6 +15664,8 @@ 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. */ @@ -15690,8 +15692,6 @@ 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; @@ -15701,14 +15701,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 { @@ -15727,6 +15727,8 @@ 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. */ @@ -15761,8 +15763,6 @@ 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 { @@ -15771,16 +15771,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; @@ -15788,16 +15788,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 { @@ -15811,6 +15811,10 @@ 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 */ @@ -15821,10 +15825,6 @@ 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 { @@ -15838,6 +15838,10 @@ 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 */ @@ -15846,10 +15850,6 @@ 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 { @@ -15858,12 +15858,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; @@ -15871,16 +15871,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 { @@ -15894,6 +15894,10 @@ 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 */ @@ -15902,10 +15906,6 @@ 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 { @@ -15914,6 +15914,8 @@ 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. */ @@ -15940,8 +15942,6 @@ 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; @@ -15951,14 +15951,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 { @@ -15977,6 +15977,8 @@ 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. */ @@ -16011,8 +16013,6 @@ 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 { @@ -16021,16 +16021,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; @@ -16038,16 +16038,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 { @@ -16061,6 +16061,10 @@ 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 */ @@ -16071,10 +16075,6 @@ 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 { @@ -16088,6 +16088,10 @@ 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 */ @@ -16096,10 +16100,6 @@ 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 { @@ -16108,12 +16108,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; @@ -16121,16 +16121,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 { @@ -16144,6 +16144,10 @@ 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 */ @@ -16152,10 +16156,6 @@ 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 { @@ -16164,12 +16164,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; @@ -16177,16 +16177,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 { @@ -16200,6 +16200,10 @@ 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 */ @@ -16208,10 +16212,6 @@ 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 { @@ -16220,6 +16220,8 @@ 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. */ @@ -16246,8 +16248,6 @@ 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; @@ -16257,14 +16257,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 { @@ -16283,6 +16283,8 @@ 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. */ @@ -16317,8 +16319,6 @@ 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 { @@ -16327,16 +16327,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; @@ -16344,16 +16344,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 { @@ -16367,6 +16367,10 @@ 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 */ @@ -16377,10 +16381,6 @@ 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 { @@ -16394,6 +16394,10 @@ 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 */ @@ -16402,10 +16406,6 @@ 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 { @@ -16414,12 +16414,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; @@ -16427,16 +16427,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 { @@ -16450,6 +16450,10 @@ 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 */ @@ -16458,10 +16462,6 @@ 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 { @@ -16470,12 +16470,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; @@ -16483,16 +16483,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 { @@ -16506,6 +16506,10 @@ 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 */ @@ -16514,10 +16518,6 @@ 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 { @@ -16526,6 +16526,8 @@ 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. */ @@ -16552,8 +16554,6 @@ 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; @@ -16563,14 +16563,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 { @@ -16589,6 +16589,8 @@ 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. */ @@ -16623,8 +16625,6 @@ 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 { @@ -16633,16 +16633,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; @@ -16650,16 +16650,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 { @@ -16673,6 +16673,10 @@ 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 */ @@ -16683,10 +16687,6 @@ 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 { @@ -16700,6 +16700,10 @@ 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 */ @@ -16708,10 +16712,6 @@ 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 { @@ -16720,12 +16720,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; @@ -16733,16 +16733,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 { @@ -16756,6 +16756,10 @@ 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 */ @@ -16764,10 +16768,6 @@ 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 { @@ -16776,12 +16776,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; @@ -16789,16 +16789,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 { @@ -16812,6 +16812,10 @@ 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 */ @@ -16820,10 +16824,6 @@ 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 { @@ -17025,6 +17025,8 @@ 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. */ @@ -17033,8 +17035,6 @@ 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; @@ -17062,6 +17062,10 @@ 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. */ @@ -17070,10 +17074,6 @@ 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; @@ -17101,6 +17101,8 @@ 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. */ @@ -17109,8 +17111,6 @@ 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; @@ -17138,6 +17138,10 @@ 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. */ @@ -17146,10 +17150,6 @@ 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; @@ -17177,6 +17177,8 @@ 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. */ @@ -17185,8 +17187,6 @@ 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; @@ -17214,6 +17214,10 @@ 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. */ @@ -17222,10 +17226,6 @@ 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; @@ -17253,6 +17253,8 @@ 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. */ @@ -17261,8 +17263,6 @@ 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; @@ -17290,6 +17290,10 @@ 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. */ @@ -17298,10 +17302,6 @@ 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; @@ -17329,6 +17329,8 @@ 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. */ @@ -17337,8 +17339,6 @@ 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; @@ -17366,6 +17366,10 @@ 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. */ @@ -17374,10 +17378,6 @@ 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; @@ -17568,14 +17568,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; @@ -17583,14 +17583,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 { @@ -17604,6 +17604,8 @@ 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 */ @@ -17614,8 +17616,6 @@ 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 { @@ -17629,6 +17629,8 @@ 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 */ @@ -17637,8 +17639,6 @@ 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 { @@ -17700,6 +17700,8 @@ 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. */ @@ -17708,8 +17710,6 @@ 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; @@ -17800,10 +17800,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; - /** If 'true', then the output is pretty printed. */ - pretty?: 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$createAuthorizationV1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1$LocalSubjectAccessReview; @@ -17911,10 +17911,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; - /** If 'true', then the output is pretty printed. */ - pretty?: 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$createAuthorizationV1beta1NamespacedLocalSubjectAccessReview { "*/*": Schemas.io$k8s$api$authorization$v1beta1$LocalSubjectAccessReview; @@ -18058,6 +18058,8 @@ 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. */ @@ -18084,8 +18086,6 @@ 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; @@ -18095,14 +18095,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 { @@ -18121,6 +18121,8 @@ 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. */ @@ -18155,8 +18157,6 @@ 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 { @@ -18165,16 +18165,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; @@ -18182,16 +18182,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 { @@ -18205,6 +18205,10 @@ 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 */ @@ -18215,10 +18219,6 @@ 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 { @@ -18232,6 +18232,10 @@ 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 */ @@ -18240,10 +18244,6 @@ 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 { @@ -18252,12 +18252,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; @@ -18265,16 +18265,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 { @@ -18288,6 +18288,10 @@ 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 */ @@ -18296,10 +18300,6 @@ 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 { @@ -18361,6 +18361,8 @@ 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. */ @@ -18369,8 +18371,6 @@ 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; @@ -18398,6 +18398,10 @@ 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. */ @@ -18406,10 +18410,6 @@ 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; @@ -18459,6 +18459,8 @@ 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. */ @@ -18485,8 +18487,6 @@ 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; @@ -18496,14 +18496,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 { @@ -18522,6 +18522,8 @@ 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. */ @@ -18556,8 +18558,6 @@ 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 { @@ -18566,16 +18566,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; @@ -18583,16 +18583,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 { @@ -18606,6 +18606,10 @@ 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 */ @@ -18616,10 +18620,6 @@ 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 { @@ -18633,6 +18633,10 @@ 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 */ @@ -18641,10 +18645,6 @@ 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 { @@ -18653,12 +18653,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; @@ -18666,16 +18666,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 { @@ -18689,6 +18689,10 @@ 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 */ @@ -18697,10 +18701,6 @@ 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 { @@ -18762,6 +18762,8 @@ 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. */ @@ -18770,8 +18772,6 @@ 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; @@ -18799,6 +18799,10 @@ 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. */ @@ -18807,10 +18811,6 @@ 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; @@ -18860,6 +18860,8 @@ 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. */ @@ -18886,8 +18888,6 @@ 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; @@ -18897,14 +18897,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 { @@ -18923,6 +18923,8 @@ 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. */ @@ -18957,8 +18959,6 @@ 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 { @@ -18967,16 +18967,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; @@ -18984,16 +18984,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 { @@ -19007,6 +19007,10 @@ 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 */ @@ -19017,10 +19021,6 @@ 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 { @@ -19034,6 +19034,10 @@ 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 */ @@ -19042,10 +19046,6 @@ 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 { @@ -19054,12 +19054,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; @@ -19067,16 +19067,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 { @@ -19090,6 +19090,10 @@ 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 */ @@ -19098,10 +19102,6 @@ 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 { @@ -19163,6 +19163,8 @@ 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. */ @@ -19171,8 +19173,6 @@ 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; @@ -19200,6 +19200,10 @@ 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. */ @@ -19208,10 +19212,6 @@ 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; @@ -19266,6 +19266,8 @@ 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. */ @@ -19292,8 +19294,6 @@ 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; @@ -19303,14 +19303,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 { @@ -19329,6 +19329,8 @@ 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. */ @@ -19363,8 +19365,6 @@ 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 { @@ -19373,16 +19373,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; @@ -19390,16 +19390,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 { @@ -19413,6 +19413,10 @@ 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 */ @@ -19423,10 +19427,6 @@ 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 { @@ -19440,6 +19440,10 @@ 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 */ @@ -19448,10 +19452,6 @@ 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 { @@ -19460,12 +19460,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; @@ -19473,16 +19473,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 { @@ -19496,6 +19496,10 @@ 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 */ @@ -19504,10 +19508,6 @@ 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 { @@ -19569,6 +19569,8 @@ 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. */ @@ -19577,8 +19579,6 @@ 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; @@ -19606,6 +19606,10 @@ 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. */ @@ -19614,10 +19618,6 @@ 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; @@ -19667,6 +19667,8 @@ 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. */ @@ -19693,8 +19695,6 @@ 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; @@ -19704,14 +19704,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 { @@ -19730,6 +19730,8 @@ 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. */ @@ -19764,8 +19766,6 @@ 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 { @@ -19774,16 +19774,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; @@ -19791,16 +19791,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 { @@ -19814,6 +19814,10 @@ 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 */ @@ -19824,10 +19828,6 @@ 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 { @@ -19841,6 +19841,10 @@ 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 */ @@ -19849,10 +19853,6 @@ 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 { @@ -19861,12 +19861,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; @@ -19874,16 +19874,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 { @@ -19897,6 +19897,10 @@ 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 */ @@ -19905,10 +19909,6 @@ 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 { @@ -19970,6 +19970,8 @@ 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. */ @@ -19978,8 +19980,6 @@ 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; @@ -20007,6 +20007,10 @@ 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. */ @@ -20015,10 +20019,6 @@ 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; @@ -20068,6 +20068,8 @@ 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. */ @@ -20094,8 +20096,6 @@ 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; @@ -20105,14 +20105,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 { @@ -20131,6 +20131,8 @@ 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. */ @@ -20165,8 +20167,6 @@ 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 { @@ -20175,16 +20175,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; @@ -20192,16 +20192,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 { @@ -20215,6 +20215,10 @@ 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 */ @@ -20225,10 +20229,6 @@ 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 { @@ -20242,6 +20242,10 @@ 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 */ @@ -20250,10 +20254,6 @@ 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 { @@ -20262,12 +20262,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; @@ -20275,16 +20275,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 { @@ -20298,6 +20298,10 @@ 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 */ @@ -20306,10 +20310,6 @@ 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 { @@ -20371,6 +20371,8 @@ 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. */ @@ -20379,8 +20381,6 @@ 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; @@ -20408,6 +20408,10 @@ 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. */ @@ -20416,10 +20420,6 @@ 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; @@ -20540,14 +20540,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; @@ -20555,14 +20555,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 { @@ -20576,6 +20576,8 @@ 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 */ @@ -20586,8 +20588,6 @@ 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 { @@ -20601,6 +20601,8 @@ 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 */ @@ -20609,8 +20611,6 @@ 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 { @@ -20623,10 +20623,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; - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CertificateSigningRequest */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export type RequestBody$replaceCertificatesV1beta1CertificateSigningRequestApproval = RequestBodies.io$k8s$api$certificates$v1beta1$CertificateSigningRequest.Content; export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApproval$Status$200 { @@ -20640,10 +20640,10 @@ export interface Response$replaceCertificatesV1beta1CertificateSigningRequestApp "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; } export interface Parameter$readCertificatesV1beta1CertificateSigningRequestStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the CertificateSigningRequest */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readCertificatesV1beta1CertificateSigningRequestStatus$Status$200 { "application/json": Schemas.io$k8s$api$certificates$v1beta1$CertificateSigningRequest; @@ -20651,14 +20651,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 { @@ -20672,6 +20672,8 @@ 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 */ @@ -20680,8 +20682,6 @@ 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 { @@ -20743,6 +20743,8 @@ 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. */ @@ -20751,8 +20753,6 @@ 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; @@ -20807,6 +20807,8 @@ 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. */ @@ -20833,8 +20835,6 @@ 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; @@ -20844,14 +20844,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 { @@ -20870,6 +20870,8 @@ 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. */ @@ -20904,8 +20906,6 @@ 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 { @@ -20914,16 +20914,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; @@ -20931,16 +20931,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 { @@ -20954,6 +20954,10 @@ 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 */ @@ -20964,10 +20968,6 @@ 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 { @@ -20981,6 +20981,10 @@ 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 */ @@ -20989,10 +20993,6 @@ 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 { @@ -21054,6 +21054,8 @@ 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. */ @@ -21062,8 +21064,6 @@ 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; @@ -21091,6 +21091,10 @@ 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. */ @@ -21099,10 +21103,6 @@ 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; @@ -21152,6 +21152,8 @@ 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. */ @@ -21178,8 +21180,6 @@ 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; @@ -21189,14 +21189,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 { @@ -21215,6 +21215,8 @@ 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. */ @@ -21249,8 +21251,6 @@ 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 { @@ -21259,16 +21259,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; @@ -21276,16 +21276,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 { @@ -21299,6 +21299,10 @@ 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 */ @@ -21309,10 +21313,6 @@ 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 { @@ -21326,6 +21326,10 @@ 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 */ @@ -21334,10 +21338,6 @@ 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 { @@ -21399,6 +21399,8 @@ 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. */ @@ -21407,8 +21409,6 @@ 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; @@ -21436,6 +21436,10 @@ 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. */ @@ -21444,10 +21448,6 @@ 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; @@ -21502,6 +21502,8 @@ 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. */ @@ -21528,8 +21530,6 @@ 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; @@ -21539,14 +21539,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 { @@ -21565,6 +21565,8 @@ 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. */ @@ -21599,8 +21601,6 @@ 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 { @@ -21609,16 +21609,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; @@ -21626,16 +21626,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 { @@ -21649,6 +21649,10 @@ 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 */ @@ -21659,10 +21663,6 @@ 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 { @@ -21676,6 +21676,10 @@ 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 */ @@ -21684,10 +21688,6 @@ 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 { @@ -21749,6 +21749,8 @@ 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. */ @@ -21757,8 +21759,6 @@ 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; @@ -21786,6 +21786,10 @@ 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. */ @@ -21794,10 +21798,6 @@ 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; @@ -21852,6 +21852,8 @@ 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. */ @@ -21878,8 +21880,6 @@ 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; @@ -21889,14 +21889,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 { @@ -21915,6 +21915,8 @@ 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. */ @@ -21949,8 +21951,6 @@ 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 { @@ -21959,16 +21959,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; @@ -21976,16 +21976,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 { @@ -21999,6 +21999,10 @@ 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 */ @@ -22009,10 +22013,6 @@ 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 { @@ -22026,6 +22026,10 @@ 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 */ @@ -22034,10 +22038,6 @@ 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 { @@ -22099,6 +22099,8 @@ 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. */ @@ -22107,8 +22109,6 @@ 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; @@ -22136,6 +22136,10 @@ 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. */ @@ -22144,10 +22148,6 @@ 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; @@ -22202,6 +22202,8 @@ 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. */ @@ -22228,8 +22230,6 @@ 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; @@ -22239,14 +22239,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 { @@ -22265,6 +22265,8 @@ 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. */ @@ -22299,8 +22301,6 @@ 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 { @@ -22309,16 +22309,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; @@ -22326,16 +22326,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 { @@ -22349,6 +22349,10 @@ 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 */ @@ -22359,10 +22363,6 @@ 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 { @@ -22376,6 +22376,10 @@ 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 */ @@ -22384,10 +22388,6 @@ 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 { @@ -22396,12 +22396,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; @@ -22409,16 +22409,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 { @@ -22432,6 +22432,10 @@ 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 */ @@ -22440,10 +22444,6 @@ 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 { @@ -22505,6 +22505,8 @@ 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. */ @@ -22513,8 +22515,6 @@ 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; @@ -22542,6 +22542,10 @@ 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. */ @@ -22550,10 +22554,6 @@ 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; @@ -22674,14 +22674,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; @@ -22689,14 +22689,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 { @@ -22710,6 +22710,8 @@ 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 */ @@ -22720,8 +22722,6 @@ 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 { @@ -22735,6 +22735,8 @@ 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 */ @@ -22743,8 +22745,6 @@ 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 { @@ -22753,10 +22753,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1FlowSchema$Status$200 "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; } export interface Parameter$readFlowcontrolApiserverV1alpha1FlowSchemaStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the FlowSchema */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readFlowcontrolApiserverV1alpha1FlowSchemaStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$FlowSchema; @@ -22764,14 +22764,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 { @@ -22785,6 +22785,8 @@ 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 */ @@ -22793,8 +22795,6 @@ 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 { @@ -22904,14 +22904,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; @@ -22919,14 +22919,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 { @@ -22940,6 +22940,8 @@ 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 */ @@ -22950,8 +22952,6 @@ 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 { @@ -22965,6 +22965,8 @@ 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 */ @@ -22973,8 +22975,6 @@ 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 { @@ -22983,10 +22983,10 @@ export interface Response$patchFlowcontrolApiserverV1alpha1PriorityLevelConfigur "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; } export interface Parameter$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the PriorityLevelConfiguration */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus$Status$200 { "application/json": Schemas.io$k8s$api$flowcontrol$v1alpha1$PriorityLevelConfiguration; @@ -22994,14 +22994,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 { @@ -23015,6 +23015,8 @@ 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 */ @@ -23023,8 +23025,6 @@ 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 { @@ -23086,6 +23086,8 @@ 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. */ @@ -23094,8 +23096,6 @@ 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; @@ -23158,6 +23158,8 @@ 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. */ @@ -23166,8 +23168,6 @@ 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; @@ -23187,6 +23187,8 @@ 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. */ @@ -23213,8 +23215,6 @@ 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; @@ -23224,14 +23224,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 { @@ -23250,6 +23250,8 @@ 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. */ @@ -23284,8 +23286,6 @@ 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 { @@ -23294,16 +23294,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; @@ -23311,16 +23311,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 { @@ -23334,6 +23334,10 @@ 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 */ @@ -23344,10 +23348,6 @@ 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 { @@ -23361,6 +23361,10 @@ 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 */ @@ -23369,10 +23373,6 @@ 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 { @@ -23434,6 +23434,8 @@ 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. */ @@ -23442,8 +23444,6 @@ 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; @@ -23471,6 +23471,10 @@ 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. */ @@ -23479,10 +23483,6 @@ 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; @@ -23633,14 +23633,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; @@ -23648,14 +23648,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 { @@ -23669,6 +23669,8 @@ 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 */ @@ -23679,8 +23681,6 @@ 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 { @@ -23694,6 +23694,8 @@ 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 */ @@ -23702,8 +23704,6 @@ 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 { @@ -23747,6 +23747,8 @@ 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. */ @@ -23773,8 +23775,6 @@ 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; @@ -23784,14 +23784,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 { @@ -23810,6 +23810,8 @@ 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. */ @@ -23844,8 +23846,6 @@ 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 { @@ -23854,16 +23854,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; @@ -23871,16 +23871,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 { @@ -23894,6 +23894,10 @@ 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 */ @@ -23904,10 +23908,6 @@ 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 { @@ -23921,6 +23921,10 @@ 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 */ @@ -23929,10 +23933,6 @@ 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 { @@ -23941,12 +23941,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; @@ -23954,16 +23954,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 { @@ -23977,6 +23977,10 @@ 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 */ @@ -23985,10 +23989,6 @@ 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 { @@ -24050,6 +24050,8 @@ 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. */ @@ -24058,8 +24060,6 @@ 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; @@ -24122,6 +24122,8 @@ 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. */ @@ -24130,8 +24132,6 @@ 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; @@ -24159,6 +24159,10 @@ 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. */ @@ -24167,10 +24171,6 @@ 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; @@ -24291,14 +24291,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; @@ -24306,14 +24306,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 { @@ -24327,6 +24327,8 @@ 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 */ @@ -24337,8 +24339,6 @@ 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 { @@ -24352,6 +24352,8 @@ 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 */ @@ -24360,8 +24362,6 @@ 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 { @@ -24423,6 +24423,8 @@ 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. */ @@ -24431,8 +24433,6 @@ 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; @@ -24548,14 +24548,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; @@ -24563,14 +24563,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 { @@ -24584,6 +24584,8 @@ 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 */ @@ -24594,8 +24596,6 @@ 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 { @@ -24609,6 +24609,8 @@ 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 */ @@ -24617,8 +24619,6 @@ 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 { @@ -24680,6 +24680,8 @@ 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. */ @@ -24688,8 +24690,6 @@ 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; @@ -24709,6 +24709,8 @@ 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. */ @@ -24735,8 +24737,6 @@ 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; @@ -24746,14 +24746,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 { @@ -24772,6 +24772,8 @@ 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. */ @@ -24806,8 +24808,6 @@ 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 { @@ -24816,16 +24816,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; @@ -24833,16 +24833,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 { @@ -24856,6 +24856,10 @@ 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 */ @@ -24866,10 +24870,6 @@ 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 { @@ -24883,6 +24883,10 @@ 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 */ @@ -24891,10 +24895,6 @@ 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 { @@ -24903,12 +24903,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; @@ -24916,16 +24916,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 { @@ -24939,6 +24939,10 @@ 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 */ @@ -24947,10 +24951,6 @@ 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 { @@ -25095,14 +25095,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; @@ -25110,14 +25110,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 { @@ -25131,6 +25131,8 @@ 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 */ @@ -25141,8 +25143,6 @@ 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 { @@ -25156,6 +25156,8 @@ 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 */ @@ -25164,8 +25166,6 @@ 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 { @@ -25192,6 +25192,8 @@ 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. */ @@ -25200,8 +25202,6 @@ 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; @@ -25229,6 +25229,10 @@ 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. */ @@ -25237,10 +25241,6 @@ 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; @@ -25338,6 +25338,8 @@ 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. */ @@ -25346,8 +25348,6 @@ 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; @@ -25468,10 +25468,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRoleBinding$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRoleBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRoleBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRoleBinding; @@ -25479,14 +25479,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 { @@ -25500,6 +25500,8 @@ 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 */ @@ -25510,8 +25512,6 @@ 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 { @@ -25525,6 +25525,8 @@ 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 */ @@ -25533,8 +25535,6 @@ 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 { @@ -25644,10 +25644,10 @@ export interface Response$deleteRbacAuthorizationV1CollectionClusterRole$Status$ "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1ClusterRole { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRole */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1$ClusterRole; @@ -25655,14 +25655,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 { @@ -25676,6 +25676,8 @@ 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 */ @@ -25686,8 +25688,6 @@ 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 { @@ -25701,6 +25701,8 @@ 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 */ @@ -25709,8 +25711,6 @@ 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 { @@ -25719,6 +25719,8 @@ 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. */ @@ -25745,8 +25747,6 @@ 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; @@ -25756,14 +25756,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 { @@ -25782,6 +25782,8 @@ 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. */ @@ -25816,8 +25818,6 @@ 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 { @@ -25826,12 +25826,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; @@ -25839,16 +25839,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 { @@ -25862,6 +25862,10 @@ 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 */ @@ -25872,10 +25876,6 @@ 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 { @@ -25889,6 +25889,10 @@ 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 */ @@ -25897,10 +25901,6 @@ 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 { @@ -25909,6 +25909,8 @@ 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. */ @@ -25935,8 +25937,6 @@ 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; @@ -25946,14 +25946,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 { @@ -25972,6 +25972,8 @@ 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. */ @@ -26006,8 +26008,6 @@ 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 { @@ -26016,12 +26016,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; @@ -26029,16 +26029,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 { @@ -26052,6 +26052,10 @@ 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 */ @@ -26062,10 +26066,6 @@ 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 { @@ -26079,6 +26079,10 @@ 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 */ @@ -26087,10 +26091,6 @@ 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 { @@ -26222,6 +26222,8 @@ 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. */ @@ -26230,8 +26232,6 @@ 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; @@ -26294,6 +26294,8 @@ 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. */ @@ -26302,8 +26304,6 @@ 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; @@ -26331,6 +26331,8 @@ 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. */ @@ -26339,8 +26341,6 @@ 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; @@ -26368,6 +26368,10 @@ 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. */ @@ -26376,10 +26380,6 @@ 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; @@ -26407,6 +26407,8 @@ 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. */ @@ -26415,8 +26417,6 @@ 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; @@ -26444,6 +26444,10 @@ 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. */ @@ -26452,10 +26456,6 @@ 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; @@ -26641,10 +26641,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRoleBi "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRoleBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRoleBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRoleBinding; @@ -26652,14 +26652,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 { @@ -26673,6 +26673,8 @@ 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 */ @@ -26683,8 +26685,6 @@ 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 { @@ -26698,6 +26698,8 @@ 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 */ @@ -26706,8 +26708,6 @@ 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 { @@ -26817,10 +26817,10 @@ export interface Response$deleteRbacAuthorizationV1alpha1CollectionClusterRole$S "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1alpha1ClusterRole { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRole */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1alpha1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1alpha1$ClusterRole; @@ -26828,14 +26828,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 { @@ -26849,6 +26849,8 @@ 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 */ @@ -26859,8 +26861,6 @@ 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 { @@ -26874,6 +26874,8 @@ 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 */ @@ -26882,8 +26884,6 @@ 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 { @@ -26892,6 +26892,8 @@ 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. */ @@ -26918,8 +26920,6 @@ 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; @@ -26929,14 +26929,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 { @@ -26955,6 +26955,8 @@ 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. */ @@ -26989,8 +26991,6 @@ 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 { @@ -26999,12 +26999,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; @@ -27012,16 +27012,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 { @@ -27035,6 +27035,10 @@ 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 */ @@ -27045,10 +27049,6 @@ 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 { @@ -27062,6 +27062,10 @@ 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 */ @@ -27070,10 +27074,6 @@ 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 { @@ -27082,6 +27082,8 @@ 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. */ @@ -27108,8 +27110,6 @@ 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; @@ -27119,14 +27119,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 { @@ -27145,6 +27145,8 @@ 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. */ @@ -27179,8 +27181,6 @@ 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 { @@ -27189,12 +27189,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; @@ -27202,16 +27202,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 { @@ -27225,6 +27225,10 @@ 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 */ @@ -27235,10 +27239,6 @@ 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 { @@ -27252,6 +27252,10 @@ 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 */ @@ -27260,10 +27264,6 @@ 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 { @@ -27395,6 +27395,8 @@ 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. */ @@ -27403,8 +27405,6 @@ 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; @@ -27467,6 +27467,8 @@ 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. */ @@ -27475,8 +27477,6 @@ 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; @@ -27504,6 +27504,8 @@ 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. */ @@ -27512,8 +27514,6 @@ 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; @@ -27541,6 +27541,10 @@ 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. */ @@ -27549,10 +27553,6 @@ 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; @@ -27580,6 +27580,8 @@ 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. */ @@ -27588,8 +27590,6 @@ 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; @@ -27617,6 +27617,10 @@ 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. */ @@ -27625,10 +27629,6 @@ 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; @@ -27814,10 +27814,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRoleBin "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRoleBinding { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRoleBinding */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRoleBinding$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRoleBinding; @@ -27825,14 +27825,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 { @@ -27846,6 +27846,8 @@ 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 */ @@ -27856,8 +27858,6 @@ 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 { @@ -27871,6 +27871,8 @@ 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 */ @@ -27879,8 +27881,6 @@ 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 { @@ -27990,10 +27990,10 @@ export interface Response$deleteRbacAuthorizationV1beta1CollectionClusterRole$St "application/vnd.kubernetes.protobuf": Schemas.io$k8s$apimachinery$pkg$apis$meta$v1$Status; } export interface Parameter$readRbacAuthorizationV1beta1ClusterRole { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the ClusterRole */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readRbacAuthorizationV1beta1ClusterRole$Status$200 { "application/json": Schemas.io$k8s$api$rbac$v1beta1$ClusterRole; @@ -28001,14 +28001,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 { @@ -28022,6 +28022,8 @@ 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 */ @@ -28032,8 +28034,6 @@ 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 { @@ -28047,6 +28047,8 @@ 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 */ @@ -28055,8 +28057,6 @@ 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 { @@ -28065,6 +28065,8 @@ 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. */ @@ -28091,8 +28093,6 @@ 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; @@ -28102,14 +28102,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 { @@ -28128,6 +28128,8 @@ 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. */ @@ -28162,8 +28164,6 @@ 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 { @@ -28172,12 +28172,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; @@ -28185,16 +28185,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 { @@ -28208,6 +28208,10 @@ 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 */ @@ -28218,10 +28222,6 @@ 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 { @@ -28235,6 +28235,10 @@ 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 */ @@ -28243,10 +28247,6 @@ 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 { @@ -28255,6 +28255,8 @@ 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. */ @@ -28281,8 +28283,6 @@ 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; @@ -28292,14 +28292,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 { @@ -28318,6 +28318,8 @@ 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. */ @@ -28352,8 +28354,6 @@ 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 { @@ -28362,12 +28362,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; @@ -28375,16 +28375,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 { @@ -28398,6 +28398,10 @@ 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 */ @@ -28408,10 +28412,6 @@ 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 { @@ -28425,6 +28425,10 @@ 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 */ @@ -28433,10 +28437,6 @@ 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 { @@ -28568,6 +28568,8 @@ 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. */ @@ -28576,8 +28578,6 @@ 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; @@ -28640,6 +28640,8 @@ 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. */ @@ -28648,8 +28650,6 @@ 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; @@ -28677,6 +28677,8 @@ 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. */ @@ -28685,8 +28687,6 @@ 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; @@ -28714,6 +28714,10 @@ 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. */ @@ -28722,10 +28726,6 @@ 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; @@ -28753,6 +28753,8 @@ 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. */ @@ -28761,8 +28763,6 @@ 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; @@ -28790,6 +28790,10 @@ 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. */ @@ -28798,10 +28802,6 @@ 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; @@ -28992,14 +28992,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; @@ -29007,14 +29007,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 { @@ -29028,6 +29028,8 @@ 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 */ @@ -29038,8 +29040,6 @@ 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 { @@ -29053,6 +29053,8 @@ 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 */ @@ -29061,8 +29063,6 @@ 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 { @@ -29124,6 +29124,8 @@ 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. */ @@ -29132,8 +29134,6 @@ 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; @@ -29249,14 +29249,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; @@ -29264,14 +29264,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 { @@ -29285,6 +29285,8 @@ 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 */ @@ -29295,8 +29297,6 @@ 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 { @@ -29310,6 +29310,8 @@ 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 */ @@ -29318,8 +29320,6 @@ 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 { @@ -29381,6 +29381,8 @@ 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. */ @@ -29389,8 +29391,6 @@ 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; @@ -29506,14 +29506,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; @@ -29521,14 +29521,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 { @@ -29542,6 +29542,8 @@ 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 */ @@ -29552,8 +29554,6 @@ 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 { @@ -29567,6 +29567,8 @@ 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 */ @@ -29575,8 +29577,6 @@ 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 { @@ -29638,6 +29638,8 @@ 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. */ @@ -29646,8 +29648,6 @@ 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; @@ -29667,6 +29667,8 @@ 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. */ @@ -29693,8 +29695,6 @@ 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; @@ -29704,14 +29704,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 { @@ -29730,6 +29730,8 @@ 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. */ @@ -29764,8 +29766,6 @@ 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 { @@ -29774,16 +29774,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; @@ -29791,16 +29791,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 { @@ -29814,6 +29814,10 @@ 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 */ @@ -29824,10 +29828,6 @@ 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 { @@ -29841,6 +29841,10 @@ 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 */ @@ -29849,10 +29853,6 @@ 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 { @@ -29914,6 +29914,8 @@ 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. */ @@ -29922,8 +29924,6 @@ 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; @@ -29951,6 +29951,10 @@ 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. */ @@ -29959,10 +29963,6 @@ 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; @@ -30118,14 +30118,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; @@ -30133,14 +30133,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 { @@ -30154,6 +30154,8 @@ 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 */ @@ -30164,8 +30166,6 @@ 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 { @@ -30179,6 +30179,8 @@ 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 */ @@ -30187,8 +30189,6 @@ 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 { @@ -30298,14 +30298,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; @@ -30313,14 +30313,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 { @@ -30334,6 +30334,8 @@ 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 */ @@ -30344,8 +30346,6 @@ 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 { @@ -30359,6 +30359,8 @@ 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 */ @@ -30367,8 +30369,6 @@ 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 { @@ -30478,14 +30478,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; @@ -30493,14 +30493,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 { @@ -30514,6 +30514,8 @@ 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 */ @@ -30524,8 +30526,6 @@ 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 { @@ -30539,6 +30539,8 @@ 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 */ @@ -30547,8 +30549,6 @@ 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 { @@ -30658,14 +30658,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; @@ -30673,14 +30673,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 { @@ -30694,6 +30694,8 @@ 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 */ @@ -30704,8 +30706,6 @@ 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 { @@ -30719,6 +30719,8 @@ 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 */ @@ -30727,8 +30729,6 @@ 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 { @@ -30737,10 +30737,10 @@ export interface Response$patchStorageV1VolumeAttachment$Status$200 { "application/vnd.kubernetes.protobuf": Schemas.io$k8s$api$storage$v1$VolumeAttachment; } export interface Parameter$readStorageV1VolumeAttachmentStatus { - /** If 'true', then the output is pretty printed. */ - pretty?: string; /** name of the VolumeAttachment */ name: string; + /** If 'true', then the output is pretty printed. */ + pretty?: string; } export interface Response$readStorageV1VolumeAttachmentStatus$Status$200 { "application/json": Schemas.io$k8s$api$storage$v1$VolumeAttachment; @@ -30748,14 +30748,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 { @@ -30769,6 +30769,8 @@ 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 */ @@ -30777,8 +30779,6 @@ 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 { @@ -30840,6 +30840,8 @@ 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. */ @@ -30848,8 +30850,6 @@ 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; @@ -30912,6 +30912,8 @@ 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. */ @@ -30920,8 +30922,6 @@ 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; @@ -30984,6 +30984,8 @@ 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. */ @@ -30992,8 +30994,6 @@ 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; @@ -31056,6 +31056,8 @@ 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. */ @@ -31064,8 +31066,6 @@ 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; @@ -31181,14 +31181,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; @@ -31196,14 +31196,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 { @@ -31217,6 +31217,8 @@ 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 */ @@ -31227,8 +31229,6 @@ 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 { @@ -31242,6 +31242,8 @@ 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 */ @@ -31250,8 +31252,6 @@ 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 { @@ -31313,6 +31313,8 @@ 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. */ @@ -31321,8 +31323,6 @@ 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; @@ -31438,14 +31438,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; @@ -31453,14 +31453,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 { @@ -31474,6 +31474,8 @@ 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 */ @@ -31484,8 +31486,6 @@ 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 { @@ -31499,6 +31499,8 @@ 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 */ @@ -31507,8 +31509,6 @@ 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 { @@ -31618,14 +31618,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; @@ -31633,14 +31633,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 { @@ -31654,6 +31654,8 @@ 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 */ @@ -31664,8 +31666,6 @@ 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 { @@ -31679,6 +31679,8 @@ 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 */ @@ -31687,8 +31689,6 @@ 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 { @@ -31798,14 +31798,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; @@ -31813,14 +31813,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 { @@ -31834,6 +31834,8 @@ 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 */ @@ -31844,8 +31846,6 @@ 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 { @@ -31859,6 +31859,8 @@ 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 */ @@ -31867,8 +31869,6 @@ 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 { @@ -31978,14 +31978,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; @@ -31993,14 +31993,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 { @@ -32014,6 +32014,8 @@ 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 */ @@ -32024,8 +32026,6 @@ 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 { @@ -32039,6 +32039,8 @@ 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 */ @@ -32047,8 +32049,6 @@ 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 { @@ -32110,6 +32110,8 @@ 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. */ @@ -32118,8 +32120,6 @@ 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; @@ -32182,6 +32182,8 @@ 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. */ @@ -32190,8 +32192,6 @@ 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; @@ -32254,6 +32254,8 @@ 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. */ @@ -32262,8 +32264,6 @@ 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; @@ -32326,6 +32326,8 @@ 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. */ @@ -32334,8 +32336,6 @@ 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__/mulit-type-test.domain/apiClient.ts b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/apiClient.ts index 2d356988..323c0b91 100644 --- a/test/__tests__/functional/__snapshots__/mulit-type-test.domain/apiClient.ts +++ b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/apiClient.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.1 // diff --git a/test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts index 8c01fd09..c09582f5 100644 --- a/test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts +++ b/test/__tests__/functional/__snapshots__/mulit-type-test.domain/types.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.1 // diff --git a/test/__tests__/functional/__snapshots__/parameter/path-parameter.json b/test/__tests__/functional/__snapshots__/parameter/path-parameter.json index ee36a22e..887920cf 100644 --- a/test/__tests__/functional/__snapshots__/parameter/path-parameter.json +++ b/test/__tests__/functional/__snapshots__/parameter/path-parameter.json @@ -224,6 +224,94 @@ } } }, + { + "operationId": "getPodProxyWithPath", + "convertedParams": { + "escapedOperationId": "getPodProxyWithPath", + "argumentParamsTypeDeclaration": "Params$getPodProxyWithPath", + "functionName": "getPodProxyWithPath", + "requestContentTypeName": "RequestContentType$getPodProxyWithPath", + "responseContentTypeName": "ResponseContentType$getPodProxyWithPath", + "parameterName": "Parameter$getPodProxyWithPath", + "requestBodyName": "RequestBody$getPodProxyWithPath", + "hasRequestBody": false, + "hasParameter": true, + "pickedParameters": [ + { + "name": "name", + "in": "path" + }, + { + "name": "path", + "in": "path", + "required": true + }, + { + "name": "path", + "in": "query" + } + ], + "requestContentTypes": [], + "responseSuccessNames": [ + "Response$getPodProxyWithPath$Status$200" + ], + "responseFirstSuccessName": "Response$getPodProxyWithPath$Status$200", + "has2OrMoreSuccessNames": false, + "responseErrorNames": [], + "has2OrMoreRequestContentTypes": false, + "successResponseContentTypes": [ + "application/json" + ], + "successResponseFirstContentType": "application/json", + "has2OrMoreSuccessResponseContentTypes": false, + "hasAdditionalHeaders": false, + "hasQueryParameters": true + }, + "operationParams": { + "httpMethod": "get", + "requestUri": "/pods/{name}/proxy/{path}", + "comment": "$ref パラメータで同名の pathパラメータと queryパラメータが競合するケース", + "deprecated": false, + "parameters": [ + { + "in": "path", + "name": "name", + "schema": { + "type": "string" + } + }, + { + "in": "path", + "name": "path", + "required": true, + "description": "URL パスの一部として使用されるパスパラメータ", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "path", + "description": "クエリパラメータとして使用される path(省略可能)", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + } + } + } + }, { "operationId": "getUserPost", "convertedParams": { diff --git a/test/__tests__/functional/__snapshots__/split/apiClient.ts b/test/__tests__/functional/__snapshots__/split/apiClient.ts index 4fb52a4a..c218a6e8 100644 --- a/test/__tests__/functional/__snapshots__/split/apiClient.ts +++ b/test/__tests__/functional/__snapshots__/split/apiClient.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // @@ -45,8 +45,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "from.publishedAt"?: number; "book.name": string; + "from.publishedAt"?: number; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/functional/__snapshots__/split/types.ts b/test/__tests__/functional/__snapshots__/split/types.ts index 517f915b..b8bde156 100644 --- a/test/__tests__/functional/__snapshots__/split/types.ts +++ b/test/__tests__/functional/__snapshots__/split/types.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts b/test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts index b8dd7581..f4e20639 100644 --- a/test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts +++ b/test/__tests__/functional/__snapshots__/template-only/api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/template-only/infer.domain.ts b/test/__tests__/functional/__snapshots__/template-only/infer.domain.ts index 65e99865..9b306a6a 100644 --- a/test/__tests__/functional/__snapshots__/template-only/infer.domain.ts +++ b/test/__tests__/functional/__snapshots__/template-only/infer.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts b/test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts index b98c4ce8..9e55418b 100644 --- a/test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts +++ b/test/__tests__/functional/__snapshots__/template-only/sync-api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts b/test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts index 517f915b..b8bde156 100644 --- a/test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts +++ b/test/__tests__/functional/__snapshots__/typedef-only/api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts b/test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts index 035100ef..02f36ed2 100644 --- a/test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts +++ b/test/__tests__/functional/__snapshots__/typedef-only/infer.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts b/test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts index 3ff215ee..1e79e106 100644 --- a/test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts +++ b/test/__tests__/functional/__snapshots__/typedef-only/json.properties.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.0.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/api.test.domain.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/api.test.domain.ts index e8a7480a..8eeb297d 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template/api.test.domain.ts +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // @@ -331,8 +331,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "from.publishedAt"?: number; "book.name": string; + "from.publishedAt"?: number; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts index 54b8a2b1..4cfd2f17 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/api.v2.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts index f9b1e2e2..51a7ec9e 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/infer.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts index 81d66da7..5624c298 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/path-parameter.ts @@ -1,11 +1,17 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // // +export namespace Parameters { + /** URL パスの一部として使用されるパスパラメータ */ + export type path$as$path$param = string; + /** クエリパラメータとして使用される path(省略可能) */ + export type path$as$query$param = string; +} export interface Parameter$getItemById { id: string; } @@ -16,20 +22,28 @@ 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 { + name: string; path: string; +} +export interface Parameter$getPodProxyWithPath { name: string; + /** URL パスの一部として使用されるパスパラメータ */ + path: Parameters.path$as$path$param; +} +export interface Response$getPodProxyWithPath$Status$200 { + "application/json": string; } export interface Parameter$getUserPost { - include?: string; userId: string; postId: number; + include?: string; } export interface Response$getUserPost$Status$200 { "application/json": { @@ -48,6 +62,10 @@ export interface Params$getNodeProxyWithPath { export interface Params$headNodeProxyWithPath { parameter: Parameter$headNodeProxyWithPath; } +export type ResponseContentType$getPodProxyWithPath = keyof Response$getPodProxyWithPath$Status$200; +export interface Params$getPodProxyWithPath { + parameter: Parameter$getPodProxyWithPath; +} export type ResponseContentType$getUserPost = keyof Response$getUserPost$Status$200; export interface Params$getUserPost { parameter: Parameter$getUserPost; @@ -64,11 +82,12 @@ export interface QueryParameter { export interface QueryParameters { [key: string]: QueryParameter; } -export type SuccessResponses = Response$getItemById$Status$200 | Response$getNodeProxyWithPath$Status$200 | Response$getUserPost$Status$200; +export type SuccessResponses = Response$getItemById$Status$200 | Response$getNodeProxyWithPath$Status$200 | Response$getPodProxyWithPath$Status$200 | Response$getUserPost$Status$200; export namespace ErrorResponse { export type getItemById = void; export type getNodeProxyWithPath = void; export type headNodeProxyWithPath = void; + export type getPodProxyWithPath = void; export type getUserPost = void; } export interface Encoding { @@ -134,6 +153,22 @@ export const createClient = (apiClient: ApiClient, queryParameters: queryParameters }, option); }, + /** $ref パラメータで同名の pathパラメータと queryパラメータが競合するケース */ + getPodProxyWithPath: (params: Params$getPodProxyWithPath, option?: RequestOption): Promise => { + const url = _baseUrl + `/pods/${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); + }, /** 複数のパスパラメータで 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/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts index 92ed226b..19c88572 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/ref-access.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts index f3c4eadf..c30c8a72 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/remote-ref-access.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts b/test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts index d00a41f2..83fc1a0d 100644 --- a/test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts +++ b/test/__tests__/functional/__snapshots__/typedef-with-template/sync-api.test.domain.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // @@ -331,8 +331,8 @@ export interface Response$getReferenceItems$Status$200 { }; } export interface Parameter$searchBook { - "from.publishedAt"?: number; "book.name": string; + "from.publishedAt"?: number; } export interface Response$searchBook$Status$200 { "application/json": { diff --git a/test/__tests__/functional/__snapshots__/unknown.schema.domain/client.ts b/test/__tests__/functional/__snapshots__/unknown.schema.domain/client.ts index dc3e3b9e..e9253206 100644 --- a/test/__tests__/functional/__snapshots__/unknown.schema.domain/client.ts +++ b/test/__tests__/functional/__snapshots__/unknown.schema.domain/client.ts @@ -1,5 +1,5 @@ // -// Generated by @himenon/openapi-typescript-code-generator v2.0.4 +// Generated by @himenon/openapi-typescript-code-generator // // OpenApi : 3.1.0 // diff --git a/test/path-parameter/index.yml b/test/path-parameter/index.yml index 82cd4326..69f1ee1d 100644 --- a/test/path-parameter/index.yml +++ b/test/path-parameter/index.yml @@ -65,6 +65,28 @@ paths: "200": description: OK + # Kubernetes の /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path} に相当するパターン: + # - pathパラメータと queryパラメータが共に $ref で定義され、同名 (path) を持つ + # - pathパラメータの $ref (required:true) が query パラメータの $ref (optional) に上書きされないことを検証する + /pods/{name}/proxy/{path}: + parameters: + - in: path + name: name + schema: + type: string + - $ref: "#/components/parameters/path-as-path-param" + - $ref: "#/components/parameters/path-as-query-param" + get: + operationId: getPodProxyWithPath + summary: $ref パラメータで同名の pathパラメータと queryパラメータが競合するケース + responses: + "200": + description: OK + content: + application/json: + schema: + type: string + /users/{userId}/posts/{postId}: get: operationId: getUserPost @@ -94,3 +116,19 @@ paths: type: string postId: type: integer + +components: + parameters: + path-as-path-param: + in: path + name: path + required: true + description: URL パスの一部として使用されるパスパラメータ + schema: + type: string + path-as-query-param: + in: query + name: path + description: クエリパラメータとして使用される path(省略可能) + schema: + type: string From 684153b49d0e6d10615424fdbb3cf8d48424f978 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 10:47:12 +0900 Subject: [PATCH 6/8] =?UTF-8?q?test(kubernetes):=20Kubernetes=20v1.28.6?= =?UTF-8?q?=E3=81=AEOpenAPI=E4=BB=95=E6=A7=98JSON=E3=83=95=E3=82=A1?= =?UTF-8?q?=E3=82=A4=E3=83=AB=E3=82=92=E3=83=86=E3=82=B9=E3=83=88=E7=94=A8?= =?UTF-8?q?=E3=81=AB=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/kubernetes/openapi-v1.28.6.json | 83677 +++++++++++++++++++++++++ 1 file changed, 83677 insertions(+) create mode 100644 test/kubernetes/openapi-v1.28.6.json diff --git a/test/kubernetes/openapi-v1.28.6.json b/test/kubernetes/openapi-v1.28.6.json new file mode 100644 index 00000000..e27a77f3 --- /dev/null +++ b/test/kubernetes/openapi-v1.28.6.json @@ -0,0 +1,83677 @@ +{ + "openapi": "3.0.0", + "info": { + "title": "Kubernetes", + "version": "unversioned" + }, + "paths": { + "/.well-known/openid-configuration/": { + "get": { + "description": "get service account issuer OpenID configuration, also known as the 'OIDC discovery doc'", + "operationId": "getServiceAccountIssuerOpenIDConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["WellKnown"], + "servers": [] + } + }, + "/api/": { + "get": { + "description": "get available API versions", + "operationId": "getCoreAPIVersions", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core"], + "servers": [] + } + }, + "/api/v1/": { + "get": { + "description": "get available resources", + "operationId": "getCoreV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "servers": [] + } + }, + "/api/v1/componentstatuses": { + "get": { + "description": "list objects of kind ComponentStatus", + "operationId": "listCoreV1ComponentStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatusList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ComponentStatus", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/componentstatuses/{name}": { + "get": { + "description": "read the specified ComponentStatus", + "operationId": "readCoreV1ComponentStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ComponentStatus", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ComponentStatus", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ] + }, + "/api/v1/configmaps": { + "get": { + "description": "list or watch objects of kind ConfigMap", + "operationId": "listCoreV1ConfigMapForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/endpoints": { + "get": { + "description": "list or watch objects of kind Endpoints", + "operationId": "listCoreV1EndpointsForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/events": { + "get": { + "description": "list or watch objects of kind Event", + "operationId": "listCoreV1EventForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/limitranges": { + "get": { + "description": "list or watch objects of kind LimitRange", + "operationId": "listCoreV1LimitRangeForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/namespaces": { + "get": { + "description": "list or watch objects of kind Namespace", + "operationId": "listCoreV1Namespace", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Namespace", + "operationId": "createCoreV1Namespace", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Namespace" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/bindings": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Binding", + "operationId": "createCoreV1NamespacedBinding", + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Binding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Binding", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/configmaps": { + "delete": { + "description": "delete collection of ConfigMap", + "operationId": "deleteCoreV1CollectionNamespacedConfigMap", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ConfigMap", + "operationId": "listCoreV1NamespacedConfigMap", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ConfigMap", + "operationId": "createCoreV1NamespacedConfigMap", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ConfigMap" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/configmaps/{name}": { + "delete": { + "description": "delete a ConfigMap", + "operationId": "deleteCoreV1NamespacedConfigMap", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ConfigMap", + "operationId": "readCoreV1NamespacedConfigMap", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ConfigMap", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ConfigMap", + "operationId": "patchCoreV1NamespacedConfigMap", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ConfigMap", + "operationId": "replaceCoreV1NamespacedConfigMap", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ConfigMap" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/endpoints": { + "delete": { + "description": "delete collection of Endpoints", + "operationId": "deleteCoreV1CollectionNamespacedEndpoints", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Endpoints", + "operationId": "listCoreV1NamespacedEndpoints", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointsList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create Endpoints", + "operationId": "createCoreV1NamespacedEndpoints", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Endpoints" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/endpoints/{name}": { + "delete": { + "description": "delete Endpoints", + "operationId": "deleteCoreV1NamespacedEndpoints", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Endpoints", + "operationId": "readCoreV1NamespacedEndpoints", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Endpoints", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Endpoints", + "operationId": "patchCoreV1NamespacedEndpoints", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Endpoints", + "operationId": "replaceCoreV1NamespacedEndpoints", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Endpoints" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/events": { + "delete": { + "description": "delete collection of Event", + "operationId": "deleteCoreV1CollectionNamespacedEvent", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Event", + "operationId": "listCoreV1NamespacedEvent", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create an Event", + "operationId": "createCoreV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Event" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/events/{name}": { + "delete": { + "description": "delete an Event", + "operationId": "deleteCoreV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Event", + "operationId": "readCoreV1NamespacedEvent", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Event", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Event", + "operationId": "patchCoreV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Event", + "operationId": "replaceCoreV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Event" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/limitranges": { + "delete": { + "description": "delete collection of LimitRange", + "operationId": "deleteCoreV1CollectionNamespacedLimitRange", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind LimitRange", + "operationId": "listCoreV1NamespacedLimitRange", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a LimitRange", + "operationId": "createCoreV1NamespacedLimitRange", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.LimitRange" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/limitranges/{name}": { + "delete": { + "description": "delete a LimitRange", + "operationId": "deleteCoreV1NamespacedLimitRange", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified LimitRange", + "operationId": "readCoreV1NamespacedLimitRange", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the LimitRange", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified LimitRange", + "operationId": "patchCoreV1NamespacedLimitRange", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified LimitRange", + "operationId": "replaceCoreV1NamespacedLimitRange", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.LimitRange" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/persistentvolumeclaims": { + "delete": { + "description": "delete collection of PersistentVolumeClaim", + "operationId": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PersistentVolumeClaim", + "operationId": "listCoreV1NamespacedPersistentVolumeClaim", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PersistentVolumeClaim", + "operationId": "createCoreV1NamespacedPersistentVolumeClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PersistentVolumeClaim" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": { + "delete": { + "description": "delete a PersistentVolumeClaim", + "operationId": "deleteCoreV1NamespacedPersistentVolumeClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified PersistentVolumeClaim", + "operationId": "readCoreV1NamespacedPersistentVolumeClaim", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PersistentVolumeClaim", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PersistentVolumeClaim", + "operationId": "patchCoreV1NamespacedPersistentVolumeClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PersistentVolumeClaim", + "operationId": "replaceCoreV1NamespacedPersistentVolumeClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PersistentVolumeClaim" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": { + "get": { + "description": "read status of the specified PersistentVolumeClaim", + "operationId": "readCoreV1NamespacedPersistentVolumeClaimStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PersistentVolumeClaim", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified PersistentVolumeClaim", + "operationId": "patchCoreV1NamespacedPersistentVolumeClaimStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified PersistentVolumeClaim", + "operationId": "replaceCoreV1NamespacedPersistentVolumeClaimStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PersistentVolumeClaim" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods": { + "delete": { + "description": "delete collection of Pod", + "operationId": "deleteCoreV1CollectionNamespacedPod", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Pod", + "operationId": "listCoreV1NamespacedPod", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Pod", + "operationId": "createCoreV1NamespacedPod", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Pod" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}": { + "delete": { + "description": "delete a Pod", + "operationId": "deleteCoreV1NamespacedPod", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Pod", + "operationId": "readCoreV1NamespacedPod", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Pod", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Pod", + "operationId": "patchCoreV1NamespacedPod", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Pod", + "operationId": "replaceCoreV1NamespacedPod", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Pod" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/attach": { + "get": { + "description": "connect GET requests to attach of Pod", + "operationId": "connectCoreV1GetNamespacedPodAttach", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodAttachOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/container-_Q-EJ3nR" + }, + { + "description": "name of the PodAttachOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/stderr-26jJhFUR" + }, + { + "$ref": "#/components/parameters/stdin-sEFnN3IS" + }, + { + "$ref": "#/components/parameters/stdout-005YMKE6" + }, + { + "$ref": "#/components/parameters/tty-g7MlET_l" + } + ], + "post": { + "description": "connect POST requests to attach of Pod", + "operationId": "connectCoreV1PostNamespacedPodAttach", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodAttachOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/binding": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "description": "name of the Binding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create binding of a Pod", + "operationId": "createCoreV1NamespacedPodBinding", + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Binding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Binding", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/ephemeralcontainers": { + "get": { + "description": "read ephemeralcontainers of the specified Pod", + "operationId": "readCoreV1NamespacedPodEphemeralcontainers", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Pod", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update ephemeralcontainers of the specified Pod", + "operationId": "patchCoreV1NamespacedPodEphemeralcontainers", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace ephemeralcontainers of the specified Pod", + "operationId": "replaceCoreV1NamespacedPodEphemeralcontainers", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Pod" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/eviction": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "description": "name of the Eviction", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create eviction of a Pod", + "operationId": "createCoreV1NamespacedPodEviction", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.Eviction" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "Eviction", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/exec": { + "get": { + "description": "connect GET requests to exec of Pod", + "operationId": "connectCoreV1GetNamespacedPodExec", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodExecOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/command-Py3eQybp" + }, + { + "$ref": "#/components/parameters/container-i5dOmRiM" + }, + { + "description": "name of the PodExecOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/stderr-W_1TNlWc" + }, + { + "$ref": "#/components/parameters/stdin-PSzNhyUC" + }, + { + "$ref": "#/components/parameters/stdout--EZLRwV1" + }, + { + "$ref": "#/components/parameters/tty-s0flW37O" + } + ], + "post": { + "description": "connect POST requests to exec of Pod", + "operationId": "connectCoreV1PostNamespacedPodExec", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodExecOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/log": { + "get": { + "description": "read log of the specified Pod", + "operationId": "readCoreV1NamespacedPodLog", + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "type": "string" + } + }, + "application/json": { + "schema": { + "type": "string" + } + }, + "application/yaml": { + "schema": { + "type": "string" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/container-1GeXxFDC" + }, + { + "$ref": "#/components/parameters/follow-9OIXh_2R" + }, + { + "$ref": "#/components/parameters/insecureSkipTLSVerifyBackend-gM00jVbe" + }, + { + "$ref": "#/components/parameters/limitBytes-zwd1RXuc" + }, + { + "description": "name of the Pod", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/previous-1jxDPu3y" + }, + { + "$ref": "#/components/parameters/sinceSeconds-vE2NLdnP" + }, + { + "$ref": "#/components/parameters/tailLines-2fRTNzbP" + }, + { + "$ref": "#/components/parameters/timestamps-c17fW1w_" + } + ] + }, + "/api/v1/namespaces/{namespace}/pods/{name}/portforward": { + "get": { + "description": "connect GET requests to portforward of Pod", + "operationId": "connectCoreV1GetNamespacedPodPortforward", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodPortForwardOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodPortForwardOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/ports-91KROJmm" + } + ], + "post": { + "description": "connect POST requests to portforward of Pod", + "operationId": "connectCoreV1PostNamespacedPodPortforward", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodPortForwardOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/proxy": { + "delete": { + "description": "connect DELETE requests to proxy of Pod", + "operationId": "connectCoreV1DeleteNamespacedPodProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "connect GET requests to proxy of Pod", + "operationId": "connectCoreV1GetNamespacedPodProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "head": { + "description": "connect HEAD requests to proxy of Pod", + "operationId": "connectCoreV1HeadNamespacedPodProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "options": { + "description": "connect OPTIONS requests to proxy of Pod", + "operationId": "connectCoreV1OptionsNamespacedPodProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodProxyOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/path-oPbzgLUj" + } + ], + "patch": { + "description": "connect PATCH requests to proxy of Pod", + "operationId": "connectCoreV1PatchNamespacedPodProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "post": { + "description": "connect POST requests to proxy of Pod", + "operationId": "connectCoreV1PostNamespacedPodProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "connect PUT requests to proxy of Pod", + "operationId": "connectCoreV1PutNamespacedPodProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": { + "delete": { + "description": "connect DELETE requests to proxy of Pod", + "operationId": "connectCoreV1DeleteNamespacedPodProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "connect GET requests to proxy of Pod", + "operationId": "connectCoreV1GetNamespacedPodProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "head": { + "description": "connect HEAD requests to proxy of Pod", + "operationId": "connectCoreV1HeadNamespacedPodProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "options": { + "description": "connect OPTIONS requests to proxy of Pod", + "operationId": "connectCoreV1OptionsNamespacedPodProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodProxyOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/path-z6Ciiujn" + }, + { + "$ref": "#/components/parameters/path-oPbzgLUj" + } + ], + "patch": { + "description": "connect PATCH requests to proxy of Pod", + "operationId": "connectCoreV1PatchNamespacedPodProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "post": { + "description": "connect POST requests to proxy of Pod", + "operationId": "connectCoreV1PostNamespacedPodProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "connect PUT requests to proxy of Pod", + "operationId": "connectCoreV1PutNamespacedPodProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodProxyOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/pods/{name}/status": { + "get": { + "description": "read status of the specified Pod", + "operationId": "readCoreV1NamespacedPodStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Pod", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified Pod", + "operationId": "patchCoreV1NamespacedPodStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified Pod", + "operationId": "replaceCoreV1NamespacedPodStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Pod" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/podtemplates": { + "delete": { + "description": "delete collection of PodTemplate", + "operationId": "deleteCoreV1CollectionNamespacedPodTemplate", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PodTemplate", + "operationId": "listCoreV1NamespacedPodTemplate", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PodTemplate", + "operationId": "createCoreV1NamespacedPodTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PodTemplate" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/podtemplates/{name}": { + "delete": { + "description": "delete a PodTemplate", + "operationId": "deleteCoreV1NamespacedPodTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified PodTemplate", + "operationId": "readCoreV1NamespacedPodTemplate", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodTemplate", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PodTemplate", + "operationId": "patchCoreV1NamespacedPodTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PodTemplate", + "operationId": "replaceCoreV1NamespacedPodTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PodTemplate" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/replicationcontrollers": { + "delete": { + "description": "delete collection of ReplicationController", + "operationId": "deleteCoreV1CollectionNamespacedReplicationController", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ReplicationController", + "operationId": "listCoreV1NamespacedReplicationController", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ReplicationController", + "operationId": "createCoreV1NamespacedReplicationController", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ReplicationController" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": { + "delete": { + "description": "delete a ReplicationController", + "operationId": "deleteCoreV1NamespacedReplicationController", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ReplicationController", + "operationId": "readCoreV1NamespacedReplicationController", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ReplicationController", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ReplicationController", + "operationId": "patchCoreV1NamespacedReplicationController", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ReplicationController", + "operationId": "replaceCoreV1NamespacedReplicationController", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ReplicationController" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": { + "get": { + "description": "read scale of the specified ReplicationController", + "operationId": "readCoreV1NamespacedReplicationControllerScale", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Scale", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update scale of the specified ReplicationController", + "operationId": "patchCoreV1NamespacedReplicationControllerScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace scale of the specified ReplicationController", + "operationId": "replaceCoreV1NamespacedReplicationControllerScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v1.Scale" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": { + "get": { + "description": "read status of the specified ReplicationController", + "operationId": "readCoreV1NamespacedReplicationControllerStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ReplicationController", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified ReplicationController", + "operationId": "patchCoreV1NamespacedReplicationControllerStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified ReplicationController", + "operationId": "replaceCoreV1NamespacedReplicationControllerStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ReplicationController" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/resourcequotas": { + "delete": { + "description": "delete collection of ResourceQuota", + "operationId": "deleteCoreV1CollectionNamespacedResourceQuota", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ResourceQuota", + "operationId": "listCoreV1NamespacedResourceQuota", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ResourceQuota", + "operationId": "createCoreV1NamespacedResourceQuota", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ResourceQuota" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/resourcequotas/{name}": { + "delete": { + "description": "delete a ResourceQuota", + "operationId": "deleteCoreV1NamespacedResourceQuota", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ResourceQuota", + "operationId": "readCoreV1NamespacedResourceQuota", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ResourceQuota", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ResourceQuota", + "operationId": "patchCoreV1NamespacedResourceQuota", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ResourceQuota", + "operationId": "replaceCoreV1NamespacedResourceQuota", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ResourceQuota" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": { + "get": { + "description": "read status of the specified ResourceQuota", + "operationId": "readCoreV1NamespacedResourceQuotaStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ResourceQuota", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified ResourceQuota", + "operationId": "patchCoreV1NamespacedResourceQuotaStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified ResourceQuota", + "operationId": "replaceCoreV1NamespacedResourceQuotaStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ResourceQuota" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/secrets": { + "delete": { + "description": "delete collection of Secret", + "operationId": "deleteCoreV1CollectionNamespacedSecret", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Secret", + "operationId": "listCoreV1NamespacedSecret", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Secret", + "operationId": "createCoreV1NamespacedSecret", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Secret" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/secrets/{name}": { + "delete": { + "description": "delete a Secret", + "operationId": "deleteCoreV1NamespacedSecret", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Secret", + "operationId": "readCoreV1NamespacedSecret", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Secret", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Secret", + "operationId": "patchCoreV1NamespacedSecret", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Secret", + "operationId": "replaceCoreV1NamespacedSecret", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Secret" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/serviceaccounts": { + "delete": { + "description": "delete collection of ServiceAccount", + "operationId": "deleteCoreV1CollectionNamespacedServiceAccount", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ServiceAccount", + "operationId": "listCoreV1NamespacedServiceAccount", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ServiceAccount", + "operationId": "createCoreV1NamespacedServiceAccount", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ServiceAccount" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": { + "delete": { + "description": "delete a ServiceAccount", + "operationId": "deleteCoreV1NamespacedServiceAccount", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ServiceAccount", + "operationId": "readCoreV1NamespacedServiceAccount", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ServiceAccount", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ServiceAccount", + "operationId": "patchCoreV1NamespacedServiceAccount", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ServiceAccount", + "operationId": "replaceCoreV1NamespacedServiceAccount", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.ServiceAccount" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "description": "name of the TokenRequest", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create token of a ServiceAccount", + "operationId": "createCoreV1NamespacedServiceAccountToken", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authentication.k8s.io", + "kind": "TokenRequest", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/services": { + "delete": { + "description": "delete collection of Service", + "operationId": "deleteCoreV1CollectionNamespacedService", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Service", + "operationId": "listCoreV1NamespacedService", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Service", + "operationId": "createCoreV1NamespacedService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Service" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/services/{name}": { + "delete": { + "description": "delete a Service", + "operationId": "deleteCoreV1NamespacedService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Service", + "operationId": "readCoreV1NamespacedService", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Service", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Service", + "operationId": "patchCoreV1NamespacedService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Service", + "operationId": "replaceCoreV1NamespacedService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Service" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/services/{name}/proxy": { + "delete": { + "description": "connect DELETE requests to proxy of Service", + "operationId": "connectCoreV1DeleteNamespacedServiceProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "connect GET requests to proxy of Service", + "operationId": "connectCoreV1GetNamespacedServiceProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "head": { + "description": "connect HEAD requests to proxy of Service", + "operationId": "connectCoreV1HeadNamespacedServiceProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "options": { + "description": "connect OPTIONS requests to proxy of Service", + "operationId": "connectCoreV1OptionsNamespacedServiceProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ServiceProxyOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/path-QCf0eosM" + } + ], + "patch": { + "description": "connect PATCH requests to proxy of Service", + "operationId": "connectCoreV1PatchNamespacedServiceProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "post": { + "description": "connect POST requests to proxy of Service", + "operationId": "connectCoreV1PostNamespacedServiceProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "connect PUT requests to proxy of Service", + "operationId": "connectCoreV1PutNamespacedServiceProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": { + "delete": { + "description": "connect DELETE requests to proxy of Service", + "operationId": "connectCoreV1DeleteNamespacedServiceProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "connect GET requests to proxy of Service", + "operationId": "connectCoreV1GetNamespacedServiceProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "head": { + "description": "connect HEAD requests to proxy of Service", + "operationId": "connectCoreV1HeadNamespacedServiceProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "options": { + "description": "connect OPTIONS requests to proxy of Service", + "operationId": "connectCoreV1OptionsNamespacedServiceProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ServiceProxyOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/path-z6Ciiujn" + }, + { + "$ref": "#/components/parameters/path-QCf0eosM" + } + ], + "patch": { + "description": "connect PATCH requests to proxy of Service", + "operationId": "connectCoreV1PatchNamespacedServiceProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "post": { + "description": "connect POST requests to proxy of Service", + "operationId": "connectCoreV1PostNamespacedServiceProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "connect PUT requests to proxy of Service", + "operationId": "connectCoreV1PutNamespacedServiceProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceProxyOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{namespace}/services/{name}/status": { + "get": { + "description": "read status of the specified Service", + "operationId": "readCoreV1NamespacedServiceStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Service", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified Service", + "operationId": "patchCoreV1NamespacedServiceStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified Service", + "operationId": "replaceCoreV1NamespacedServiceStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Service" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{name}": { + "delete": { + "description": "delete a Namespace", + "operationId": "deleteCoreV1Namespace", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Namespace", + "operationId": "readCoreV1Namespace", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Namespace", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Namespace", + "operationId": "patchCoreV1Namespace", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Namespace", + "operationId": "replaceCoreV1Namespace", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Namespace" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{name}/finalize": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "description": "name of the Namespace", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "put": { + "description": "replace finalize of the specified Namespace", + "operationId": "replaceCoreV1NamespaceFinalize", + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Namespace" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/namespaces/{name}/status": { + "get": { + "description": "read status of the specified Namespace", + "operationId": "readCoreV1NamespaceStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Namespace", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified Namespace", + "operationId": "patchCoreV1NamespaceStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified Namespace", + "operationId": "replaceCoreV1NamespaceStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Namespace" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/nodes": { + "delete": { + "description": "delete collection of Node", + "operationId": "deleteCoreV1CollectionNode", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Node", + "operationId": "listCoreV1Node", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Node", + "operationId": "createCoreV1Node", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Node" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/nodes/{name}": { + "delete": { + "description": "delete a Node", + "operationId": "deleteCoreV1Node", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Node", + "operationId": "readCoreV1Node", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Node", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Node", + "operationId": "patchCoreV1Node", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Node", + "operationId": "replaceCoreV1Node", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Node" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/nodes/{name}/proxy": { + "delete": { + "description": "connect DELETE requests to proxy of Node", + "operationId": "connectCoreV1DeleteNodeProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "connect GET requests to proxy of Node", + "operationId": "connectCoreV1GetNodeProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "head": { + "description": "connect HEAD requests to proxy of Node", + "operationId": "connectCoreV1HeadNodeProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "options": { + "description": "connect OPTIONS requests to proxy of Node", + "operationId": "connectCoreV1OptionsNodeProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the NodeProxyOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/path-rFDtV0x9" + } + ], + "patch": { + "description": "connect PATCH requests to proxy of Node", + "operationId": "connectCoreV1PatchNodeProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "post": { + "description": "connect POST requests to proxy of Node", + "operationId": "connectCoreV1PostNodeProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "connect PUT requests to proxy of Node", + "operationId": "connectCoreV1PutNodeProxy", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/nodes/{name}/proxy/{path}": { + "delete": { + "description": "connect DELETE requests to proxy of Node", + "operationId": "connectCoreV1DeleteNodeProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "connect GET requests to proxy of Node", + "operationId": "connectCoreV1GetNodeProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "head": { + "description": "connect HEAD requests to proxy of Node", + "operationId": "connectCoreV1HeadNodeProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "options": { + "description": "connect OPTIONS requests to proxy of Node", + "operationId": "connectCoreV1OptionsNodeProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the NodeProxyOptions", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/path-z6Ciiujn" + }, + { + "$ref": "#/components/parameters/path-rFDtV0x9" + } + ], + "patch": { + "description": "connect PATCH requests to proxy of Node", + "operationId": "connectCoreV1PatchNodeProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "post": { + "description": "connect POST requests to proxy of Node", + "operationId": "connectCoreV1PostNodeProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "connect PUT requests to proxy of Node", + "operationId": "connectCoreV1PutNodeProxyWithPath", + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "connect", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "NodeProxyOptions", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/nodes/{name}/status": { + "get": { + "description": "read status of the specified Node", + "operationId": "readCoreV1NodeStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Node", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified Node", + "operationId": "patchCoreV1NodeStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified Node", + "operationId": "replaceCoreV1NodeStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.Node" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/persistentvolumeclaims": { + "get": { + "description": "list or watch objects of kind PersistentVolumeClaim", + "operationId": "listCoreV1PersistentVolumeClaimForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/persistentvolumes": { + "delete": { + "description": "delete collection of PersistentVolume", + "operationId": "deleteCoreV1CollectionPersistentVolume", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PersistentVolume", + "operationId": "listCoreV1PersistentVolume", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PersistentVolume", + "operationId": "createCoreV1PersistentVolume", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PersistentVolume" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/persistentvolumes/{name}": { + "delete": { + "description": "delete a PersistentVolume", + "operationId": "deleteCoreV1PersistentVolume", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified PersistentVolume", + "operationId": "readCoreV1PersistentVolume", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PersistentVolume", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PersistentVolume", + "operationId": "patchCoreV1PersistentVolume", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PersistentVolume", + "operationId": "replaceCoreV1PersistentVolume", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PersistentVolume" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/persistentvolumes/{name}/status": { + "get": { + "description": "read status of the specified PersistentVolume", + "operationId": "readCoreV1PersistentVolumeStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PersistentVolume", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified PersistentVolume", + "operationId": "patchCoreV1PersistentVolumeStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified PersistentVolume", + "operationId": "replaceCoreV1PersistentVolumeStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.core.v1.PersistentVolume" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + } + }, + "/api/v1/pods": { + "get": { + "description": "list or watch objects of kind Pod", + "operationId": "listCoreV1PodForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/podtemplates": { + "get": { + "description": "list or watch objects of kind PodTemplate", + "operationId": "listCoreV1PodTemplateForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/replicationcontrollers": { + "get": { + "description": "list or watch objects of kind ReplicationController", + "operationId": "listCoreV1ReplicationControllerForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/resourcequotas": { + "get": { + "description": "list or watch objects of kind ResourceQuota", + "operationId": "listCoreV1ResourceQuotaForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/secrets": { + "get": { + "description": "list or watch objects of kind Secret", + "operationId": "listCoreV1SecretForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/serviceaccounts": { + "get": { + "description": "list or watch objects of kind ServiceAccount", + "operationId": "listCoreV1ServiceAccountForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/services": { + "get": { + "description": "list or watch objects of kind Service", + "operationId": "listCoreV1ServiceForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/configmaps": { + "get": { + "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1ConfigMapListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/endpoints": { + "get": { + "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1EndpointsListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/events": { + "get": { + "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1EventListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/limitranges": { + "get": { + "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1LimitRangeListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces": { + "get": { + "description": "watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespaceList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/configmaps": { + "get": { + "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedConfigMapList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": { + "get": { + "description": "watch changes to an object of kind ConfigMap. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedConfigMap", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ConfigMap", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ConfigMap", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/endpoints": { + "get": { + "description": "watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedEndpointsList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": { + "get": { + "description": "watch changes to an object of kind Endpoints. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedEndpoints", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Endpoints", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Endpoints", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/events": { + "get": { + "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedEventList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/events/{name}": { + "get": { + "description": "watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedEvent", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Event", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/limitranges": { + "get": { + "description": "watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedLimitRangeList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": { + "get": { + "description": "watch changes to an object of kind LimitRange. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedLimitRange", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "LimitRange", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the LimitRange", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": { + "get": { + "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedPersistentVolumeClaimList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": { + "get": { + "description": "watch changes to an object of kind PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedPersistentVolumeClaim", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PersistentVolumeClaim", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/pods": { + "get": { + "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedPodList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/pods/{name}": { + "get": { + "description": "watch changes to an object of kind Pod. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedPod", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Pod", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/podtemplates": { + "get": { + "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedPodTemplateList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": { + "get": { + "description": "watch changes to an object of kind PodTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedPodTemplate", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PodTemplate", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": { + "get": { + "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedReplicationControllerList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": { + "get": { + "description": "watch changes to an object of kind ReplicationController. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedReplicationController", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ReplicationController", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/resourcequotas": { + "get": { + "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedResourceQuotaList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": { + "get": { + "description": "watch changes to an object of kind ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedResourceQuota", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ResourceQuota", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/secrets": { + "get": { + "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedSecretList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/secrets/{name}": { + "get": { + "description": "watch changes to an object of kind Secret. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedSecret", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Secret", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/serviceaccounts": { + "get": { + "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedServiceAccountList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": { + "get": { + "description": "watch changes to an object of kind ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedServiceAccount", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ServiceAccount", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/services": { + "get": { + "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NamespacedServiceList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{namespace}/services/{name}": { + "get": { + "description": "watch changes to an object of kind Service. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1NamespacedService", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Service", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/namespaces/{name}": { + "get": { + "description": "watch changes to an object of kind Namespace. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1Namespace", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Namespace", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Namespace", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/nodes": { + "get": { + "description": "watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1NodeList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/nodes/{name}": { + "get": { + "description": "watch changes to an object of kind Node. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1Node", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Node", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Node", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/persistentvolumeclaims": { + "get": { + "description": "watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1PersistentVolumeClaimListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/persistentvolumes": { + "get": { + "description": "watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1PersistentVolumeList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/persistentvolumes/{name}": { + "get": { + "description": "watch changes to an object of kind PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoreV1PersistentVolume", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PersistentVolume", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/pods": { + "get": { + "description": "watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1PodListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Pod", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/podtemplates": { + "get": { + "description": "watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1PodTemplateListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "PodTemplate", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/replicationcontrollers": { + "get": { + "description": "watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1ReplicationControllerListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ReplicationController", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/resourcequotas": { + "get": { + "description": "watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1ResourceQuotaListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/secrets": { + "get": { + "description": "watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1SecretListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Secret", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/serviceaccounts": { + "get": { + "description": "watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1ServiceAccountListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/api/v1/watch/services": { + "get": { + "description": "watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoreV1ServiceListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["core_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "", + "kind": "Service", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/": { + "get": { + "description": "get available API versions", + "operationId": "getAPIVersions", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apis"], + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getAdmissionregistrationAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration"], + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getAdmissionregistrationV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations": { + "delete": { + "description": "delete collection of MutatingWebhookConfiguration", + "operationId": "deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind MutatingWebhookConfiguration", + "operationId": "listAdmissionregistrationV1MutatingWebhookConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a MutatingWebhookConfiguration", + "operationId": "createAdmissionregistrationV1MutatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}": { + "delete": { + "description": "delete a MutatingWebhookConfiguration", + "operationId": "deleteAdmissionregistrationV1MutatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified MutatingWebhookConfiguration", + "operationId": "readAdmissionregistrationV1MutatingWebhookConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the MutatingWebhookConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified MutatingWebhookConfiguration", + "operationId": "patchAdmissionregistrationV1MutatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified MutatingWebhookConfiguration", + "operationId": "replaceAdmissionregistrationV1MutatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations": { + "delete": { + "description": "delete collection of ValidatingWebhookConfiguration", + "operationId": "deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ValidatingWebhookConfiguration", + "operationId": "listAdmissionregistrationV1ValidatingWebhookConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ValidatingWebhookConfiguration", + "operationId": "createAdmissionregistrationV1ValidatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}": { + "delete": { + "description": "delete a ValidatingWebhookConfiguration", + "operationId": "deleteAdmissionregistrationV1ValidatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ValidatingWebhookConfiguration", + "operationId": "readAdmissionregistrationV1ValidatingWebhookConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ValidatingWebhookConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ValidatingWebhookConfiguration", + "operationId": "patchAdmissionregistrationV1ValidatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ValidatingWebhookConfiguration", + "operationId": "replaceAdmissionregistrationV1ValidatingWebhookConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations": { + "get": { + "description": "watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAdmissionregistrationV1MutatingWebhookConfigurationList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/{name}": { + "get": { + "description": "watch changes to an object of kind MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAdmissionregistrationV1MutatingWebhookConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the MutatingWebhookConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations": { + "get": { + "description": "watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfigurationList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/{name}": { + "get": { + "description": "watch changes to an object of kind ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAdmissionregistrationV1ValidatingWebhookConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ValidatingWebhookConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1alpha1/": { + "get": { + "description": "get available resources", + "operationId": "getAdmissionregistrationV1alpha1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies": { + "delete": { + "description": "delete collection of ValidatingAdmissionPolicy", + "operationId": "deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicy", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ValidatingAdmissionPolicy", + "operationId": "listAdmissionregistrationV1alpha1ValidatingAdmissionPolicy", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ValidatingAdmissionPolicy", + "operationId": "createAdmissionregistrationV1alpha1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/{name}": { + "delete": { + "description": "delete a ValidatingAdmissionPolicy", + "operationId": "deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ValidatingAdmissionPolicy", + "operationId": "readAdmissionregistrationV1alpha1ValidatingAdmissionPolicy", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ValidatingAdmissionPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ValidatingAdmissionPolicy", + "operationId": "patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ValidatingAdmissionPolicy", + "operationId": "replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicies/{name}/status": { + "get": { + "description": "read status of the specified ValidatingAdmissionPolicy", + "operationId": "readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ValidatingAdmissionPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified ValidatingAdmissionPolicy", + "operationId": "patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified ValidatingAdmissionPolicy", + "operationId": "replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings": { + "delete": { + "description": "delete collection of ValidatingAdmissionPolicyBinding", + "operationId": "deleteAdmissionregistrationV1alpha1CollectionValidatingAdmissionPolicyBinding", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ValidatingAdmissionPolicyBinding", + "operationId": "listAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ValidatingAdmissionPolicyBinding", + "operationId": "createAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1alpha1/validatingadmissionpolicybindings/{name}": { + "delete": { + "description": "delete a ValidatingAdmissionPolicyBinding", + "operationId": "deleteAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ValidatingAdmissionPolicyBinding", + "operationId": "readAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ValidatingAdmissionPolicyBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ValidatingAdmissionPolicyBinding", + "operationId": "patchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ValidatingAdmissionPolicyBinding", + "operationId": "replaceAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicies": { + "get": { + "description": "watch individual changes to a list of ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicies/{name}": { + "get": { + "description": "watch changes to an object of kind ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicy", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ValidatingAdmissionPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicybindings": { + "get": { + "description": "watch individual changes to a list of ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1alpha1/watch/validatingadmissionpolicybindings/{name}": { + "get": { + "description": "watch changes to an object of kind ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1alpha1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ValidatingAdmissionPolicyBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1beta1/": { + "get": { + "description": "get available resources", + "operationId": "getAdmissionregistrationV1beta1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies": { + "delete": { + "description": "delete collection of ValidatingAdmissionPolicy", + "operationId": "deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicy", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ValidatingAdmissionPolicy", + "operationId": "listAdmissionregistrationV1beta1ValidatingAdmissionPolicy", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ValidatingAdmissionPolicy", + "operationId": "createAdmissionregistrationV1beta1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/{name}": { + "delete": { + "description": "delete a ValidatingAdmissionPolicy", + "operationId": "deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ValidatingAdmissionPolicy", + "operationId": "readAdmissionregistrationV1beta1ValidatingAdmissionPolicy", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ValidatingAdmissionPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ValidatingAdmissionPolicy", + "operationId": "patchAdmissionregistrationV1beta1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ValidatingAdmissionPolicy", + "operationId": "replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicies/{name}/status": { + "get": { + "description": "read status of the specified ValidatingAdmissionPolicy", + "operationId": "readAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ValidatingAdmissionPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified ValidatingAdmissionPolicy", + "operationId": "patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified ValidatingAdmissionPolicy", + "operationId": "replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings": { + "delete": { + "description": "delete collection of ValidatingAdmissionPolicyBinding", + "operationId": "deleteAdmissionregistrationV1beta1CollectionValidatingAdmissionPolicyBinding", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ValidatingAdmissionPolicyBinding", + "operationId": "listAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ValidatingAdmissionPolicyBinding", + "operationId": "createAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1beta1/validatingadmissionpolicybindings/{name}": { + "delete": { + "description": "delete a ValidatingAdmissionPolicyBinding", + "operationId": "deleteAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ValidatingAdmissionPolicyBinding", + "operationId": "readAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ValidatingAdmissionPolicyBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ValidatingAdmissionPolicyBinding", + "operationId": "patchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ValidatingAdmissionPolicyBinding", + "operationId": "replaceAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + } + }, + "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicies": { + "get": { + "description": "watch individual changes to a list of ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicies/{name}": { + "get": { + "description": "watch changes to an object of kind ValidatingAdmissionPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAdmissionregistrationV1beta1ValidatingAdmissionPolicy", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ValidatingAdmissionPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicybindings": { + "get": { + "description": "watch individual changes to a list of ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingadmissionpolicybindings/{name}": { + "get": { + "description": "watch changes to an object of kind ValidatingAdmissionPolicyBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["admissionregistration_v1beta1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ValidatingAdmissionPolicyBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apiextensions.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getApiextensionsAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions"], + "servers": [] + } + }, + "/apis/apiextensions.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getApiextensionsV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "servers": [] + } + }, + "/apis/apiextensions.k8s.io/v1/customresourcedefinitions": { + "delete": { + "description": "delete collection of CustomResourceDefinition", + "operationId": "deleteApiextensionsV1CollectionCustomResourceDefinition", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind CustomResourceDefinition", + "operationId": "listApiextensionsV1CustomResourceDefinition", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a CustomResourceDefinition", + "operationId": "createApiextensionsV1CustomResourceDefinition", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}": { + "delete": { + "description": "delete a CustomResourceDefinition", + "operationId": "deleteApiextensionsV1CustomResourceDefinition", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified CustomResourceDefinition", + "operationId": "readApiextensionsV1CustomResourceDefinition", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CustomResourceDefinition", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified CustomResourceDefinition", + "operationId": "patchApiextensionsV1CustomResourceDefinition", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified CustomResourceDefinition", + "operationId": "replaceApiextensionsV1CustomResourceDefinition", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status": { + "get": { + "description": "read status of the specified CustomResourceDefinition", + "operationId": "readApiextensionsV1CustomResourceDefinitionStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CustomResourceDefinition", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified CustomResourceDefinition", + "operationId": "patchApiextensionsV1CustomResourceDefinitionStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified CustomResourceDefinition", + "operationId": "replaceApiextensionsV1CustomResourceDefinitionStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions": { + "get": { + "description": "watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchApiextensionsV1CustomResourceDefinitionList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/{name}": { + "get": { + "description": "watch changes to an object of kind CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchApiextensionsV1CustomResourceDefinition", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiextensions_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the CustomResourceDefinition", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apiregistration.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getApiregistrationAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration"], + "servers": [] + } + }, + "/apis/apiregistration.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getApiregistrationV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "servers": [] + } + }, + "/apis/apiregistration.k8s.io/v1/apiservices": { + "delete": { + "description": "delete collection of APIService", + "operationId": "deleteApiregistrationV1CollectionAPIService", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind APIService", + "operationId": "listApiregistrationV1APIService", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create an APIService", + "operationId": "createApiregistrationV1APIService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apiregistration.k8s.io/v1/apiservices/{name}": { + "delete": { + "description": "delete an APIService", + "operationId": "deleteApiregistrationV1APIService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified APIService", + "operationId": "readApiregistrationV1APIService", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the APIService", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified APIService", + "operationId": "patchApiregistrationV1APIService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified APIService", + "operationId": "replaceApiregistrationV1APIService", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status": { + "get": { + "description": "read status of the specified APIService", + "operationId": "readApiregistrationV1APIServiceStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the APIService", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified APIService", + "operationId": "patchApiregistrationV1APIServiceStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified APIService", + "operationId": "replaceApiregistrationV1APIServiceStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apiregistration.k8s.io/v1/watch/apiservices": { + "get": { + "description": "watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchApiregistrationV1APIServiceList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apiregistration.k8s.io/v1/watch/apiservices/{name}": { + "get": { + "description": "watch changes to an object of kind APIService. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchApiregistrationV1APIService", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apiregistration_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the APIService", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/": { + "get": { + "description": "get information of a group", + "operationId": "getAppsAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps"], + "servers": [] + } + }, + "/apis/apps/v1/": { + "get": { + "description": "get available resources", + "operationId": "getAppsV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "servers": [] + } + }, + "/apis/apps/v1/controllerrevisions": { + "get": { + "description": "list or watch objects of kind ControllerRevision", + "operationId": "listAppsV1ControllerRevisionForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/daemonsets": { + "get": { + "description": "list or watch objects of kind DaemonSet", + "operationId": "listAppsV1DaemonSetForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/deployments": { + "get": { + "description": "list or watch objects of kind Deployment", + "operationId": "listAppsV1DeploymentForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/namespaces/{namespace}/controllerrevisions": { + "delete": { + "description": "delete collection of ControllerRevision", + "operationId": "deleteAppsV1CollectionNamespacedControllerRevision", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ControllerRevision", + "operationId": "listAppsV1NamespacedControllerRevision", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ControllerRevision", + "operationId": "createAppsV1NamespacedControllerRevision", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.ControllerRevision" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": { + "delete": { + "description": "delete a ControllerRevision", + "operationId": "deleteAppsV1NamespacedControllerRevision", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ControllerRevision", + "operationId": "readAppsV1NamespacedControllerRevision", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ControllerRevision", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ControllerRevision", + "operationId": "patchAppsV1NamespacedControllerRevision", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ControllerRevision", + "operationId": "replaceAppsV1NamespacedControllerRevision", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.ControllerRevision" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/daemonsets": { + "delete": { + "description": "delete collection of DaemonSet", + "operationId": "deleteAppsV1CollectionNamespacedDaemonSet", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind DaemonSet", + "operationId": "listAppsV1NamespacedDaemonSet", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a DaemonSet", + "operationId": "createAppsV1NamespacedDaemonSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.DaemonSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}": { + "delete": { + "description": "delete a DaemonSet", + "operationId": "deleteAppsV1NamespacedDaemonSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified DaemonSet", + "operationId": "readAppsV1NamespacedDaemonSet", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the DaemonSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified DaemonSet", + "operationId": "patchAppsV1NamespacedDaemonSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified DaemonSet", + "operationId": "replaceAppsV1NamespacedDaemonSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.DaemonSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status": { + "get": { + "description": "read status of the specified DaemonSet", + "operationId": "readAppsV1NamespacedDaemonSetStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the DaemonSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified DaemonSet", + "operationId": "patchAppsV1NamespacedDaemonSetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified DaemonSet", + "operationId": "replaceAppsV1NamespacedDaemonSetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.DaemonSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/deployments": { + "delete": { + "description": "delete collection of Deployment", + "operationId": "deleteAppsV1CollectionNamespacedDeployment", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Deployment", + "operationId": "listAppsV1NamespacedDeployment", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Deployment", + "operationId": "createAppsV1NamespacedDeployment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.Deployment" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/deployments/{name}": { + "delete": { + "description": "delete a Deployment", + "operationId": "deleteAppsV1NamespacedDeployment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Deployment", + "operationId": "readAppsV1NamespacedDeployment", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Deployment", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Deployment", + "operationId": "patchAppsV1NamespacedDeployment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Deployment", + "operationId": "replaceAppsV1NamespacedDeployment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.Deployment" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale": { + "get": { + "description": "read scale of the specified Deployment", + "operationId": "readAppsV1NamespacedDeploymentScale", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Scale", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update scale of the specified Deployment", + "operationId": "patchAppsV1NamespacedDeploymentScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace scale of the specified Deployment", + "operationId": "replaceAppsV1NamespacedDeploymentScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v1.Scale" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status": { + "get": { + "description": "read status of the specified Deployment", + "operationId": "readAppsV1NamespacedDeploymentStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Deployment", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified Deployment", + "operationId": "patchAppsV1NamespacedDeploymentStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified Deployment", + "operationId": "replaceAppsV1NamespacedDeploymentStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.Deployment" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/replicasets": { + "delete": { + "description": "delete collection of ReplicaSet", + "operationId": "deleteAppsV1CollectionNamespacedReplicaSet", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ReplicaSet", + "operationId": "listAppsV1NamespacedReplicaSet", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ReplicaSet", + "operationId": "createAppsV1NamespacedReplicaSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.ReplicaSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}": { + "delete": { + "description": "delete a ReplicaSet", + "operationId": "deleteAppsV1NamespacedReplicaSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ReplicaSet", + "operationId": "readAppsV1NamespacedReplicaSet", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ReplicaSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ReplicaSet", + "operationId": "patchAppsV1NamespacedReplicaSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ReplicaSet", + "operationId": "replaceAppsV1NamespacedReplicaSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.ReplicaSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale": { + "get": { + "description": "read scale of the specified ReplicaSet", + "operationId": "readAppsV1NamespacedReplicaSetScale", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Scale", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update scale of the specified ReplicaSet", + "operationId": "patchAppsV1NamespacedReplicaSetScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace scale of the specified ReplicaSet", + "operationId": "replaceAppsV1NamespacedReplicaSetScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v1.Scale" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status": { + "get": { + "description": "read status of the specified ReplicaSet", + "operationId": "readAppsV1NamespacedReplicaSetStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ReplicaSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified ReplicaSet", + "operationId": "patchAppsV1NamespacedReplicaSetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified ReplicaSet", + "operationId": "replaceAppsV1NamespacedReplicaSetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.ReplicaSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/statefulsets": { + "delete": { + "description": "delete collection of StatefulSet", + "operationId": "deleteAppsV1CollectionNamespacedStatefulSet", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind StatefulSet", + "operationId": "listAppsV1NamespacedStatefulSet", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a StatefulSet", + "operationId": "createAppsV1NamespacedStatefulSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.StatefulSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}": { + "delete": { + "description": "delete a StatefulSet", + "operationId": "deleteAppsV1NamespacedStatefulSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified StatefulSet", + "operationId": "readAppsV1NamespacedStatefulSet", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the StatefulSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified StatefulSet", + "operationId": "patchAppsV1NamespacedStatefulSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified StatefulSet", + "operationId": "replaceAppsV1NamespacedStatefulSet", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.StatefulSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale": { + "get": { + "description": "read scale of the specified StatefulSet", + "operationId": "readAppsV1NamespacedStatefulSetScale", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Scale", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update scale of the specified StatefulSet", + "operationId": "patchAppsV1NamespacedStatefulSetScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace scale of the specified StatefulSet", + "operationId": "replaceAppsV1NamespacedStatefulSetScale", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v1.Scale" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status": { + "get": { + "description": "read status of the specified StatefulSet", + "operationId": "readAppsV1NamespacedStatefulSetStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the StatefulSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified StatefulSet", + "operationId": "patchAppsV1NamespacedStatefulSetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified StatefulSet", + "operationId": "replaceAppsV1NamespacedStatefulSetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apps.v1.StatefulSet" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/apps/v1/replicasets": { + "get": { + "description": "list or watch objects of kind ReplicaSet", + "operationId": "listAppsV1ReplicaSetForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/statefulsets": { + "get": { + "description": "list or watch objects of kind StatefulSet", + "operationId": "listAppsV1StatefulSetForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/controllerrevisions": { + "get": { + "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1ControllerRevisionListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/daemonsets": { + "get": { + "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1DaemonSetListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/deployments": { + "get": { + "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1DeploymentListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions": { + "get": { + "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1NamespacedControllerRevisionList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}": { + "get": { + "description": "watch changes to an object of kind ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAppsV1NamespacedControllerRevision", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ControllerRevision", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets": { + "get": { + "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1NamespacedDaemonSetList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}": { + "get": { + "description": "watch changes to an object of kind DaemonSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAppsV1NamespacedDaemonSet", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the DaemonSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/deployments": { + "get": { + "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1NamespacedDeploymentList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}": { + "get": { + "description": "watch changes to an object of kind Deployment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAppsV1NamespacedDeployment", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "Deployment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Deployment", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/replicasets": { + "get": { + "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1NamespacedReplicaSetList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}": { + "get": { + "description": "watch changes to an object of kind ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAppsV1NamespacedReplicaSet", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ReplicaSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets": { + "get": { + "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1NamespacedStatefulSetList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}": { + "get": { + "description": "watch changes to an object of kind StatefulSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAppsV1NamespacedStatefulSet", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the StatefulSet", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/replicasets": { + "get": { + "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1ReplicaSetListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/apps/v1/watch/statefulsets": { + "get": { + "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAppsV1StatefulSetListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["apps_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/authentication.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getAuthenticationAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication"], + "servers": [] + } + }, + "/apis/authentication.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getAuthenticationV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication_v1"], + "servers": [] + } + }, + "/apis/authentication.k8s.io/v1/selfsubjectreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a SelfSubjectReview", + "operationId": "createAuthenticationV1SelfSubjectReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/authentication.k8s.io/v1/tokenreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a TokenReview", + "operationId": "createAuthenticationV1TokenReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authentication.k8s.io", + "kind": "TokenReview", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/authentication.k8s.io/v1alpha1/": { + "get": { + "description": "get available resources", + "operationId": "getAuthenticationV1alpha1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication_v1alpha1"], + "servers": [] + } + }, + "/apis/authentication.k8s.io/v1alpha1/selfsubjectreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a SelfSubjectReview", + "operationId": "createAuthenticationV1alpha1SelfSubjectReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication_v1alpha1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/authentication.k8s.io/v1beta1/": { + "get": { + "description": "get available resources", + "operationId": "getAuthenticationV1beta1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication_v1beta1"], + "servers": [] + } + }, + "/apis/authentication.k8s.io/v1beta1/selfsubjectreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a SelfSubjectReview", + "operationId": "createAuthenticationV1beta1SelfSubjectReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authentication_v1beta1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1beta1" + }, + "servers": [] + } + }, + "/apis/authorization.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getAuthorizationAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authorization"], + "servers": [] + } + }, + "/apis/authorization.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getAuthorizationV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authorization_v1"], + "servers": [] + } + }, + "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a LocalSubjectAccessReview", + "operationId": "createAuthorizationV1NamespacedLocalSubjectAccessReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.LocalSubjectAccessReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authorization.k8s.io", + "kind": "LocalSubjectAccessReview", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/authorization.k8s.io/v1/selfsubjectaccessreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a SelfSubjectAccessReview", + "operationId": "createAuthorizationV1SelfSubjectAccessReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authorization.k8s.io", + "kind": "SelfSubjectAccessReview", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/authorization.k8s.io/v1/selfsubjectrulesreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a SelfSubjectRulesReview", + "operationId": "createAuthorizationV1SelfSubjectRulesReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authorization.k8s.io", + "kind": "SelfSubjectRulesReview", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/authorization.k8s.io/v1/subjectaccessreviews": { + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a SubjectAccessReview", + "operationId": "createAuthorizationV1SubjectAccessReview", + "requestBody": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReview" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["authorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "authorization.k8s.io", + "kind": "SubjectAccessReview", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/autoscaling/": { + "get": { + "description": "get information of a group", + "operationId": "getAutoscalingAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling"], + "servers": [] + } + }, + "/apis/autoscaling/v1/": { + "get": { + "description": "get available resources", + "operationId": "getAutoscalingV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "servers": [] + } + }, + "/apis/autoscaling/v1/horizontalpodautoscalers": { + "get": { + "description": "list or watch objects of kind HorizontalPodAutoscaler", + "operationId": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers": { + "delete": { + "description": "delete collection of HorizontalPodAutoscaler", + "operationId": "deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind HorizontalPodAutoscaler", + "operationId": "listAutoscalingV1NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a HorizontalPodAutoscaler", + "operationId": "createAutoscalingV1NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}": { + "delete": { + "description": "delete a HorizontalPodAutoscaler", + "operationId": "deleteAutoscalingV1NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified HorizontalPodAutoscaler", + "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscaler", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the HorizontalPodAutoscaler", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified HorizontalPodAutoscaler", + "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified HorizontalPodAutoscaler", + "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": { + "get": { + "description": "read status of the specified HorizontalPodAutoscaler", + "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the HorizontalPodAutoscaler", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified HorizontalPodAutoscaler", + "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified HorizontalPodAutoscaler", + "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/autoscaling/v1/watch/horizontalpodautoscalers": { + "get": { + "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers": { + "get": { + "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscalerList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": { + "get": { + "description": "watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscaler", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the HorizontalPodAutoscaler", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/autoscaling/v2/": { + "get": { + "description": "get available resources", + "operationId": "getAutoscalingV2APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "servers": [] + } + }, + "/apis/autoscaling/v2/horizontalpodautoscalers": { + "get": { + "description": "list or watch objects of kind HorizontalPodAutoscaler", + "operationId": "listAutoscalingV2HorizontalPodAutoscalerForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/autoscaling/v2/namespaces/{namespace}/horizontalpodautoscalers": { + "delete": { + "description": "delete collection of HorizontalPodAutoscaler", + "operationId": "deleteAutoscalingV2CollectionNamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind HorizontalPodAutoscaler", + "operationId": "listAutoscalingV2NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a HorizontalPodAutoscaler", + "operationId": "createAutoscalingV2NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + } + }, + "/apis/autoscaling/v2/namespaces/{namespace}/horizontalpodautoscalers/{name}": { + "delete": { + "description": "delete a HorizontalPodAutoscaler", + "operationId": "deleteAutoscalingV2NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "get": { + "description": "read the specified HorizontalPodAutoscaler", + "operationId": "readAutoscalingV2NamespacedHorizontalPodAutoscaler", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the HorizontalPodAutoscaler", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified HorizontalPodAutoscaler", + "operationId": "patchAutoscalingV2NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "put": { + "description": "replace the specified HorizontalPodAutoscaler", + "operationId": "replaceAutoscalingV2NamespacedHorizontalPodAutoscaler", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + } + }, + "/apis/autoscaling/v2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": { + "get": { + "description": "read status of the specified HorizontalPodAutoscaler", + "operationId": "readAutoscalingV2NamespacedHorizontalPodAutoscalerStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the HorizontalPodAutoscaler", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified HorizontalPodAutoscaler", + "operationId": "patchAutoscalingV2NamespacedHorizontalPodAutoscalerStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified HorizontalPodAutoscaler", + "operationId": "replaceAutoscalingV2NamespacedHorizontalPodAutoscalerStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + } + }, + "/apis/autoscaling/v2/watch/horizontalpodautoscalers": { + "get": { + "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAutoscalingV2HorizontalPodAutoscalerListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/autoscaling/v2/watch/namespaces/{namespace}/horizontalpodautoscalers": { + "get": { + "description": "watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchAutoscalingV2NamespacedHorizontalPodAutoscalerList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/autoscaling/v2/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": { + "get": { + "description": "watch changes to an object of kind HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchAutoscalingV2NamespacedHorizontalPodAutoscaler", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["autoscaling_v2"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the HorizontalPodAutoscaler", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/": { + "get": { + "description": "get information of a group", + "operationId": "getBatchAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch"], + "servers": [] + } + }, + "/apis/batch/v1/": { + "get": { + "description": "get available resources", + "operationId": "getBatchV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "servers": [] + } + }, + "/apis/batch/v1/cronjobs": { + "get": { + "description": "list or watch objects of kind CronJob", + "operationId": "listBatchV1CronJobForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/v1/jobs": { + "get": { + "description": "list or watch objects of kind Job", + "operationId": "listBatchV1JobForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/v1/namespaces/{namespace}/cronjobs": { + "delete": { + "description": "delete collection of CronJob", + "operationId": "deleteBatchV1CollectionNamespacedCronJob", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind CronJob", + "operationId": "listBatchV1NamespacedCronJob", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a CronJob", + "operationId": "createBatchV1NamespacedCronJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.batch.v1.CronJob" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/batch/v1/namespaces/{namespace}/cronjobs/{name}": { + "delete": { + "description": "delete a CronJob", + "operationId": "deleteBatchV1NamespacedCronJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified CronJob", + "operationId": "readBatchV1NamespacedCronJob", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CronJob", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified CronJob", + "operationId": "patchBatchV1NamespacedCronJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified CronJob", + "operationId": "replaceBatchV1NamespacedCronJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.batch.v1.CronJob" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/batch/v1/namespaces/{namespace}/cronjobs/{name}/status": { + "get": { + "description": "read status of the specified CronJob", + "operationId": "readBatchV1NamespacedCronJobStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CronJob", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified CronJob", + "operationId": "patchBatchV1NamespacedCronJobStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified CronJob", + "operationId": "replaceBatchV1NamespacedCronJobStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.batch.v1.CronJob" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/batch/v1/namespaces/{namespace}/jobs": { + "delete": { + "description": "delete collection of Job", + "operationId": "deleteBatchV1CollectionNamespacedJob", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Job", + "operationId": "listBatchV1NamespacedJob", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Job", + "operationId": "createBatchV1NamespacedJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.batch.v1.Job" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/batch/v1/namespaces/{namespace}/jobs/{name}": { + "delete": { + "description": "delete a Job", + "operationId": "deleteBatchV1NamespacedJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Job", + "operationId": "readBatchV1NamespacedJob", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Job", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Job", + "operationId": "patchBatchV1NamespacedJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Job", + "operationId": "replaceBatchV1NamespacedJob", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.batch.v1.Job" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status": { + "get": { + "description": "read status of the specified Job", + "operationId": "readBatchV1NamespacedJobStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Job", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified Job", + "operationId": "patchBatchV1NamespacedJobStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified Job", + "operationId": "replaceBatchV1NamespacedJobStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.batch.v1.Job" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/batch/v1/watch/cronjobs": { + "get": { + "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchBatchV1CronJobListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/v1/watch/jobs": { + "get": { + "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchBatchV1JobListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/v1/watch/namespaces/{namespace}/cronjobs": { + "get": { + "description": "watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchBatchV1NamespacedCronJobList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/v1/watch/namespaces/{namespace}/cronjobs/{name}": { + "get": { + "description": "watch changes to an object of kind CronJob. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchBatchV1NamespacedCronJob", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "CronJob", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the CronJob", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/v1/watch/namespaces/{namespace}/jobs": { + "get": { + "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchBatchV1NamespacedJobList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}": { + "get": { + "description": "watch changes to an object of kind Job. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchBatchV1NamespacedJob", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["batch_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "batch", + "kind": "Job", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Job", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/certificates.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getCertificatesAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates"], + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getCertificatesV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1/certificatesigningrequests": { + "delete": { + "description": "delete collection of CertificateSigningRequest", + "operationId": "deleteCertificatesV1CollectionCertificateSigningRequest", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind CertificateSigningRequest", + "operationId": "listCertificatesV1CertificateSigningRequest", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a CertificateSigningRequest", + "operationId": "createCertificatesV1CertificateSigningRequest", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.certificates.v1.CertificateSigningRequest" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}": { + "delete": { + "description": "delete a CertificateSigningRequest", + "operationId": "deleteCertificatesV1CertificateSigningRequest", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified CertificateSigningRequest", + "operationId": "readCertificatesV1CertificateSigningRequest", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CertificateSigningRequest", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified CertificateSigningRequest", + "operationId": "patchCertificatesV1CertificateSigningRequest", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified CertificateSigningRequest", + "operationId": "replaceCertificatesV1CertificateSigningRequest", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.certificates.v1.CertificateSigningRequest" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/approval": { + "get": { + "description": "read approval of the specified CertificateSigningRequest", + "operationId": "readCertificatesV1CertificateSigningRequestApproval", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CertificateSigningRequest", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update approval of the specified CertificateSigningRequest", + "operationId": "patchCertificatesV1CertificateSigningRequestApproval", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace approval of the specified CertificateSigningRequest", + "operationId": "replaceCertificatesV1CertificateSigningRequestApproval", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.certificates.v1.CertificateSigningRequest" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1/certificatesigningrequests/{name}/status": { + "get": { + "description": "read status of the specified CertificateSigningRequest", + "operationId": "readCertificatesV1CertificateSigningRequestStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CertificateSigningRequest", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified CertificateSigningRequest", + "operationId": "patchCertificatesV1CertificateSigningRequestStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified CertificateSigningRequest", + "operationId": "replaceCertificatesV1CertificateSigningRequestStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.certificates.v1.CertificateSigningRequest" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests": { + "get": { + "description": "watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCertificatesV1CertificateSigningRequestList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/certificates.k8s.io/v1/watch/certificatesigningrequests/{name}": { + "get": { + "description": "watch changes to an object of kind CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCertificatesV1CertificateSigningRequest", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the CertificateSigningRequest", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/certificates.k8s.io/v1alpha1/": { + "get": { + "description": "get available resources", + "operationId": "getCertificatesV1alpha1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1alpha1/clustertrustbundles": { + "delete": { + "description": "delete collection of ClusterTrustBundle", + "operationId": "deleteCertificatesV1alpha1CollectionClusterTrustBundle", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ClusterTrustBundle", + "operationId": "listCertificatesV1alpha1ClusterTrustBundle", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ClusterTrustBundle", + "operationId": "createCertificatesV1alpha1ClusterTrustBundle", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1alpha1/clustertrustbundles/{name}": { + "delete": { + "description": "delete a ClusterTrustBundle", + "operationId": "deleteCertificatesV1alpha1ClusterTrustBundle", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ClusterTrustBundle", + "operationId": "readCertificatesV1alpha1ClusterTrustBundle", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ClusterTrustBundle", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ClusterTrustBundle", + "operationId": "patchCertificatesV1alpha1ClusterTrustBundle", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ClusterTrustBundle", + "operationId": "replaceCertificatesV1alpha1ClusterTrustBundle", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/certificates.k8s.io/v1alpha1/watch/clustertrustbundles": { + "get": { + "description": "watch individual changes to a list of ClusterTrustBundle. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCertificatesV1alpha1ClusterTrustBundleList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/certificates.k8s.io/v1alpha1/watch/clustertrustbundles/{name}": { + "get": { + "description": "watch changes to an object of kind ClusterTrustBundle. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCertificatesV1alpha1ClusterTrustBundle", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["certificates_v1alpha1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ClusterTrustBundle", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/coordination.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getCoordinationAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination"], + "servers": [] + } + }, + "/apis/coordination.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getCoordinationV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "servers": [] + } + }, + "/apis/coordination.k8s.io/v1/leases": { + "get": { + "description": "list or watch objects of kind Lease", + "operationId": "listCoordinationV1LeaseForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases": { + "delete": { + "description": "delete collection of Lease", + "operationId": "deleteCoordinationV1CollectionNamespacedLease", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Lease", + "operationId": "listCoordinationV1NamespacedLease", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Lease", + "operationId": "createCoordinationV1NamespacedLease", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.coordination.v1.Lease" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}": { + "delete": { + "description": "delete a Lease", + "operationId": "deleteCoordinationV1NamespacedLease", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Lease", + "operationId": "readCoordinationV1NamespacedLease", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Lease", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Lease", + "operationId": "patchCoordinationV1NamespacedLease", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Lease", + "operationId": "replaceCoordinationV1NamespacedLease", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.coordination.v1.Lease" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/coordination.k8s.io/v1/watch/leases": { + "get": { + "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoordinationV1LeaseListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases": { + "get": { + "description": "watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchCoordinationV1NamespacedLeaseList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases/{name}": { + "get": { + "description": "watch changes to an object of kind Lease. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchCoordinationV1NamespacedLease", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["coordination_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Lease", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/discovery.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getDiscoveryAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery"], + "servers": [] + } + }, + "/apis/discovery.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getDiscoveryV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "servers": [] + } + }, + "/apis/discovery.k8s.io/v1/endpointslices": { + "get": { + "description": "list or watch objects of kind EndpointSlice", + "operationId": "listDiscoveryV1EndpointSliceForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices": { + "delete": { + "description": "delete collection of EndpointSlice", + "operationId": "deleteDiscoveryV1CollectionNamespacedEndpointSlice", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind EndpointSlice", + "operationId": "listDiscoveryV1NamespacedEndpointSlice", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSliceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create an EndpointSlice", + "operationId": "createDiscoveryV1NamespacedEndpointSlice", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.discovery.v1.EndpointSlice" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/discovery.k8s.io/v1/namespaces/{namespace}/endpointslices/{name}": { + "delete": { + "description": "delete an EndpointSlice", + "operationId": "deleteDiscoveryV1NamespacedEndpointSlice", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified EndpointSlice", + "operationId": "readDiscoveryV1NamespacedEndpointSlice", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the EndpointSlice", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified EndpointSlice", + "operationId": "patchDiscoveryV1NamespacedEndpointSlice", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified EndpointSlice", + "operationId": "replaceDiscoveryV1NamespacedEndpointSlice", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.discovery.v1.EndpointSlice" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/discovery.k8s.io/v1/watch/endpointslices": { + "get": { + "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchDiscoveryV1EndpointSliceListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/discovery.k8s.io/v1/watch/namespaces/{namespace}/endpointslices": { + "get": { + "description": "watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchDiscoveryV1NamespacedEndpointSliceList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/discovery.k8s.io/v1/watch/namespaces/{namespace}/endpointslices/{name}": { + "get": { + "description": "watch changes to an object of kind EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchDiscoveryV1NamespacedEndpointSlice", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["discovery_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the EndpointSlice", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/events.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getEventsAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events"], + "servers": [] + } + }, + "/apis/events.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getEventsV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "servers": [] + } + }, + "/apis/events.k8s.io/v1/events": { + "get": { + "description": "list or watch objects of kind Event", + "operationId": "listEventsV1EventForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/events.k8s.io/v1/namespaces/{namespace}/events": { + "delete": { + "description": "delete collection of Event", + "operationId": "deleteEventsV1CollectionNamespacedEvent", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Event", + "operationId": "listEventsV1NamespacedEvent", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create an Event", + "operationId": "createEventsV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.events.v1.Event" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/events.k8s.io/v1/namespaces/{namespace}/events/{name}": { + "delete": { + "description": "delete an Event", + "operationId": "deleteEventsV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Event", + "operationId": "readEventsV1NamespacedEvent", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Event", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Event", + "operationId": "patchEventsV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Event", + "operationId": "replaceEventsV1NamespacedEvent", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.events.v1.Event" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/events.k8s.io/v1/watch/events": { + "get": { + "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchEventsV1EventListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events": { + "get": { + "description": "watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchEventsV1NamespacedEventList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events/{name}": { + "get": { + "description": "watch changes to an object of kind Event. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchEventsV1NamespacedEvent", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["events_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Event", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getFlowcontrolApiserverAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver"], + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/": { + "get": { + "description": "get available resources", + "operationId": "getFlowcontrolApiserverV1beta2APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas": { + "delete": { + "description": "delete collection of FlowSchema", + "operationId": "deleteFlowcontrolApiserverV1beta2CollectionFlowSchema", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind FlowSchema", + "operationId": "listFlowcontrolApiserverV1beta2FlowSchema", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a FlowSchema", + "operationId": "createFlowcontrolApiserverV1beta2FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/{name}": { + "delete": { + "description": "delete a FlowSchema", + "operationId": "deleteFlowcontrolApiserverV1beta2FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "get": { + "description": "read the specified FlowSchema", + "operationId": "readFlowcontrolApiserverV1beta2FlowSchema", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the FlowSchema", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified FlowSchema", + "operationId": "patchFlowcontrolApiserverV1beta2FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "put": { + "description": "replace the specified FlowSchema", + "operationId": "replaceFlowcontrolApiserverV1beta2FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/flowschemas/{name}/status": { + "get": { + "description": "read status of the specified FlowSchema", + "operationId": "readFlowcontrolApiserverV1beta2FlowSchemaStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the FlowSchema", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified FlowSchema", + "operationId": "patchFlowcontrolApiserverV1beta2FlowSchemaStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified FlowSchema", + "operationId": "replaceFlowcontrolApiserverV1beta2FlowSchemaStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations": { + "delete": { + "description": "delete collection of PriorityLevelConfiguration", + "operationId": "deleteFlowcontrolApiserverV1beta2CollectionPriorityLevelConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PriorityLevelConfiguration", + "operationId": "listFlowcontrolApiserverV1beta2PriorityLevelConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PriorityLevelConfiguration", + "operationId": "createFlowcontrolApiserverV1beta2PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/{name}": { + "delete": { + "description": "delete a PriorityLevelConfiguration", + "operationId": "deleteFlowcontrolApiserverV1beta2PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "get": { + "description": "read the specified PriorityLevelConfiguration", + "operationId": "readFlowcontrolApiserverV1beta2PriorityLevelConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PriorityLevelConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PriorityLevelConfiguration", + "operationId": "patchFlowcontrolApiserverV1beta2PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PriorityLevelConfiguration", + "operationId": "replaceFlowcontrolApiserverV1beta2PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/prioritylevelconfigurations/{name}/status": { + "get": { + "description": "read status of the specified PriorityLevelConfiguration", + "operationId": "readFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PriorityLevelConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified PriorityLevelConfiguration", + "operationId": "patchFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified PriorityLevelConfiguration", + "operationId": "replaceFlowcontrolApiserverV1beta2PriorityLevelConfigurationStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/flowschemas": { + "get": { + "description": "watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchFlowcontrolApiserverV1beta2FlowSchemaList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/flowschemas/{name}": { + "get": { + "description": "watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchFlowcontrolApiserverV1beta2FlowSchema", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the FlowSchema", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/prioritylevelconfigurations": { + "get": { + "description": "watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchFlowcontrolApiserverV1beta2PriorityLevelConfigurationList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta2/watch/prioritylevelconfigurations/{name}": { + "get": { + "description": "watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchFlowcontrolApiserverV1beta2PriorityLevelConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta2"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PriorityLevelConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/": { + "get": { + "description": "get available resources", + "operationId": "getFlowcontrolApiserverV1beta3APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas": { + "delete": { + "description": "delete collection of FlowSchema", + "operationId": "deleteFlowcontrolApiserverV1beta3CollectionFlowSchema", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind FlowSchema", + "operationId": "listFlowcontrolApiserverV1beta3FlowSchema", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a FlowSchema", + "operationId": "createFlowcontrolApiserverV1beta3FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/{name}": { + "delete": { + "description": "delete a FlowSchema", + "operationId": "deleteFlowcontrolApiserverV1beta3FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "get": { + "description": "read the specified FlowSchema", + "operationId": "readFlowcontrolApiserverV1beta3FlowSchema", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the FlowSchema", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified FlowSchema", + "operationId": "patchFlowcontrolApiserverV1beta3FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "put": { + "description": "replace the specified FlowSchema", + "operationId": "replaceFlowcontrolApiserverV1beta3FlowSchema", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/flowschemas/{name}/status": { + "get": { + "description": "read status of the specified FlowSchema", + "operationId": "readFlowcontrolApiserverV1beta3FlowSchemaStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the FlowSchema", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified FlowSchema", + "operationId": "patchFlowcontrolApiserverV1beta3FlowSchemaStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified FlowSchema", + "operationId": "replaceFlowcontrolApiserverV1beta3FlowSchemaStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations": { + "delete": { + "description": "delete collection of PriorityLevelConfiguration", + "operationId": "deleteFlowcontrolApiserverV1beta3CollectionPriorityLevelConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PriorityLevelConfiguration", + "operationId": "listFlowcontrolApiserverV1beta3PriorityLevelConfiguration", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PriorityLevelConfiguration", + "operationId": "createFlowcontrolApiserverV1beta3PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/{name}": { + "delete": { + "description": "delete a PriorityLevelConfiguration", + "operationId": "deleteFlowcontrolApiserverV1beta3PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "get": { + "description": "read the specified PriorityLevelConfiguration", + "operationId": "readFlowcontrolApiserverV1beta3PriorityLevelConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PriorityLevelConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PriorityLevelConfiguration", + "operationId": "patchFlowcontrolApiserverV1beta3PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PriorityLevelConfiguration", + "operationId": "replaceFlowcontrolApiserverV1beta3PriorityLevelConfiguration", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/prioritylevelconfigurations/{name}/status": { + "get": { + "description": "read status of the specified PriorityLevelConfiguration", + "operationId": "readFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PriorityLevelConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified PriorityLevelConfiguration", + "operationId": "patchFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified PriorityLevelConfiguration", + "operationId": "replaceFlowcontrolApiserverV1beta3PriorityLevelConfigurationStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + } + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/flowschemas": { + "get": { + "description": "watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchFlowcontrolApiserverV1beta3FlowSchemaList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/flowschemas/{name}": { + "get": { + "description": "watch changes to an object of kind FlowSchema. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchFlowcontrolApiserverV1beta3FlowSchema", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the FlowSchema", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/prioritylevelconfigurations": { + "get": { + "description": "watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchFlowcontrolApiserverV1beta3PriorityLevelConfigurationList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/flowcontrol.apiserver.k8s.io/v1beta3/watch/prioritylevelconfigurations/{name}": { + "get": { + "description": "watch changes to an object of kind PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchFlowcontrolApiserverV1beta3PriorityLevelConfiguration", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["flowcontrolApiserver_v1beta3"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PriorityLevelConfiguration", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/internal.apiserver.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getInternalApiserverAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver"], + "servers": [] + } + }, + "/apis/internal.apiserver.k8s.io/v1alpha1/": { + "get": { + "description": "get available resources", + "operationId": "getInternalApiserverV1alpha1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "servers": [] + } + }, + "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions": { + "delete": { + "description": "delete collection of StorageVersion", + "operationId": "deleteInternalApiserverV1alpha1CollectionStorageVersion", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind StorageVersion", + "operationId": "listInternalApiserverV1alpha1StorageVersion", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a StorageVersion", + "operationId": "createInternalApiserverV1alpha1StorageVersion", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}": { + "delete": { + "description": "delete a StorageVersion", + "operationId": "deleteInternalApiserverV1alpha1StorageVersion", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "read the specified StorageVersion", + "operationId": "readInternalApiserverV1alpha1StorageVersion", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the StorageVersion", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified StorageVersion", + "operationId": "patchInternalApiserverV1alpha1StorageVersion", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified StorageVersion", + "operationId": "replaceInternalApiserverV1alpha1StorageVersion", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions/{name}/status": { + "get": { + "description": "read status of the specified StorageVersion", + "operationId": "readInternalApiserverV1alpha1StorageVersionStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the StorageVersion", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified StorageVersion", + "operationId": "patchInternalApiserverV1alpha1StorageVersionStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified StorageVersion", + "operationId": "replaceInternalApiserverV1alpha1StorageVersionStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions": { + "get": { + "description": "watch individual changes to a list of StorageVersion. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchInternalApiserverV1alpha1StorageVersionList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/internal.apiserver.k8s.io/v1alpha1/watch/storageversions/{name}": { + "get": { + "description": "watch changes to an object of kind StorageVersion. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchInternalApiserverV1alpha1StorageVersion", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["internalApiserver_v1alpha1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the StorageVersion", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getNetworkingAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking"], + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getNetworkingV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/ingressclasses": { + "delete": { + "description": "delete collection of IngressClass", + "operationId": "deleteNetworkingV1CollectionIngressClass", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind IngressClass", + "operationId": "listNetworkingV1IngressClass", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create an IngressClass", + "operationId": "createNetworkingV1IngressClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1.IngressClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/ingressclasses/{name}": { + "delete": { + "description": "delete an IngressClass", + "operationId": "deleteNetworkingV1IngressClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified IngressClass", + "operationId": "readNetworkingV1IngressClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the IngressClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified IngressClass", + "operationId": "patchNetworkingV1IngressClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified IngressClass", + "operationId": "replaceNetworkingV1IngressClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1.IngressClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/ingresses": { + "get": { + "description": "list or watch objects of kind Ingress", + "operationId": "listNetworkingV1IngressForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses": { + "delete": { + "description": "delete collection of Ingress", + "operationId": "deleteNetworkingV1CollectionNamespacedIngress", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Ingress", + "operationId": "listNetworkingV1NamespacedIngress", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create an Ingress", + "operationId": "createNetworkingV1NamespacedIngress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1.Ingress" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}": { + "delete": { + "description": "delete an Ingress", + "operationId": "deleteNetworkingV1NamespacedIngress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Ingress", + "operationId": "readNetworkingV1NamespacedIngress", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Ingress", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Ingress", + "operationId": "patchNetworkingV1NamespacedIngress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Ingress", + "operationId": "replaceNetworkingV1NamespacedIngress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1.Ingress" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/namespaces/{namespace}/ingresses/{name}/status": { + "get": { + "description": "read status of the specified Ingress", + "operationId": "readNetworkingV1NamespacedIngressStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Ingress", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified Ingress", + "operationId": "patchNetworkingV1NamespacedIngressStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified Ingress", + "operationId": "replaceNetworkingV1NamespacedIngressStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1.Ingress" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies": { + "delete": { + "description": "delete collection of NetworkPolicy", + "operationId": "deleteNetworkingV1CollectionNamespacedNetworkPolicy", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind NetworkPolicy", + "operationId": "listNetworkingV1NamespacedNetworkPolicy", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a NetworkPolicy", + "operationId": "createNetworkingV1NamespacedNetworkPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1.NetworkPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}": { + "delete": { + "description": "delete a NetworkPolicy", + "operationId": "deleteNetworkingV1NamespacedNetworkPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified NetworkPolicy", + "operationId": "readNetworkingV1NamespacedNetworkPolicy", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the NetworkPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified NetworkPolicy", + "operationId": "patchNetworkingV1NamespacedNetworkPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified NetworkPolicy", + "operationId": "replaceNetworkingV1NamespacedNetworkPolicy", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1.NetworkPolicy" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1/networkpolicies": { + "get": { + "description": "list or watch objects of kind NetworkPolicy", + "operationId": "listNetworkingV1NetworkPolicyForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/ingressclasses": { + "get": { + "description": "watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNetworkingV1IngressClassList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/ingressclasses/{name}": { + "get": { + "description": "watch changes to an object of kind IngressClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchNetworkingV1IngressClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the IngressClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/ingresses": { + "get": { + "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNetworkingV1IngressListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses": { + "get": { + "description": "watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNetworkingV1NamespacedIngressList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/ingresses/{name}": { + "get": { + "description": "watch changes to an object of kind Ingress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchNetworkingV1NamespacedIngress", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Ingress", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies": { + "get": { + "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNetworkingV1NamespacedNetworkPolicyList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}": { + "get": { + "description": "watch changes to an object of kind NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchNetworkingV1NamespacedNetworkPolicy", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the NetworkPolicy", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1/watch/networkpolicies": { + "get": { + "description": "watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNetworkingV1NetworkPolicyListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1alpha1/": { + "get": { + "description": "get available resources", + "operationId": "getNetworkingV1alpha1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "servers": [] + } + }, + "/apis/networking.k8s.io/v1alpha1/clustercidrs": { + "delete": { + "description": "delete collection of ClusterCIDR", + "operationId": "deleteNetworkingV1alpha1CollectionClusterCIDR", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ClusterCIDR", + "operationId": "listNetworkingV1alpha1ClusterCIDR", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDRList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDRList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDRList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDRList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDRList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ClusterCIDR", + "operationId": "createNetworkingV1alpha1ClusterCIDR", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1alpha1.ClusterCIDR" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1alpha1/clustercidrs/{name}": { + "delete": { + "description": "delete a ClusterCIDR", + "operationId": "deleteNetworkingV1alpha1ClusterCIDR", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ClusterCIDR", + "operationId": "readNetworkingV1alpha1ClusterCIDR", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ClusterCIDR", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ClusterCIDR", + "operationId": "patchNetworkingV1alpha1ClusterCIDR", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ClusterCIDR", + "operationId": "replaceNetworkingV1alpha1ClusterCIDR", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1alpha1.ClusterCIDR" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1alpha1/ipaddresses": { + "delete": { + "description": "delete collection of IPAddress", + "operationId": "deleteNetworkingV1alpha1CollectionIPAddress", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind IPAddress", + "operationId": "listNetworkingV1alpha1IPAddress", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddressList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddressList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddressList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddressList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddressList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create an IPAddress", + "operationId": "createNetworkingV1alpha1IPAddress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1alpha1.IPAddress" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1alpha1/ipaddresses/{name}": { + "delete": { + "description": "delete an IPAddress", + "operationId": "deleteNetworkingV1alpha1IPAddress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + }, + "get": { + "description": "read the specified IPAddress", + "operationId": "readNetworkingV1alpha1IPAddress", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the IPAddress", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified IPAddress", + "operationId": "patchNetworkingV1alpha1IPAddress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified IPAddress", + "operationId": "replaceNetworkingV1alpha1IPAddress", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.networking.v1alpha1.IPAddress" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + } + }, + "/apis/networking.k8s.io/v1alpha1/watch/clustercidrs": { + "get": { + "description": "watch individual changes to a list of ClusterCIDR. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNetworkingV1alpha1ClusterCIDRList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1alpha1/watch/clustercidrs/{name}": { + "get": { + "description": "watch changes to an object of kind ClusterCIDR. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchNetworkingV1alpha1ClusterCIDR", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ClusterCIDR", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1alpha1/watch/ipaddresses": { + "get": { + "description": "watch individual changes to a list of IPAddress. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNetworkingV1alpha1IPAddressList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/networking.k8s.io/v1alpha1/watch/ipaddresses/{name}": { + "get": { + "description": "watch changes to an object of kind IPAddress. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchNetworkingV1alpha1IPAddress", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["networking_v1alpha1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the IPAddress", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/node.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getNodeAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node"], + "servers": [] + } + }, + "/apis/node.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getNodeV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "servers": [] + } + }, + "/apis/node.k8s.io/v1/runtimeclasses": { + "delete": { + "description": "delete collection of RuntimeClass", + "operationId": "deleteNodeV1CollectionRuntimeClass", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind RuntimeClass", + "operationId": "listNodeV1RuntimeClass", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClassList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClassList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClassList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClassList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClassList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a RuntimeClass", + "operationId": "createNodeV1RuntimeClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.node.v1.RuntimeClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/node.k8s.io/v1/runtimeclasses/{name}": { + "delete": { + "description": "delete a RuntimeClass", + "operationId": "deleteNodeV1RuntimeClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified RuntimeClass", + "operationId": "readNodeV1RuntimeClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the RuntimeClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified RuntimeClass", + "operationId": "patchNodeV1RuntimeClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified RuntimeClass", + "operationId": "replaceNodeV1RuntimeClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.node.v1.RuntimeClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/node.k8s.io/v1/watch/runtimeclasses": { + "get": { + "description": "watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchNodeV1RuntimeClassList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/node.k8s.io/v1/watch/runtimeclasses/{name}": { + "get": { + "description": "watch changes to an object of kind RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchNodeV1RuntimeClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["node_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the RuntimeClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/policy/": { + "get": { + "description": "get information of a group", + "operationId": "getPolicyAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy"], + "servers": [] + } + }, + "/apis/policy/v1/": { + "get": { + "description": "get available resources", + "operationId": "getPolicyV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "servers": [] + } + }, + "/apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets": { + "delete": { + "description": "delete collection of PodDisruptionBudget", + "operationId": "deletePolicyV1CollectionNamespacedPodDisruptionBudget", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PodDisruptionBudget", + "operationId": "listPolicyV1NamespacedPodDisruptionBudget", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PodDisruptionBudget", + "operationId": "createPolicyV1NamespacedPodDisruptionBudget", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.policy.v1.PodDisruptionBudget" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}": { + "delete": { + "description": "delete a PodDisruptionBudget", + "operationId": "deletePolicyV1NamespacedPodDisruptionBudget", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified PodDisruptionBudget", + "operationId": "readPolicyV1NamespacedPodDisruptionBudget", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodDisruptionBudget", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PodDisruptionBudget", + "operationId": "patchPolicyV1NamespacedPodDisruptionBudget", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PodDisruptionBudget", + "operationId": "replacePolicyV1NamespacedPodDisruptionBudget", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.policy.v1.PodDisruptionBudget" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": { + "get": { + "description": "read status of the specified PodDisruptionBudget", + "operationId": "readPolicyV1NamespacedPodDisruptionBudgetStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodDisruptionBudget", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified PodDisruptionBudget", + "operationId": "patchPolicyV1NamespacedPodDisruptionBudgetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified PodDisruptionBudget", + "operationId": "replacePolicyV1NamespacedPodDisruptionBudgetStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.policy.v1.PodDisruptionBudget" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/policy/v1/poddisruptionbudgets": { + "get": { + "description": "list or watch objects of kind PodDisruptionBudget", + "operationId": "listPolicyV1PodDisruptionBudgetForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/policy/v1/watch/namespaces/{namespace}/poddisruptionbudgets": { + "get": { + "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchPolicyV1NamespacedPodDisruptionBudgetList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/policy/v1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": { + "get": { + "description": "watch changes to an object of kind PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchPolicyV1NamespacedPodDisruptionBudget", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PodDisruptionBudget", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/policy/v1/watch/poddisruptionbudgets": { + "get": { + "description": "watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchPolicyV1PodDisruptionBudgetListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["policy_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getRbacAuthorizationAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization"], + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getRbacAuthorizationV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings": { + "delete": { + "description": "delete collection of ClusterRoleBinding", + "operationId": "deleteRbacAuthorizationV1CollectionClusterRoleBinding", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ClusterRoleBinding", + "operationId": "listRbacAuthorizationV1ClusterRoleBinding", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ClusterRoleBinding", + "operationId": "createRbacAuthorizationV1ClusterRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.ClusterRoleBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}": { + "delete": { + "description": "delete a ClusterRoleBinding", + "operationId": "deleteRbacAuthorizationV1ClusterRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ClusterRoleBinding", + "operationId": "readRbacAuthorizationV1ClusterRoleBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ClusterRoleBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ClusterRoleBinding", + "operationId": "patchRbacAuthorizationV1ClusterRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ClusterRoleBinding", + "operationId": "replaceRbacAuthorizationV1ClusterRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.ClusterRoleBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/clusterroles": { + "delete": { + "description": "delete collection of ClusterRole", + "operationId": "deleteRbacAuthorizationV1CollectionClusterRole", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ClusterRole", + "operationId": "listRbacAuthorizationV1ClusterRole", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ClusterRole", + "operationId": "createRbacAuthorizationV1ClusterRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.ClusterRole" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}": { + "delete": { + "description": "delete a ClusterRole", + "operationId": "deleteRbacAuthorizationV1ClusterRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified ClusterRole", + "operationId": "readRbacAuthorizationV1ClusterRole", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ClusterRole", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ClusterRole", + "operationId": "patchRbacAuthorizationV1ClusterRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ClusterRole", + "operationId": "replaceRbacAuthorizationV1ClusterRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.ClusterRole" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings": { + "delete": { + "description": "delete collection of RoleBinding", + "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRoleBinding", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind RoleBinding", + "operationId": "listRbacAuthorizationV1NamespacedRoleBinding", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a RoleBinding", + "operationId": "createRbacAuthorizationV1NamespacedRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.RoleBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}": { + "delete": { + "description": "delete a RoleBinding", + "operationId": "deleteRbacAuthorizationV1NamespacedRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified RoleBinding", + "operationId": "readRbacAuthorizationV1NamespacedRoleBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the RoleBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified RoleBinding", + "operationId": "patchRbacAuthorizationV1NamespacedRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified RoleBinding", + "operationId": "replaceRbacAuthorizationV1NamespacedRoleBinding", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.RoleBinding" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles": { + "delete": { + "description": "delete collection of Role", + "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRole", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind Role", + "operationId": "listRbacAuthorizationV1NamespacedRole", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a Role", + "operationId": "createRbacAuthorizationV1NamespacedRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.Role" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}": { + "delete": { + "description": "delete a Role", + "operationId": "deleteRbacAuthorizationV1NamespacedRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified Role", + "operationId": "readRbacAuthorizationV1NamespacedRole", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the Role", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified Role", + "operationId": "patchRbacAuthorizationV1NamespacedRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified Role", + "operationId": "replaceRbacAuthorizationV1NamespacedRole", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.rbac.v1.Role" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/rbac.authorization.k8s.io/v1/rolebindings": { + "get": { + "description": "list or watch objects of kind RoleBinding", + "operationId": "listRbacAuthorizationV1RoleBindingForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/roles": { + "get": { + "description": "list or watch objects of kind Role", + "operationId": "listRbacAuthorizationV1RoleForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings": { + "get": { + "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchRbacAuthorizationV1ClusterRoleBindingList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}": { + "get": { + "description": "watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchRbacAuthorizationV1ClusterRoleBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ClusterRoleBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles": { + "get": { + "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchRbacAuthorizationV1ClusterRoleList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}": { + "get": { + "description": "watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchRbacAuthorizationV1ClusterRole", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ClusterRole", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings": { + "get": { + "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchRbacAuthorizationV1NamespacedRoleBindingList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}": { + "get": { + "description": "watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchRbacAuthorizationV1NamespacedRoleBinding", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the RoleBinding", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles": { + "get": { + "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchRbacAuthorizationV1NamespacedRoleList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}": { + "get": { + "description": "watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchRbacAuthorizationV1NamespacedRole", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the Role", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/rolebindings": { + "get": { + "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchRbacAuthorizationV1RoleBindingListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/rbac.authorization.k8s.io/v1/watch/roles": { + "get": { + "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchRbacAuthorizationV1RoleListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["rbacAuthorization_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getResourceAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource"], + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/": { + "get": { + "description": "get available resources", + "operationId": "getResourceV1alpha2APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts": { + "delete": { + "description": "delete collection of PodSchedulingContext", + "operationId": "deleteResourceV1alpha2CollectionNamespacedPodSchedulingContext", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PodSchedulingContext", + "operationId": "listResourceV1alpha2NamespacedPodSchedulingContext", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PodSchedulingContext", + "operationId": "createResourceV1alpha2NamespacedPodSchedulingContext", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts/{name}": { + "delete": { + "description": "delete a PodSchedulingContext", + "operationId": "deleteResourceV1alpha2NamespacedPodSchedulingContext", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "read the specified PodSchedulingContext", + "operationId": "readResourceV1alpha2NamespacedPodSchedulingContext", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodSchedulingContext", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PodSchedulingContext", + "operationId": "patchResourceV1alpha2NamespacedPodSchedulingContext", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PodSchedulingContext", + "operationId": "replaceResourceV1alpha2NamespacedPodSchedulingContext", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/podschedulingcontexts/{name}/status": { + "get": { + "description": "read status of the specified PodSchedulingContext", + "operationId": "readResourceV1alpha2NamespacedPodSchedulingContextStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PodSchedulingContext", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified PodSchedulingContext", + "operationId": "patchResourceV1alpha2NamespacedPodSchedulingContextStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified PodSchedulingContext", + "operationId": "replaceResourceV1alpha2NamespacedPodSchedulingContextStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims": { + "delete": { + "description": "delete collection of ResourceClaim", + "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaim", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ResourceClaim", + "operationId": "listResourceV1alpha2NamespacedResourceClaim", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ResourceClaim", + "operationId": "createResourceV1alpha2NamespacedResourceClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.ResourceClaim" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims/{name}": { + "delete": { + "description": "delete a ResourceClaim", + "operationId": "deleteResourceV1alpha2NamespacedResourceClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "read the specified ResourceClaim", + "operationId": "readResourceV1alpha2NamespacedResourceClaim", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ResourceClaim", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ResourceClaim", + "operationId": "patchResourceV1alpha2NamespacedResourceClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ResourceClaim", + "operationId": "replaceResourceV1alpha2NamespacedResourceClaim", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.ResourceClaim" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaims/{name}/status": { + "get": { + "description": "read status of the specified ResourceClaim", + "operationId": "readResourceV1alpha2NamespacedResourceClaimStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ResourceClaim", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified ResourceClaim", + "operationId": "patchResourceV1alpha2NamespacedResourceClaimStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified ResourceClaim", + "operationId": "replaceResourceV1alpha2NamespacedResourceClaimStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.ResourceClaim" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimtemplates": { + "delete": { + "description": "delete collection of ResourceClaimTemplate", + "operationId": "deleteResourceV1alpha2CollectionNamespacedResourceClaimTemplate", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ResourceClaimTemplate", + "operationId": "listResourceV1alpha2NamespacedResourceClaimTemplate", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ResourceClaimTemplate", + "operationId": "createResourceV1alpha2NamespacedResourceClaimTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/namespaces/{namespace}/resourceclaimtemplates/{name}": { + "delete": { + "description": "delete a ResourceClaimTemplate", + "operationId": "deleteResourceV1alpha2NamespacedResourceClaimTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "read the specified ResourceClaimTemplate", + "operationId": "readResourceV1alpha2NamespacedResourceClaimTemplate", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ResourceClaimTemplate", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ResourceClaimTemplate", + "operationId": "patchResourceV1alpha2NamespacedResourceClaimTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ResourceClaimTemplate", + "operationId": "replaceResourceV1alpha2NamespacedResourceClaimTemplate", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/podschedulingcontexts": { + "get": { + "description": "list or watch objects of kind PodSchedulingContext", + "operationId": "listResourceV1alpha2PodSchedulingContextForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/resourceclaims": { + "get": { + "description": "list or watch objects of kind ResourceClaim", + "operationId": "listResourceV1alpha2ResourceClaimForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/resourceclaimtemplates": { + "get": { + "description": "list or watch objects of kind ResourceClaimTemplate", + "operationId": "listResourceV1alpha2ResourceClaimTemplateForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/resourceclasses": { + "delete": { + "description": "delete collection of ResourceClass", + "operationId": "deleteResourceV1alpha2CollectionResourceClass", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind ResourceClass", + "operationId": "listResourceV1alpha2ResourceClass", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a ResourceClass", + "operationId": "createResourceV1alpha2ResourceClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.ResourceClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/resourceclasses/{name}": { + "delete": { + "description": "delete a ResourceClass", + "operationId": "deleteResourceV1alpha2ResourceClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + }, + "get": { + "description": "read the specified ResourceClass", + "operationId": "readResourceV1alpha2ResourceClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the ResourceClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified ResourceClass", + "operationId": "patchResourceV1alpha2ResourceClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + }, + "put": { + "description": "replace the specified ResourceClass", + "operationId": "replaceResourceV1alpha2ResourceClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.resource.v1alpha2.ResourceClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + } + }, + "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/podschedulingcontexts": { + "get": { + "description": "watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchResourceV1alpha2NamespacedPodSchedulingContextList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/podschedulingcontexts/{name}": { + "get": { + "description": "watch changes to an object of kind PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchResourceV1alpha2NamespacedPodSchedulingContext", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PodSchedulingContext", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaims": { + "get": { + "description": "watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchResourceV1alpha2NamespacedResourceClaimList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaims/{name}": { + "get": { + "description": "watch changes to an object of kind ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchResourceV1alpha2NamespacedResourceClaim", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ResourceClaim", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimtemplates": { + "get": { + "description": "watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchResourceV1alpha2NamespacedResourceClaimTemplateList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/namespaces/{namespace}/resourceclaimtemplates/{name}": { + "get": { + "description": "watch changes to an object of kind ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchResourceV1alpha2NamespacedResourceClaimTemplate", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ResourceClaimTemplate", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/podschedulingcontexts": { + "get": { + "description": "watch individual changes to a list of PodSchedulingContext. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchResourceV1alpha2PodSchedulingContextListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/resourceclaims": { + "get": { + "description": "watch individual changes to a list of ResourceClaim. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchResourceV1alpha2ResourceClaimListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/resourceclaimtemplates": { + "get": { + "description": "watch individual changes to a list of ResourceClaimTemplate. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchResourceV1alpha2ResourceClaimTemplateListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/resourceclasses": { + "get": { + "description": "watch individual changes to a list of ResourceClass. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchResourceV1alpha2ResourceClassList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/resource.k8s.io/v1alpha2/watch/resourceclasses/{name}": { + "get": { + "description": "watch changes to an object of kind ResourceClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchResourceV1alpha2ResourceClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["resource_v1alpha2"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the ResourceClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/scheduling.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getSchedulingAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling"], + "servers": [] + } + }, + "/apis/scheduling.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getSchedulingV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "servers": [] + } + }, + "/apis/scheduling.k8s.io/v1/priorityclasses": { + "delete": { + "description": "delete collection of PriorityClass", + "operationId": "deleteSchedulingV1CollectionPriorityClass", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind PriorityClass", + "operationId": "listSchedulingV1PriorityClass", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClassList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClassList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClassList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClassList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClassList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a PriorityClass", + "operationId": "createSchedulingV1PriorityClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.scheduling.v1.PriorityClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/scheduling.k8s.io/v1/priorityclasses/{name}": { + "delete": { + "description": "delete a PriorityClass", + "operationId": "deleteSchedulingV1PriorityClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified PriorityClass", + "operationId": "readSchedulingV1PriorityClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the PriorityClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified PriorityClass", + "operationId": "patchSchedulingV1PriorityClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified PriorityClass", + "operationId": "replaceSchedulingV1PriorityClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.scheduling.v1.PriorityClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/scheduling.k8s.io/v1/watch/priorityclasses": { + "get": { + "description": "watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchSchedulingV1PriorityClassList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/scheduling.k8s.io/v1/watch/priorityclasses/{name}": { + "get": { + "description": "watch changes to an object of kind PriorityClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchSchedulingV1PriorityClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["scheduling_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the PriorityClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/": { + "get": { + "description": "get information of a group", + "operationId": "getStorageAPIGroup", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage"], + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/": { + "get": { + "description": "get available resources", + "operationId": "getStorageV1APIResources", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/csidrivers": { + "delete": { + "description": "delete collection of CSIDriver", + "operationId": "deleteStorageV1CollectionCSIDriver", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind CSIDriver", + "operationId": "listStorageV1CSIDriver", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriverList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriverList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriverList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriverList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriverList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a CSIDriver", + "operationId": "createStorageV1CSIDriver", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.CSIDriver" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/csidrivers/{name}": { + "delete": { + "description": "delete a CSIDriver", + "operationId": "deleteStorageV1CSIDriver", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified CSIDriver", + "operationId": "readStorageV1CSIDriver", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CSIDriver", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified CSIDriver", + "operationId": "patchStorageV1CSIDriver", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified CSIDriver", + "operationId": "replaceStorageV1CSIDriver", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.CSIDriver" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/csinodes": { + "delete": { + "description": "delete collection of CSINode", + "operationId": "deleteStorageV1CollectionCSINode", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind CSINode", + "operationId": "listStorageV1CSINode", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINodeList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINodeList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINodeList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINodeList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINodeList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a CSINode", + "operationId": "createStorageV1CSINode", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.CSINode" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/csinodes/{name}": { + "delete": { + "description": "delete a CSINode", + "operationId": "deleteStorageV1CSINode", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified CSINode", + "operationId": "readStorageV1CSINode", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CSINode", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified CSINode", + "operationId": "patchStorageV1CSINode", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified CSINode", + "operationId": "replaceStorageV1CSINode", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.CSINode" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/csistoragecapacities": { + "get": { + "description": "list or watch objects of kind CSIStorageCapacity", + "operationId": "listStorageV1CSIStorageCapacityForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/namespaces/{namespace}/csistoragecapacities": { + "delete": { + "description": "delete collection of CSIStorageCapacity", + "operationId": "deleteStorageV1CollectionNamespacedCSIStorageCapacity", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind CSIStorageCapacity", + "operationId": "listStorageV1NamespacedCSIStorageCapacity", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacityList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a CSIStorageCapacity", + "operationId": "createStorageV1NamespacedCSIStorageCapacity", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.CSIStorageCapacity" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/namespaces/{namespace}/csistoragecapacities/{name}": { + "delete": { + "description": "delete a CSIStorageCapacity", + "operationId": "deleteStorageV1NamespacedCSIStorageCapacity", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified CSIStorageCapacity", + "operationId": "readStorageV1NamespacedCSIStorageCapacity", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the CSIStorageCapacity", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified CSIStorageCapacity", + "operationId": "patchStorageV1NamespacedCSIStorageCapacity", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified CSIStorageCapacity", + "operationId": "replaceStorageV1NamespacedCSIStorageCapacity", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.CSIStorageCapacity" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/storageclasses": { + "delete": { + "description": "delete collection of StorageClass", + "operationId": "deleteStorageV1CollectionStorageClass", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind StorageClass", + "operationId": "listStorageV1StorageClass", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClassList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClassList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClassList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClassList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClassList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a StorageClass", + "operationId": "createStorageV1StorageClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.StorageClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/storageclasses/{name}": { + "delete": { + "description": "delete a StorageClass", + "operationId": "deleteStorageV1StorageClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified StorageClass", + "operationId": "readStorageV1StorageClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the StorageClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified StorageClass", + "operationId": "patchStorageV1StorageClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified StorageClass", + "operationId": "replaceStorageV1StorageClass", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.StorageClass" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/volumeattachments": { + "delete": { + "description": "delete collection of VolumeAttachment", + "operationId": "deleteStorageV1CollectionVolumeAttachment", + "parameters": [ + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "list or watch objects of kind VolumeAttachment", + "operationId": "listStorageV1VolumeAttachment", + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentList" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentList" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentList" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentList" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentList" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "post": { + "description": "create a VolumeAttachment", + "operationId": "createStorageV1VolumeAttachment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.VolumeAttachment" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/volumeattachments/{name}": { + "delete": { + "description": "delete a VolumeAttachment", + "operationId": "deleteStorageV1VolumeAttachment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/gracePeriodSeconds--K5HaBOS" + }, + { + "$ref": "#/components/parameters/orphanDependents-uRB25kX5" + }, + { + "$ref": "#/components/parameters/propagationPolicy-6jk3prlO" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "202": { + "description": "Accepted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "get": { + "description": "read the specified VolumeAttachment", + "operationId": "readStorageV1VolumeAttachment", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the VolumeAttachment", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update the specified VolumeAttachment", + "operationId": "patchStorageV1VolumeAttachment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace the specified VolumeAttachment", + "operationId": "replaceStorageV1VolumeAttachment", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.VolumeAttachment" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/volumeattachments/{name}/status": { + "get": { + "description": "read status of the specified VolumeAttachment", + "operationId": "readStorageV1VolumeAttachmentStatus", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "description": "name of the VolumeAttachment", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + } + ], + "patch": { + "description": "partially update status of the specified VolumeAttachment", + "operationId": "patchStorageV1VolumeAttachmentStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-7c6nTn1T" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/force-tOGGb0Yi" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "put": { + "description": "replace status of the specified VolumeAttachment", + "operationId": "replaceStorageV1VolumeAttachmentStatus", + "parameters": [ + { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "in": "query", + "name": "dryRun", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/fieldManager-Qy4HdaTW" + }, + { + "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", + "in": "query", + "name": "fieldValidation", + "schema": { + "type": "string", + "uniqueItems": true + } + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/io.k8s.api.storage.v1.VolumeAttachment" + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "201": { + "description": "Created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + } + }, + "/apis/storage.k8s.io/v1/watch/csidrivers": { + "get": { + "description": "watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchStorageV1CSIDriverList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/csidrivers/{name}": { + "get": { + "description": "watch changes to an object of kind CSIDriver. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchStorageV1CSIDriver", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the CSIDriver", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/csinodes": { + "get": { + "description": "watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchStorageV1CSINodeList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/csinodes/{name}": { + "get": { + "description": "watch changes to an object of kind CSINode. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchStorageV1CSINode", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the CSINode", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/csistoragecapacities": { + "get": { + "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchStorageV1CSIStorageCapacityListForAllNamespaces", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/namespaces/{namespace}/csistoragecapacities": { + "get": { + "description": "watch individual changes to a list of CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchStorageV1NamespacedCSIStorageCapacityList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/namespaces/{namespace}/csistoragecapacities/{name}": { + "get": { + "description": "watch changes to an object of kind CSIStorageCapacity. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchStorageV1NamespacedCSIStorageCapacity", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the CSIStorageCapacity", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/namespace-vgWSWtn3" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/storageclasses": { + "get": { + "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchStorageV1StorageClassList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/storageclasses/{name}": { + "get": { + "description": "watch changes to an object of kind StorageClass. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchStorageV1StorageClass", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the StorageClass", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/volumeattachments": { + "get": { + "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.", + "operationId": "watchStorageV1VolumeAttachmentList", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}": { + "get": { + "description": "watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "operationId": "watchStorageV1VolumeAttachment", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/json;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "application/vnd.kubernetes.protobuf;stream=watch": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["storage_v1"], + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + }, + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/allowWatchBookmarks-HC2hJt-J" + }, + { + "$ref": "#/components/parameters/continue-QfD61s0i" + }, + { + "$ref": "#/components/parameters/fieldSelector-xIcQKXFG" + }, + { + "$ref": "#/components/parameters/labelSelector-5Zw57w4C" + }, + { + "$ref": "#/components/parameters/limit-1NfNmdNH" + }, + { + "description": "name of the VolumeAttachment", + "in": "path", + "name": "name", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + { + "$ref": "#/components/parameters/pretty-nN7o5FEq" + }, + { + "$ref": "#/components/parameters/resourceVersion-5WAnf1kx" + }, + { + "$ref": "#/components/parameters/resourceVersionMatch-t8XhRHeC" + }, + { + "$ref": "#/components/parameters/sendInitialEvents-rLXlEK_k" + }, + { + "$ref": "#/components/parameters/timeoutSeconds-yvYezaOC" + }, + { + "$ref": "#/components/parameters/watch-XNNPZGbK" + } + ] + }, + "/logs/": { + "get": { + "operationId": "logFileListHandler", + "responses": { + "401": { + "description": "Unauthorized" + } + }, + "tags": ["logs"], + "servers": [] + } + }, + "/logs/{logpath}": { + "get": { + "operationId": "logFileHandler", + "responses": { + "401": { + "description": "Unauthorized" + } + }, + "tags": ["logs"], + "servers": [] + }, + "parameters": [ + { + "$ref": "#/components/parameters/logpath-Noq7euwC" + } + ] + }, + "/openid/v1/jwks/": { + "get": { + "description": "get service account issuer OpenID JSON Web Key Set (contains public token verification keys)", + "operationId": "getServiceAccountIssuerOpenIDKeyset", + "responses": { + "200": { + "description": "OK", + "content": { + "application/jwk-set+json": { + "schema": { + "type": "string" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["openid"], + "servers": [] + } + }, + "/version/": { + "get": { + "description": "get the code version", + "operationId": "getCodeVersion", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.version.Info" + } + } + } + }, + "401": { + "description": "Unauthorized" + } + }, + "tags": ["version"], + "servers": [] + } + } + }, + "security": [ + { + "BearerToken": [] + } + ], + "components": { + "parameters": { + "allowWatchBookmarks-HC2hJt-J": { + "description": "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.", + "in": "query", + "name": "allowWatchBookmarks", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "command-Py3eQybp": { + "description": "Command is the remote command to execute. argv array. Not executed within a shell.", + "in": "query", + "name": "command", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "container-1GeXxFDC": { + "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.", + "in": "query", + "name": "container", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "container-_Q-EJ3nR": { + "description": "The container in which to execute the command. Defaults to only container if there is only one container in the pod.", + "in": "query", + "name": "container", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "container-i5dOmRiM": { + "description": "Container in which to execute the command. Defaults to only container if there is only one container in the pod.", + "in": "query", + "name": "container", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "continue-QfD61s0i": { + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "in": "query", + "name": "continue", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "fieldManager-7c6nTn1T": { + "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", + "in": "query", + "name": "fieldManager", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "fieldManager-Qy4HdaTW": { + "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", + "in": "query", + "name": "fieldManager", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "fieldSelector-xIcQKXFG": { + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "in": "query", + "name": "fieldSelector", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "follow-9OIXh_2R": { + "description": "Follow the log stream of the pod. Defaults to false.", + "in": "query", + "name": "follow", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "force-tOGGb0Yi": { + "description": "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.", + "in": "query", + "name": "force", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "gracePeriodSeconds--K5HaBOS": { + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "in": "query", + "name": "gracePeriodSeconds", + "schema": { + "type": "integer", + "uniqueItems": true + } + }, + "insecureSkipTLSVerifyBackend-gM00jVbe": { + "description": "insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet).", + "in": "query", + "name": "insecureSkipTLSVerifyBackend", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "labelSelector-5Zw57w4C": { + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "in": "query", + "name": "labelSelector", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "limit-1NfNmdNH": { + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", + "in": "query", + "name": "limit", + "schema": { + "type": "integer", + "uniqueItems": true + } + }, + "limitBytes-zwd1RXuc": { + "description": "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.", + "in": "query", + "name": "limitBytes", + "schema": { + "type": "integer", + "uniqueItems": true + } + }, + "logpath-Noq7euwC": { + "description": "path to the log", + "in": "path", + "name": "logpath", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "namespace-vgWSWtn3": { + "description": "object name and auth scope, such as for teams and projects", + "in": "path", + "name": "namespace", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "orphanDependents-uRB25kX5": { + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "in": "query", + "name": "orphanDependents", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "path-QCf0eosM": { + "description": "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.", + "in": "query", + "name": "path", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "path-oPbzgLUj": { + "description": "Path is the URL path to use for the current proxy request to pod.", + "in": "query", + "name": "path", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "path-rFDtV0x9": { + "description": "Path is the URL path to use for the current proxy request to node.", + "in": "query", + "name": "path", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "path-z6Ciiujn": { + "description": "path to the resource", + "in": "path", + "name": "path", + "required": true, + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "ports-91KROJmm": { + "description": "List of ports to forward Required when using WebSockets", + "in": "query", + "name": "ports", + "schema": { + "type": "integer", + "uniqueItems": true + } + }, + "pretty-nN7o5FEq": { + "description": "If 'true', then the output is pretty printed.", + "in": "query", + "name": "pretty", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "previous-1jxDPu3y": { + "description": "Return previous terminated container logs. Defaults to false.", + "in": "query", + "name": "previous", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "propagationPolicy-6jk3prlO": { + "description": "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.", + "in": "query", + "name": "propagationPolicy", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "resourceVersion-5WAnf1kx": { + "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", + "in": "query", + "name": "resourceVersion", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "resourceVersionMatch-t8XhRHeC": { + "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", + "in": "query", + "name": "resourceVersionMatch", + "schema": { + "type": "string", + "uniqueItems": true + } + }, + "sendInitialEvents-rLXlEK_k": { + "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.", + "in": "query", + "name": "sendInitialEvents", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "sinceSeconds-vE2NLdnP": { + "description": "A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.", + "in": "query", + "name": "sinceSeconds", + "schema": { + "type": "integer", + "uniqueItems": true + } + }, + "stderr-26jJhFUR": { + "description": "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.", + "in": "query", + "name": "stderr", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "stderr-W_1TNlWc": { + "description": "Redirect the standard error stream of the pod for this call.", + "in": "query", + "name": "stderr", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "stdin-PSzNhyUC": { + "description": "Redirect the standard input stream of the pod for this call. Defaults to false.", + "in": "query", + "name": "stdin", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "stdin-sEFnN3IS": { + "description": "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.", + "in": "query", + "name": "stdin", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "stdout--EZLRwV1": { + "description": "Redirect the standard output stream of the pod for this call.", + "in": "query", + "name": "stdout", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "stdout-005YMKE6": { + "description": "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.", + "in": "query", + "name": "stdout", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "tailLines-2fRTNzbP": { + "description": "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime", + "in": "query", + "name": "tailLines", + "schema": { + "type": "integer", + "uniqueItems": true + } + }, + "timeoutSeconds-yvYezaOC": { + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "in": "query", + "name": "timeoutSeconds", + "schema": { + "type": "integer", + "uniqueItems": true + } + }, + "timestamps-c17fW1w_": { + "description": "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.", + "in": "query", + "name": "timestamps", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "tty-g7MlET_l": { + "description": "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.", + "in": "query", + "name": "tty", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "tty-s0flW37O": { + "description": "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.", + "in": "query", + "name": "tty", + "schema": { + "type": "boolean", + "uniqueItems": true + } + }, + "watch-XNNPZGbK": { + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "in": "query", + "name": "watch", + "schema": { + "type": "boolean", + "uniqueItems": true + } + } + }, + "requestBodies": { + "io.k8s.api.core.v1.Secret": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.LimitRange": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + } + } + }, + "required": true + }, + "io.k8s.api.storage.v1.VolumeAttachment": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + } + } + }, + "required": true + }, + "io.k8s.api.flowcontrol.v1beta3.FlowSchema": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + } + } + }, + "required": true + }, + "io.k8s.api.node.v1.RuntimeClass": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + } + } + }, + "required": true + }, + "io.k8s.api.apps.v1.Deployment": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.ServiceAccount": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + } + } + }, + "required": true + }, + "io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + } + } + }, + "required": true + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + } + } + }, + "required": true + }, + "io.k8s.api.apps.v1.DaemonSet": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + } + } + }, + "required": true + }, + "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.Service": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + } + } + }, + "required": true + }, + "io.k8s.api.rbac.v1.RoleBinding": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + } + } + }, + "required": true + }, + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + } + } + }, + "required": true + }, + "io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + } + } + }, + "required": true + }, + "io.k8s.api.apps.v1.ReplicaSet": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + } + } + }, + "required": true + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplate": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.Namespace": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + } + } + }, + "required": true + }, + "io.k8s.api.storage.v1.CSIStorageCapacity": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + } + } + }, + "required": true + }, + "io.k8s.api.batch.v1.Job": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.Node": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + } + } + }, + "required": true + }, + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundle": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.ReplicationController": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + } + } + }, + "required": true + }, + "io.k8s.api.events.v1.Event": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + } + } + }, + "required": true + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + } + } + } + }, + "io.k8s.api.storage.v1.CSIDriver": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + } + } + }, + "required": true + }, + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + } + } + }, + "required": true + }, + "io.k8s.api.autoscaling.v1.Scale": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" + } + } + }, + "required": true + }, + "io.k8s.api.rbac.v1.ClusterRole": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + } + } + }, + "required": true + }, + "io.k8s.api.discovery.v1.EndpointSlice": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + } + } + }, + "required": true + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + } + } + }, + "required": true + }, + "io.k8s.api.coordination.v1.Lease": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.ConfigMap": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + } + } + }, + "required": true + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.Binding": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Binding" + } + } + }, + "required": true + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + } + }, + "application/merge-patch+json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + } + }, + "application/strategic-merge-patch+json": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + } + }, + "application/apply-patch+yaml": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.Endpoints": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.Event": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.PersistentVolumeClaim": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.Pod": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.PodTemplate": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.ResourceQuota": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + } + } + }, + "required": true + }, + "io.k8s.api.core.v1.PersistentVolume": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + } + } + }, + "required": true + }, + "io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + } + } + }, + "required": true + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + } + } + }, + "required": true + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + } + } + }, + "required": true + }, + "io.k8s.api.apps.v1.ControllerRevision": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + } + } + }, + "required": true + }, + "io.k8s.api.apps.v1.StatefulSet": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + } + } + }, + "required": true + }, + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + } + } + }, + "required": true + }, + "io.k8s.api.batch.v1.CronJob": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + } + } + }, + "required": true + }, + "io.k8s.api.certificates.v1.CertificateSigningRequest": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + } + } + }, + "required": true + }, + "io.k8s.api.flowcontrol.v1beta2.FlowSchema": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + } + } + }, + "required": true + }, + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + } + } + }, + "required": true + }, + "io.k8s.api.networking.v1.IngressClass": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + } + } + }, + "required": true + }, + "io.k8s.api.networking.v1.Ingress": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + } + } + }, + "required": true + }, + "io.k8s.api.networking.v1.NetworkPolicy": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + } + } + }, + "required": true + }, + "io.k8s.api.networking.v1alpha1.ClusterCIDR": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + } + } + }, + "required": true + }, + "io.k8s.api.networking.v1alpha1.IPAddress": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + } + } + }, + "required": true + }, + "io.k8s.api.policy.v1.PodDisruptionBudget": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + } + } + }, + "required": true + }, + "io.k8s.api.rbac.v1.ClusterRoleBinding": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + } + } + }, + "required": true + }, + "io.k8s.api.rbac.v1.Role": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + } + } + }, + "required": true + }, + "io.k8s.api.resource.v1alpha2.PodSchedulingContext": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + } + } + }, + "required": true + }, + "io.k8s.api.resource.v1alpha2.ResourceClaim": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + } + } + }, + "required": true + }, + "io.k8s.api.resource.v1alpha2.ResourceClass": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + } + } + }, + "required": true + }, + "io.k8s.api.scheduling.v1.PriorityClass": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + } + } + }, + "required": true + }, + "io.k8s.api.storage.v1.CSINode": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + } + } + }, + "required": true + }, + "io.k8s.api.storage.v1.StorageClass": { + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + } + } + }, + "required": true + } + }, + "securitySchemes": { + "BearerToken": { + "description": "Bearer Token authentication", + "in": "header", + "name": "authorization", + "type": "apiKey" + } + }, + "schemas": { + "io.k8s.api.admissionregistration.v1.MatchCondition": { + "description": "MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.", + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", + "type": "string" + }, + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", + "type": "string" + } + }, + "required": ["name", "expression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1.MutatingWebhook": { + "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", + "properties": { + "admissionReviewVersions": { + "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.", + "items": { + "type": "string" + }, + "type": "array" + }, + "clientConfig": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.WebhookClientConfig" + }, + "failurePolicy": { + "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", + "type": "string" + }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the webhook is called.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the error is ignored and the webhook is skipped\n\nThis is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MatchCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "matchPolicy": { + "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", + "type": "string" + }, + "name": { + "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", + "type": "string" + }, + "namespaceSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "objectSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "reinvocationPolicy": { + "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".", + "type": "string" + }, + "rules": { + "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.RuleWithOperations" + }, + "type": "array" + }, + "sideEffects": { + "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", + "type": "string" + }, + "timeoutSeconds": { + "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.", + "format": "int32", + "type": "integer" + } + }, + "required": ["name", "clientConfig", "sideEffects", "admissionReviewVersions"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration": { + "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "webhooks": { + "description": "Webhooks is a list of webhooks and the affected resources and operations.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhook" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfiguration", + "version": "v1" + } + ] + }, + "io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList": { + "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of MutatingWebhookConfiguration.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "MutatingWebhookConfigurationList", + "version": "v1" + } + ] + }, + "io.k8s.api.admissionregistration.v1.RuleWithOperations": { + "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", + "properties": { + "apiGroups": { + "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "apiVersions": { + "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "operations": { + "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resources": { + "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "scope": { + "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1.ServiceReference": { + "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "properties": { + "name": { + "description": "`name` is the name of the service. Required", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of the service. Required", + "type": "string" + }, + "path": { + "description": "`path` is an optional URL path which will be sent in any request to this service.", + "type": "string" + }, + "port": { + "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", + "format": "int32", + "type": "integer" + } + }, + "required": ["namespace", "name"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1.ValidatingWebhook": { + "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.", + "properties": { + "admissionReviewVersions": { + "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.", + "items": { + "type": "string" + }, + "type": "array" + }, + "clientConfig": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.WebhookClientConfig" + }, + "failurePolicy": { + "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", + "type": "string" + }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be sent to this webhook. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the webhook is called.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the error is ignored and the webhook is skipped\n\nThis is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.MatchCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "matchPolicy": { + "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", + "type": "string" + }, + "name": { + "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", + "type": "string" + }, + "namespaceSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "objectSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "rules": { + "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.RuleWithOperations" + }, + "type": "array" + }, + "sideEffects": { + "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", + "type": "string" + }, + "timeoutSeconds": { + "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.", + "format": "int32", + "type": "integer" + } + }, + "required": ["name", "clientConfig", "sideEffects", "admissionReviewVersions"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration": { + "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "webhooks": { + "description": "Webhooks is a list of webhooks and the affected resources and operations.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhook" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfiguration", + "version": "v1" + } + ] + }, + "io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList": { + "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of ValidatingWebhookConfiguration.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingWebhookConfigurationList", + "version": "v1" + } + ] + }, + "io.k8s.api.admissionregistration.v1.WebhookClientConfig": { + "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", + "properties": { + "caBundle": { + "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", + "format": "byte", + "type": "string" + }, + "service": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1.ServiceReference" + }, + "url": { + "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.AuditAnnotation": { + "description": "AuditAnnotation describes how to produce an audit annotation for an API request.", + "properties": { + "key": { + "description": "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded.\n\nRequired.", + "type": "string" + }, + "valueExpression": { + "description": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb.\n\nIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list.\n\nRequired.", + "type": "string" + } + }, + "required": ["key", "valueExpression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.ExpressionWarning": { + "description": "ExpressionWarning is a warning information that targets a specific expression.", + "properties": { + "fieldRef": { + "description": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"", + "type": "string" + }, + "warning": { + "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.", + "type": "string" + } + }, + "required": ["fieldRef", "warning"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.MatchCondition": { + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", + "type": "string" + }, + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", + "type": "string" + } + }, + "required": ["name", "expression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.MatchResources": { + "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", + "properties": { + "excludeResourceRules": { + "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "matchPolicy": { + "description": "matchPolicy defines how the \"MatchResources\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.\n\nDefaults to \"Equivalent\"", + "type": "string" + }, + "namespaceSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "objectSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "resourceRules": { + "description": "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations": { + "description": "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.", + "properties": { + "apiGroups": { + "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "apiVersions": { + "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "operations": { + "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resources": { + "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "scope": { + "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1alpha1.ParamKind": { + "description": "ParamKind is a tuple of Group Kind and Version.", + "properties": { + "apiVersion": { + "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.", + "type": "string" + }, + "kind": { + "description": "Kind is the API kind the resources belong to. Required.", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1alpha1.ParamRef": { + "description": "ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.", + "properties": { + "name": { + "description": "`name` is the name of the resource being referenced.\n\n`name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.", + "type": "string" + }, + "namespace": { + "description": "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n- If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error.", + "type": "string" + }, + "parameterNotFoundAction": { + "description": "`parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy.\n\nAllowed values are `Allow` or `Deny` Default to `Deny`", + "type": "string" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1alpha1.TypeChecking": { + "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy", + "properties": { + "expressionWarnings": { + "description": "The type checking warnings for each expression.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ExpressionWarning" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy": { + "description": "ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicySpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding": { + "description": "ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList": { + "description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of PolicyBinding.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBindingList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingSpec": { + "description": "ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.", + "properties": { + "matchResources": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.MatchResources" + }, + "paramRef": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ParamRef" + }, + "policyName": { + "description": "PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required.", + "type": "string" + }, + "validationActions": { + "description": "validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions.\n\nFailures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.\n\nvalidationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action.\n\nThe supported actions values are:\n\n\"Deny\" specifies that a validation failure results in a denied request.\n\n\"Warn\" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses.\n\n\"Audit\" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `\"validation.policy.admission.k8s.io/validation_failure\": \"[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]\"`\n\nClients should expect to handle additional values by ignoring any values not recognized.\n\n\"Deny\" and \"Warn\" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers.\n\nRequired.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList": { + "description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of ValidatingAdmissionPolicy.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicySpec": { + "description": "ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.", + "properties": { + "auditAnnotations": { + "description": "auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.AuditAnnotation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "failurePolicy": { + "description": "failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings.\n\nA policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource.\n\nfailurePolicy does not define how validations that evaluate to false are handled.\n\nWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced.\n\nAllowed values are Ignore or Fail. Defaults to Fail.", + "type": "string" + }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the policy is skipped", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.MatchCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "matchConstraints": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.MatchResources" + }, + "paramKind": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.ParamKind" + }, + "validations": { + "description": "Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.Validation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "variables": { + "description": "Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy.\n\nThe expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.Variable" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyStatus": { + "description": "ValidatingAdmissionPolicyStatus represents the status of a ValidatingAdmissionPolicy.", + "properties": { + "conditions": { + "description": "The conditions represent the latest available observations of a policy's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map" + }, + "observedGeneration": { + "description": "The generation observed by the controller.", + "format": "int64", + "type": "integer" + }, + "typeChecking": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.TypeChecking" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.Validation": { + "description": "Validation specifies the CEL expression which is used to apply the validation.", + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:\n\n- 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Expression accessing a property named \"namespace\": {\"Expression\": \"object.__namespace__ > 0\"}\n - Expression accessing a property named \"x-prop\": {\"Expression\": \"object.x__dash__prop > 0\"}\n - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d > 0\"}\n\nEquality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\nRequired.", + "type": "string" + }, + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is \"failed Expression: {Expression}\".", + "type": "string" + }, + "messageExpression": { + "description": "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: \"object.x must be less than max (\"+string(params.max)+\")\"", + "type": "string" + }, + "reason": { + "description": "Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: \"Unauthorized\", \"Forbidden\", \"Invalid\", \"RequestEntityTooLarge\". If not set, StatusReasonInvalid is used in the response to the client.", + "type": "string" + } + }, + "required": ["expression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1alpha1.Variable": { + "description": "Variable is the definition of a variable that is used for composition.", + "properties": { + "expression": { + "description": "Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.", + "type": "string" + }, + "name": { + "description": "Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is \"foo\", the variable will be available as `variables.foo`", + "type": "string" + } + }, + "required": ["name", "expression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.AuditAnnotation": { + "description": "AuditAnnotation describes how to produce an audit annotation for an API request.", + "properties": { + "key": { + "description": "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical. In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discarded.\n\nRequired.", + "type": "string" + }, + "valueExpression": { + "description": "valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value. The expression must evaluate to either a string or null value. If the expression evaluates to a string, the audit annotation is included with the string value. If the expression evaluates to null or empty string the audit annotation will be omitted. The valueExpression may be no longer than 5kb in length. If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kb.\n\nIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding. All unique values produced by the valueExpressions will be joined together in a comma-separated list.\n\nRequired.", + "type": "string" + } + }, + "required": ["key", "valueExpression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.ExpressionWarning": { + "description": "ExpressionWarning is a warning information that targets a specific expression.", + "properties": { + "fieldRef": { + "description": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"", + "type": "string" + }, + "warning": { + "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.", + "type": "string" + } + }, + "required": ["fieldRef", "warning"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.MatchCondition": { + "description": "MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.", + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. Must evaluate to bool. CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:\n\n'object' - The object from the incoming request. The value is null for DELETE requests. 'oldObject' - The existing object. The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\nDocumentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/\n\nRequired.", + "type": "string" + }, + "name": { + "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')\n\nRequired.", + "type": "string" + } + }, + "required": ["name", "expression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.MatchResources": { + "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", + "properties": { + "excludeResourceRules": { + "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "matchPolicy": { + "description": "matchPolicy defines how the \"MatchResources\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.\n\nDefaults to \"Equivalent\"", + "type": "string" + }, + "namespaceSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "objectSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "resourceRules": { + "description": "ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches. The policy cares about an operation if it matches _any_ Rule.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations": { + "description": "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.", + "properties": { + "apiGroups": { + "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "apiVersions": { + "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "operations": { + "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resources": { + "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "scope": { + "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.ParamKind": { + "description": "ParamKind is a tuple of Group Kind and Version.", + "properties": { + "apiVersion": { + "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.", + "type": "string" + }, + "kind": { + "description": "Kind is the API kind the resources belong to. Required.", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.ParamRef": { + "description": "ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding.", + "properties": { + "name": { + "description": "name is the name of the resource being referenced.\n\nOne of `name` or `selector` must be set, but `name` and `selector` are mutually exclusive properties. If one is set, the other must be unset.\n\nA single parameter used for all admission requests can be configured by setting the `name` field, leaving `selector` blank, and setting namespace if `paramKind` is namespace-scoped.", + "type": "string" + }, + "namespace": { + "description": "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n- If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error.", + "type": "string" + }, + "parameterNotFoundAction": { + "description": "`parameterNotFoundAction` controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding. If the value is set to `Allow`, then no matched parameters will be treated as successful validation by the binding. If set to `Deny`, then no matched parameters will be subject to the `failurePolicy` of the policy.\n\nAllowed values are `Allow` or `Deny`\n\nRequired", + "type": "string" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.admissionregistration.v1beta1.TypeChecking": { + "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy", + "properties": { + "expressionWarnings": { + "description": "The type checking warnings for each expression.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ExpressionWarning" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy": { + "description": "ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicySpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicy", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding": { + "description": "ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources. ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBinding", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList": { + "description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of PolicyBinding.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyBindingList", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingSpec": { + "description": "ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.", + "properties": { + "matchResources": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.MatchResources" + }, + "paramRef": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ParamRef" + }, + "policyName": { + "description": "PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to. If the referenced resource does not exist, this binding is considered invalid and will be ignored Required.", + "type": "string" + }, + "validationActions": { + "description": "validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced. If a validation evaluates to false it is always enforced according to these actions.\n\nFailures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.\n\nvalidationActions is declared as a set of action values. Order does not matter. validationActions may not contain duplicates of the same action.\n\nThe supported actions values are:\n\n\"Deny\" specifies that a validation failure results in a denied request.\n\n\"Warn\" specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299. Warnings can be sent both for allowed or denied admission responses.\n\n\"Audit\" specifies that a validation failure is included in the published audit event for the request. The audit event will contain a `validation.policy.admission.k8s.io/validation_failure` audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: `\"validation.policy.admission.k8s.io/validation_failure\": \"[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]\"`\n\nClients should expect to handle additional values by ignoring any values not recognized.\n\n\"Deny\" and \"Warn\" may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headers.\n\nRequired.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList": { + "description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of ValidatingAdmissionPolicy.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "admissionregistration.k8s.io", + "kind": "ValidatingAdmissionPolicyList", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicySpec": { + "description": "ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.", + "properties": { + "auditAnnotations": { + "description": "auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request. validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.AuditAnnotation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "failurePolicy": { + "description": "failurePolicy defines how to handle failures for the admission policy. Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindings.\n\nA policy is invalid if spec.paramKind refers to a non-existent Kind. A binding is invalid if spec.paramRef.name refers to a non-existent resource.\n\nfailurePolicy does not define how validations that evaluate to false are handled.\n\nWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforced.\n\nAllowed values are Ignore or Fail. Defaults to Fail.", + "type": "string" + }, + "matchConditions": { + "description": "MatchConditions is a list of conditions that must be met for a request to be validated. Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n 1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n 3. If any matchCondition evaluates to an error (but none are FALSE):\n - If failurePolicy=Fail, reject the request\n - If failurePolicy=Ignore, the policy is skipped", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.MatchCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "matchConstraints": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.MatchResources" + }, + "paramKind": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.ParamKind" + }, + "validations": { + "description": "Validations contain CEL expressions which is used to apply the validation. Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.Validation" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "variables": { + "description": "Variables contain definitions of variables that can be used in composition of other expressions. Each variable is defined as a named CEL expression. The variables defined here will be available under `variables` in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policy.\n\nThe expression of a variable can refer to other variables defined earlier in the list but not those after. Thus, Variables must be sorted by the order of first appearance and acyclic.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.Variable" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyStatus": { + "description": "ValidatingAdmissionPolicyStatus represents the status of an admission validation policy.", + "properties": { + "conditions": { + "description": "The conditions represent the latest available observations of a policy's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map" + }, + "observedGeneration": { + "description": "The generation observed by the controller.", + "format": "int64", + "type": "integer" + }, + "typeChecking": { + "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.TypeChecking" + } + }, + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.Validation": { + "description": "Validation specifies the CEL expression which is used to apply the validation.", + "properties": { + "expression": { + "description": "Expression represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:\n\n- 'object' - The object from the incoming request. The value is null for DELETE requests. - 'oldObject' - The existing object. The value is null for CREATE requests. - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Expression accessing a property named \"namespace\": {\"Expression\": \"object.__namespace__ > 0\"}\n - Expression accessing a property named \"x-prop\": {\"Expression\": \"object.x__dash__prop > 0\"}\n - Expression accessing a property named \"redact__d\": {\"Expression\": \"object.redact__underscores__d > 0\"}\n\nEquality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.\nRequired.", + "type": "string" + }, + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Expression contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\" If the Expression contains line breaks. Message is required. The message must not contain line breaks. If unset, the message is \"failed Expression: {Expression}\".", + "type": "string" + }, + "messageExpression": { + "description": "messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'. Example: \"object.x must be less than max (\"+string(params.max)+\")\"", + "type": "string" + }, + "reason": { + "description": "Reason represents a machine-readable description of why this validation failed. If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client. The currently supported reasons are: \"Unauthorized\", \"Forbidden\", \"Invalid\", \"RequestEntityTooLarge\". If not set, StatusReasonInvalid is used in the response to the client.", + "type": "string" + } + }, + "required": ["expression"], + "type": "object" + }, + "io.k8s.api.admissionregistration.v1beta1.Variable": { + "description": "Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.", + "properties": { + "expression": { + "description": "Expression is the expression that will be evaluated as the value of the variable. The CEL expression has access to the same identifiers as the CEL expressions in Validation.", + "type": "string" + }, + "name": { + "description": "Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables. The variable can be accessed in other expressions through `variables` For example, if name is \"foo\", the variable will be available as `variables.foo`", + "type": "string" + } + }, + "required": ["name", "expression"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": { + "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.", + "properties": { + "apiServerID": { + "description": "The ID of the reporting API server.", + "type": "string" + }, + "decodableVersions": { + "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "encodingVersion": { + "description": "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).", + "type": "string" + }, + "servedVersions": { + "description": "The API server can serve these versions. DecodableVersions must include all ServedVersions.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "type": "object" + }, + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersion": { + "description": "Storage version of a specific resource.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus" + } + }, + "required": ["spec", "status"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersion", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition": { + "description": "Describes the state of the storageVersion at a certain point.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "observedGeneration": { + "description": "If set, this represents the .metadata.generation that the condition was set based upon.", + "format": "int64", + "type": "integer" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of the condition.", + "type": "string" + } + }, + "required": ["type", "status", "reason"], + "type": "object" + }, + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList": { + "description": "A list of StorageVersions.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items holds a list of StorageVersion", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersion" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "internal.apiserver.k8s.io", + "kind": "StorageVersionList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": { + "description": "StorageVersionSpec is an empty spec.", + "type": "object" + }, + "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": { + "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.", + "properties": { + "commonEncodingVersion": { + "description": "If all API server instances agree on the same encoding storage version, then this field is set to that version. Otherwise this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality.", + "type": "string" + }, + "conditions": { + "description": "The latest available observations of the storageVersion's state.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map" + }, + "storageVersions": { + "description": "The reported versions per API server instance.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["apiServerID"], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.ControllerRevision": { + "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "data": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "revision": { + "description": "Revision indicates the revision of the state represented by Data.", + "format": "int64", + "type": "integer" + } + }, + "required": ["revision"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ControllerRevision", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.ControllerRevisionList": { + "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of ControllerRevisions", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ControllerRevisionList", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.DaemonSet": { + "description": "DaemonSet represents the configuration of a daemon set.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "DaemonSet", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.DaemonSetCondition": { + "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of DaemonSet condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.apps.v1.DaemonSetList": { + "description": "DaemonSetList is a collection of daemon sets.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "A list of daemon sets.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "DaemonSetList", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.DaemonSetSpec": { + "description": "DaemonSetSpec is the specification of a daemon set.", + "properties": { + "minReadySeconds": { + "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", + "format": "int32", + "type": "integer" + }, + "revisionHistoryLimit": { + "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", + "format": "int32", + "type": "integer" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "template": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" + }, + "updateStrategy": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetUpdateStrategy" + } + }, + "required": ["selector", "template"], + "type": "object" + }, + "io.k8s.api.apps.v1.DaemonSetStatus": { + "description": "DaemonSetStatus represents the current status of a daemon set.", + "properties": { + "collisionCount": { + "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + "format": "int32", + "type": "integer" + }, + "conditions": { + "description": "Represents the latest available observations of a DaemonSet's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "currentNumberScheduled": { + "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + "format": "int32", + "type": "integer" + }, + "desiredNumberScheduled": { + "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + "format": "int32", + "type": "integer" + }, + "numberAvailable": { + "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", + "format": "int32", + "type": "integer" + }, + "numberMisscheduled": { + "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + "format": "int32", + "type": "integer" + }, + "numberReady": { + "description": "numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.", + "format": "int32", + "type": "integer" + }, + "numberUnavailable": { + "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", + "format": "int32", + "type": "integer" + }, + "observedGeneration": { + "description": "The most recent generation observed by the daemon set controller.", + "format": "int64", + "type": "integer" + }, + "updatedNumberScheduled": { + "description": "The total number of nodes that are running updated daemon pod", + "format": "int32", + "type": "integer" + } + }, + "required": ["currentNumberScheduled", "numberMisscheduled", "desiredNumberScheduled", "numberReady"], + "type": "object" + }, + "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": { + "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", + "properties": { + "rollingUpdate": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.RollingUpdateDaemonSet" + }, + "type": { + "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.Deployment": { + "description": "Deployment enables declarative updates for Pods and ReplicaSets.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "Deployment", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.DeploymentCondition": { + "description": "DeploymentCondition describes the state of a deployment at a certain point.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastUpdateTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of deployment condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.apps.v1.DeploymentList": { + "description": "DeploymentList is a list of Deployments.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of Deployments.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "DeploymentList", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.DeploymentSpec": { + "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", + "properties": { + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "format": "int32", + "type": "integer" + }, + "paused": { + "description": "Indicates that the deployment is paused.", + "type": "boolean" + }, + "progressDeadlineSeconds": { + "description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + "format": "int32", + "type": "integer" + }, + "revisionHistoryLimit": { + "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", + "format": "int32", + "type": "integer" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "strategy": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentStrategy" + }, + "template": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" + } + }, + "required": ["selector", "template"], + "type": "object" + }, + "io.k8s.api.apps.v1.DeploymentStatus": { + "description": "DeploymentStatus is the most recently observed status of the Deployment.", + "properties": { + "availableReplicas": { + "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", + "format": "int32", + "type": "integer" + }, + "collisionCount": { + "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", + "format": "int32", + "type": "integer" + }, + "conditions": { + "description": "Represents the latest available observations of a deployment's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "observedGeneration": { + "description": "The generation observed by the deployment controller.", + "format": "int64", + "type": "integer" + }, + "readyReplicas": { + "description": "readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", + "format": "int32", + "type": "integer" + }, + "unavailableReplicas": { + "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", + "format": "int32", + "type": "integer" + }, + "updatedReplicas": { + "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.DeploymentStrategy": { + "description": "DeploymentStrategy describes how to replace existing pods with new ones.", + "properties": { + "rollingUpdate": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.RollingUpdateDeployment" + }, + "type": { + "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.ReplicaSet": { + "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ReplicaSet", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.ReplicaSetCondition": { + "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of replica set condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.apps.v1.ReplicaSetList": { + "description": "ReplicaSetList is a collection of ReplicaSets.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "ReplicaSetList", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.ReplicaSetSpec": { + "description": "ReplicaSetSpec is the specification of a ReplicaSet.", + "properties": { + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + "format": "int32", + "type": "integer" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "template": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" + } + }, + "required": ["selector"], + "type": "object" + }, + "io.k8s.api.apps.v1.ReplicaSetStatus": { + "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", + "properties": { + "availableReplicas": { + "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", + "format": "int32", + "type": "integer" + }, + "conditions": { + "description": "Represents the latest available observations of a replica set's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "fullyLabeledReplicas": { + "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", + "format": "int32", + "type": "integer" + }, + "observedGeneration": { + "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", + "format": "int64", + "type": "integer" + }, + "readyReplicas": { + "description": "readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + "format": "int32", + "type": "integer" + } + }, + "required": ["replicas"], + "type": "object" + }, + "io.k8s.api.apps.v1.RollingUpdateDaemonSet": { + "description": "Spec to control the desired behavior of daemon set rolling update.", + "properties": { + "maxSurge": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "maxUnavailable": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.RollingUpdateDeployment": { + "description": "Spec to control the desired behavior of rolling update.", + "properties": { + "maxSurge": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "maxUnavailable": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": { + "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", + "properties": { + "maxUnavailable": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "partition": { + "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned for updates. During a rolling update, all pods from ordinal Replicas-1 to Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched. This is helpful in being able to do a canary based deployment. The default value is 0.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.StatefulSet": { + "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\n\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "StatefulSet", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.StatefulSetCondition": { + "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of statefulset condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.apps.v1.StatefulSetList": { + "description": "StatefulSetList is a collection of StatefulSets.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of stateful sets.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apps", + "kind": "StatefulSetList", + "version": "v1" + } + ] + }, + "io.k8s.api.apps.v1.StatefulSetOrdinals": { + "description": "StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.", + "properties": { + "start": { + "description": "start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:\n [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).\nIf unset, defaults to 0. Replica indices will be in the range:\n [0, .spec.replicas).", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy": { + "description": "StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.", + "properties": { + "whenDeleted": { + "description": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.", + "type": "string" + }, + "whenScaled": { + "description": "WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down. The default policy of `Retain` causes PVCs to not be affected by a scaledown. The `Delete` policy causes the associated PVCs for any excess pods above the replica count to be deleted.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.apps.v1.StatefulSetSpec": { + "description": "A StatefulSetSpec is the specification of a StatefulSet.", + "properties": { + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "format": "int32", + "type": "integer" + }, + "ordinals": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetOrdinals" + }, + "persistentVolumeClaimRetentionPolicy": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy" + }, + "podManagementPolicy": { + "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", + "type": "string" + }, + "replicas": { + "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + "format": "int32", + "type": "integer" + }, + "revisionHistoryLimit": { + "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + "format": "int32", + "type": "integer" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "serviceName": { + "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", + "type": "string" + }, + "template": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" + }, + "updateStrategy": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetUpdateStrategy" + }, + "volumeClaimTemplates": { + "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + }, + "type": "array" + } + }, + "required": ["selector", "template", "serviceName"], + "type": "object" + }, + "io.k8s.api.apps.v1.StatefulSetStatus": { + "description": "StatefulSetStatus represents the current state of a StatefulSet.", + "properties": { + "availableReplicas": { + "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.", + "format": "int32", + "type": "integer" + }, + "collisionCount": { + "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + "format": "int32", + "type": "integer" + }, + "conditions": { + "description": "Represents the latest available observations of a statefulset's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "currentReplicas": { + "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", + "format": "int32", + "type": "integer" + }, + "currentRevision": { + "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", + "type": "string" + }, + "observedGeneration": { + "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", + "format": "int64", + "type": "integer" + }, + "readyReplicas": { + "description": "readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "replicas is the number of Pods created by the StatefulSet controller.", + "format": "int32", + "type": "integer" + }, + "updateRevision": { + "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + "type": "string" + }, + "updatedReplicas": { + "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", + "format": "int32", + "type": "integer" + } + }, + "required": ["replicas"], + "type": "object" + }, + "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": { + "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", + "properties": { + "rollingUpdate": { + "$ref": "#/components/schemas/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy" + }, + "type": { + "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1.BoundObjectReference": { + "description": "BoundObjectReference is a reference to an object that a token is bound to.", + "properties": { + "apiVersion": { + "description": "API version of the referent.", + "type": "string" + }, + "kind": { + "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.", + "type": "string" + }, + "name": { + "description": "Name of the referent.", + "type": "string" + }, + "uid": { + "description": "UID of the referent.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.SelfSubjectReviewStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1" + } + ] + }, + "io.k8s.api.authentication.v1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", + "properties": { + "userInfo": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.UserInfo" + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1.TokenRequest": { + "description": "TokenRequest requests a token for a given service account.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequestSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenRequestStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "TokenRequest", + "version": "v1" + } + ] + }, + "io.k8s.api.authentication.v1.TokenRequestSpec": { + "description": "TokenRequestSpec contains client provided parameters of a token request.", + "properties": { + "audiences": { + "description": "Audiences are the intendend audiences of the token. A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.", + "items": { + "type": "string" + }, + "type": "array" + }, + "boundObjectRef": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.BoundObjectReference" + }, + "expirationSeconds": { + "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.", + "format": "int64", + "type": "integer" + } + }, + "required": ["audiences"], + "type": "object" + }, + "io.k8s.api.authentication.v1.TokenRequestStatus": { + "description": "TokenRequestStatus is the result of a token request.", + "properties": { + "expirationTimestamp": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "token": { + "description": "Token is the opaque bearer token.", + "type": "string" + } + }, + "required": ["token", "expirationTimestamp"], + "type": "object" + }, + "io.k8s.api.authentication.v1.TokenReview": { + "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReviewSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.TokenReviewStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "TokenReview", + "version": "v1" + } + ] + }, + "io.k8s.api.authentication.v1.TokenReviewSpec": { + "description": "TokenReviewSpec is a description of the token authentication request.", + "properties": { + "audiences": { + "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", + "items": { + "type": "string" + }, + "type": "array" + }, + "token": { + "description": "Token is the opaque bearer token.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1.TokenReviewStatus": { + "description": "TokenReviewStatus is the result of the token authentication request.", + "properties": { + "audiences": { + "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", + "items": { + "type": "string" + }, + "type": "array" + }, + "authenticated": { + "description": "Authenticated indicates that the token was associated with a known user.", + "type": "boolean" + }, + "error": { + "description": "Error indicates that the token couldn't be checked", + "type": "string" + }, + "user": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.UserInfo" + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1.UserInfo": { + "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", + "properties": { + "extra": { + "additionalProperties": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": "Any additional information provided by the authenticator.", + "type": "object" + }, + "groups": { + "description": "The names of groups this user is a part of.", + "items": { + "type": "string" + }, + "type": "array" + }, + "uid": { + "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + "type": "string" + }, + "username": { + "description": "The name that uniquely identifies this user among all active users.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1alpha1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1alpha1.SelfSubjectReviewStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.authentication.v1alpha1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", + "properties": { + "userInfo": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.UserInfo" + } + }, + "type": "object" + }, + "io.k8s.api.authentication.v1beta1.SelfSubjectReview": { + "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1beta1.SelfSubjectReviewStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authentication.k8s.io", + "kind": "SelfSubjectReview", + "version": "v1beta1" + } + ] + }, + "io.k8s.api.authentication.v1beta1.SelfSubjectReviewStatus": { + "description": "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.", + "properties": { + "userInfo": { + "$ref": "#/components/schemas/io.k8s.api.authentication.v1.UserInfo" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.LocalSubjectAccessReview": { + "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "LocalSubjectAccessReview", + "version": "v1" + } + ] + }, + "io.k8s.api.authorization.v1.NonResourceAttributes": { + "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", + "properties": { + "path": { + "description": "Path is the URL path of the request", + "type": "string" + }, + "verb": { + "description": "Verb is the standard HTTP verb", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.NonResourceRule": { + "description": "NonResourceRule holds information that describes a rule for the non-resource", + "properties": { + "nonResourceURLs": { + "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" + }, + "verbs": { + "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["verbs"], + "type": "object" + }, + "io.k8s.api.authorization.v1.ResourceAttributes": { + "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", + "properties": { + "group": { + "description": "Group is the API Group of the Resource. \"*\" means all.", + "type": "string" + }, + "name": { + "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", + "type": "string" + }, + "namespace": { + "description": "Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview", + "type": "string" + }, + "resource": { + "description": "Resource is one of the existing resource types. \"*\" means all.", + "type": "string" + }, + "subresource": { + "description": "Subresource is one of the existing resource types. \"\" means none.", + "type": "string" + }, + "verb": { + "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + "type": "string" + }, + "version": { + "description": "Version is the API Version of the Resource. \"*\" means all.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.ResourceRule": { + "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "properties": { + "apiGroups": { + "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" + }, + "resources": { + "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", + "items": { + "type": "string" + }, + "type": "array" + }, + "verbs": { + "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["verbs"], + "type": "object" + }, + "io.k8s.api.authorization.v1.SelfSubjectAccessReview": { + "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SelfSubjectAccessReview", + "version": "v1" + } + ] + }, + "io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec": { + "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "properties": { + "nonResourceAttributes": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.NonResourceAttributes" + }, + "resourceAttributes": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.ResourceAttributes" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.SelfSubjectRulesReview": { + "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectRulesReviewStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SelfSubjectRulesReview", + "version": "v1" + } + ] + }, + "io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec": { + "description": "SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview.", + "properties": { + "namespace": { + "description": "Namespace to evaluate rules for. Required.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.SubjectAccessReview": { + "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReviewSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReviewStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SubjectAccessReview", + "version": "v1" + } + ] + }, + "io.k8s.api.authorization.v1.SubjectAccessReviewSpec": { + "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + "properties": { + "extra": { + "additionalProperties": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", + "type": "object" + }, + "groups": { + "description": "Groups is the groups you're testing for.", + "items": { + "type": "string" + }, + "type": "array" + }, + "nonResourceAttributes": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.NonResourceAttributes" + }, + "resourceAttributes": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.ResourceAttributes" + }, + "uid": { + "description": "UID information about the requesting user.", + "type": "string" + }, + "user": { + "description": "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.authorization.v1.SubjectAccessReviewStatus": { + "description": "SubjectAccessReviewStatus", + "properties": { + "allowed": { + "description": "Allowed is required. True if the action would be allowed, false otherwise.", + "type": "boolean" + }, + "denied": { + "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", + "type": "boolean" + }, + "evaluationError": { + "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + "type": "string" + }, + "reason": { + "description": "Reason is optional. It indicates why a request was allowed or denied.", + "type": "string" + } + }, + "required": ["allowed"], + "type": "object" + }, + "io.k8s.api.authorization.v1.SubjectRulesReviewStatus": { + "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + "properties": { + "evaluationError": { + "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", + "type": "string" + }, + "incomplete": { + "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", + "type": "boolean" + }, + "nonResourceRules": { + "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.NonResourceRule" + }, + "type": "array" + }, + "resourceRules": { + "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.authorization.v1.ResourceRule" + }, + "type": "array" + } + }, + "required": ["resourceRules", "nonResourceRules", "incomplete"], + "type": "object" + }, + "io.k8s.api.autoscaling.v1.CrossVersionObjectReference": { + "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "properties": { + "apiVersion": { + "description": "apiVersion is the API version of the referent", + "type": "string" + }, + "kind": { + "description": "kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "name": { + "description": "name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler": { + "description": "configuration of a horizontal pod autoscaler.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v1" + } + ] + }, + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList": { + "description": "list of horizontal pod autoscaler objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of horizontal pod autoscaler objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "HorizontalPodAutoscalerList", + "version": "v1" + } + ] + }, + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec": { + "description": "specification of a horizontal pod autoscaler.", + "properties": { + "maxReplicas": { + "description": "maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.", + "format": "int32", + "type": "integer" + }, + "minReplicas": { + "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", + "format": "int32", + "type": "integer" + }, + "scaleTargetRef": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.CrossVersionObjectReference" + }, + "targetCPUUtilizationPercentage": { + "description": "targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.", + "format": "int32", + "type": "integer" + } + }, + "required": ["scaleTargetRef", "maxReplicas"], + "type": "object" + }, + "io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus": { + "description": "current status of a horizontal pod autoscaler", + "properties": { + "currentCPUUtilizationPercentage": { + "description": "currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.", + "format": "int32", + "type": "integer" + }, + "currentReplicas": { + "description": "currentReplicas is the current number of replicas of pods managed by this autoscaler.", + "format": "int32", + "type": "integer" + }, + "desiredReplicas": { + "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler.", + "format": "int32", + "type": "integer" + }, + "lastScaleTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "observedGeneration": { + "description": "observedGeneration is the most recent generation observed by this autoscaler.", + "format": "int64", + "type": "integer" + } + }, + "required": ["currentReplicas", "desiredReplicas"], + "type": "object" + }, + "io.k8s.api.autoscaling.v1.Scale": { + "description": "Scale represents a scaling request for a resource.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.ScaleSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.ScaleStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "Scale", + "version": "v1" + } + ] + }, + "io.k8s.api.autoscaling.v1.ScaleSpec": { + "description": "ScaleSpec describes the attributes of a scale subresource.", + "properties": { + "replicas": { + "description": "replicas is the desired number of instances for the scaled object.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.autoscaling.v1.ScaleStatus": { + "description": "ScaleStatus represents the current status of a scale subresource.", + "properties": { + "replicas": { + "description": "replicas is the actual number of observed instances of the scaled object.", + "format": "int32", + "type": "integer" + }, + "selector": { + "description": "selector is the label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/", + "type": "string" + } + }, + "required": ["replicas"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ContainerResourceMetricSource": { + "description": "ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", + "properties": { + "container": { + "description": "container is the name of the container in the pods of the scaling target", + "type": "string" + }, + "name": { + "description": "name is the name of the resource in question.", + "type": "string" + }, + "target": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricTarget" + } + }, + "required": ["name", "target", "container"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ContainerResourceMetricStatus": { + "description": "ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + "properties": { + "container": { + "description": "container is the name of the container in the pods of the scaling target", + "type": "string" + }, + "current": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricValueStatus" + }, + "name": { + "description": "name is the name of the resource in question.", + "type": "string" + } + }, + "required": ["name", "current", "container"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.CrossVersionObjectReference": { + "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + "properties": { + "apiVersion": { + "description": "apiVersion is the API version of the referent", + "type": "string" + }, + "kind": { + "description": "kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "name": { + "description": "name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ExternalMetricSource": { + "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", + "properties": { + "metric": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricIdentifier" + }, + "target": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricTarget" + } + }, + "required": ["metric", "target"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ExternalMetricStatus": { + "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", + "properties": { + "current": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricValueStatus" + }, + "metric": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricIdentifier" + } + }, + "required": ["metric", "current"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.HPAScalingPolicy": { + "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.", + "properties": { + "periodSeconds": { + "description": "periodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).", + "format": "int32", + "type": "integer" + }, + "type": { + "description": "type is used to specify the scaling policy.", + "type": "string" + }, + "value": { + "description": "value contains the amount of change which is permitted by the policy. It must be greater than zero", + "format": "int32", + "type": "integer" + } + }, + "required": ["type", "value", "periodSeconds"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.HPAScalingRules": { + "description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.", + "properties": { + "policies": { + "description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid", + "items": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HPAScalingPolicy" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "selectPolicy": { + "description": "selectPolicy is used to specify which policy should be used. If not set, the default value Max is used.", + "type": "string" + }, + "stabilizationWindowSeconds": { + "description": "stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": { + "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "HorizontalPodAutoscaler", + "version": "v2" + } + ] + }, + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerBehavior": { + "description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).", + "properties": { + "scaleDown": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HPAScalingRules" + }, + "scaleUp": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HPAScalingRules" + } + }, + "type": "object" + }, + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition": { + "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "message is a human-readable explanation containing details about the transition", + "type": "string" + }, + "reason": { + "description": "reason is the reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "status is the status of the condition (True, False, Unknown)", + "type": "string" + }, + "type": { + "description": "type describes the current condition", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList": { + "description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of horizontal pod autoscaler objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "autoscaling", + "kind": "HorizontalPodAutoscalerList", + "version": "v2" + } + ] + }, + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec": { + "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", + "properties": { + "behavior": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerBehavior" + }, + "maxReplicas": { + "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", + "format": "int32", + "type": "integer" + }, + "metrics": { + "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricSpec" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "minReplicas": { + "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", + "format": "int32", + "type": "integer" + }, + "scaleTargetRef": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.CrossVersionObjectReference" + } + }, + "required": ["scaleTargetRef", "maxReplicas"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerStatus": { + "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", + "properties": { + "conditions": { + "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "currentMetrics": { + "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricStatus" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "currentReplicas": { + "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", + "format": "int32", + "type": "integer" + }, + "desiredReplicas": { + "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.", + "format": "int32", + "type": "integer" + }, + "lastScaleTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "observedGeneration": { + "description": "observedGeneration is the most recent generation observed by this autoscaler.", + "format": "int64", + "type": "integer" + } + }, + "required": ["desiredReplicas"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.MetricIdentifier": { + "description": "MetricIdentifier defines the name and optionally selector for a metric", + "properties": { + "name": { + "description": "name is the name of the given metric", + "type": "string" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.MetricSpec": { + "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", + "properties": { + "containerResource": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ContainerResourceMetricSource" + }, + "external": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ExternalMetricSource" + }, + "object": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ObjectMetricSource" + }, + "pods": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.PodsMetricSource" + }, + "resource": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ResourceMetricSource" + }, + "type": { + "description": "type is the type of metric source. It should be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", + "type": "string" + } + }, + "required": ["type"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.MetricStatus": { + "description": "MetricStatus describes the last-read state of a single metric.", + "properties": { + "containerResource": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ContainerResourceMetricStatus" + }, + "external": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ExternalMetricStatus" + }, + "object": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ObjectMetricStatus" + }, + "pods": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.PodsMetricStatus" + }, + "resource": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.ResourceMetricStatus" + }, + "type": { + "description": "type is the type of metric source. It will be one of \"ContainerResource\", \"External\", \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object. Note: \"ContainerResource\" type is available on when the feature-gate HPAContainerMetrics is enabled", + "type": "string" + } + }, + "required": ["type"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.MetricTarget": { + "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric", + "properties": { + "averageUtilization": { + "description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type", + "format": "int32", + "type": "integer" + }, + "averageValue": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "type": { + "description": "type represents whether the metric type is Utilization, Value, or AverageValue", + "type": "string" + }, + "value": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + } + }, + "required": ["type"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.MetricValueStatus": { + "description": "MetricValueStatus holds the current value for a metric", + "properties": { + "averageUtilization": { + "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", + "format": "int32", + "type": "integer" + }, + "averageValue": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "value": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + } + }, + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ObjectMetricSource": { + "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", + "properties": { + "describedObject": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.CrossVersionObjectReference" + }, + "metric": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricIdentifier" + }, + "target": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricTarget" + } + }, + "required": ["describedObject", "target", "metric"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ObjectMetricStatus": { + "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", + "properties": { + "current": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricValueStatus" + }, + "describedObject": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.CrossVersionObjectReference" + }, + "metric": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricIdentifier" + } + }, + "required": ["metric", "current", "describedObject"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.PodsMetricSource": { + "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", + "properties": { + "metric": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricIdentifier" + }, + "target": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricTarget" + } + }, + "required": ["metric", "target"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.PodsMetricStatus": { + "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", + "properties": { + "current": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricValueStatus" + }, + "metric": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricIdentifier" + } + }, + "required": ["metric", "current"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ResourceMetricSource": { + "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", + "properties": { + "name": { + "description": "name is the name of the resource in question.", + "type": "string" + }, + "target": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricTarget" + } + }, + "required": ["name", "target"], + "type": "object" + }, + "io.k8s.api.autoscaling.v2.ResourceMetricStatus": { + "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + "properties": { + "current": { + "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricValueStatus" + }, + "name": { + "description": "name is the name of the resource in question.", + "type": "string" + } + }, + "required": ["name", "current"], + "type": "object" + }, + "io.k8s.api.batch.v1.CronJob": { + "description": "CronJob represents the configuration of a single cron job.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJobStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "batch", + "kind": "CronJob", + "version": "v1" + } + ] + }, + "io.k8s.api.batch.v1.CronJobList": { + "description": "CronJobList is a collection of cron jobs.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of CronJobs.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.CronJob" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "batch", + "kind": "CronJobList", + "version": "v1" + } + ] + }, + "io.k8s.api.batch.v1.CronJobSpec": { + "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", + "properties": { + "concurrencyPolicy": { + "description": "Specifies how to treat concurrent executions of a Job. Valid values are:\n\n- \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", + "type": "string" + }, + "failedJobsHistoryLimit": { + "description": "The number of failed finished jobs to retain. Value must be non-negative integer. Defaults to 1.", + "format": "int32", + "type": "integer" + }, + "jobTemplate": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobTemplateSpec" + }, + "schedule": { + "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + "type": "string" + }, + "startingDeadlineSeconds": { + "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", + "format": "int64", + "type": "integer" + }, + "successfulJobsHistoryLimit": { + "description": "The number of successful finished jobs to retain. Value must be non-negative integer. Defaults to 3.", + "format": "int32", + "type": "integer" + }, + "suspend": { + "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + "type": "boolean" + }, + "timeZone": { + "description": "The time zone name for the given schedule, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones. If not specified, this will default to the time zone of the kube-controller-manager process. The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution. If no system-wide time zone database can be found a bundled version of the database is used instead. If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason UnknownTimeZone. More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones", + "type": "string" + } + }, + "required": ["schedule", "jobTemplate"], + "type": "object" + }, + "io.k8s.api.batch.v1.CronJobStatus": { + "description": "CronJobStatus represents the current state of a cron job.", + "properties": { + "active": { + "description": "A list of pointers to currently running jobs.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "lastScheduleTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastSuccessfulTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + }, + "type": "object" + }, + "io.k8s.api.batch.v1.Job": { + "description": "Job represents the configuration of a single job.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "batch", + "kind": "Job", + "version": "v1" + } + ] + }, + "io.k8s.api.batch.v1.JobCondition": { + "description": "JobCondition describes current state of a job.", + "properties": { + "lastProbeTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "Human readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "(brief) reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of job condition, Complete or Failed.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.batch.v1.JobList": { + "description": "JobList is a collection of jobs.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of Jobs.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.Job" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "batch", + "kind": "JobList", + "version": "v1" + } + ] + }, + "io.k8s.api.batch.v1.JobSpec": { + "description": "JobSpec describes how the job execution will look like.", + "properties": { + "activeDeadlineSeconds": { + "description": "Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer. If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again.", + "format": "int64", + "type": "integer" + }, + "backoffLimit": { + "description": "Specifies the number of retries before marking this job failed. Defaults to 6", + "format": "int32", + "type": "integer" + }, + "backoffLimitPerIndex": { + "description": "Specifies the limit for the number of retries within an index before marking this index as failed. When enabled the number of failures per index is kept in the pod's batch.kubernetes.io/job-index-failure-count annotation. It can only be set when Job's completionMode=Indexed, and the Pod's restart policy is Never. The field is immutable. This field is alpha-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default).", + "format": "int32", + "type": "integer" + }, + "completionMode": { + "description": "completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other.\n\n`Indexed` means that the Pods of a Job get an associated completion index from 0 to (.spec.completions - 1), available in the annotation batch.kubernetes.io/job-completion-index. The Job is considered complete when there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`.\n\nMore completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job.", + "type": "string" + }, + "completions": { + "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "format": "int32", + "type": "integer" + }, + "manualSelector": { + "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", + "type": "boolean" + }, + "maxFailedIndexes": { + "description": "Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set. Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated. When left as null the job continues execution of all of its indexes and is marked with the `Complete` Job condition. It can only be specified when backoffLimitPerIndex is set. It can be null or up to completions. It is required and must be less than or equal to 10^4 when is completions greater than 10^5. This field is alpha-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default).", + "format": "int32", + "type": "integer" + }, + "parallelism": { + "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "format": "int32", + "type": "integer" + }, + "podFailurePolicy": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.PodFailurePolicy" + }, + "podReplacementPolicy": { + "description": "podReplacementPolicy specifies when to create replacement Pods. Possible values are: - TerminatingOrFailed means that we recreate pods\n when they are terminating (has a metadata.deletionTimestamp) or failed.\n- Failed means to wait until a previously created Pod is fully terminated (has phase\n Failed or Succeeded) before creating a replacement Pod.\n\nWhen using podFailurePolicy, Failed is the the only allowed value. TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use. This is an alpha field. Enable JobPodReplacementPolicy to be able to use this field.", + "type": "string" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "suspend": { + "description": "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too. Defaults to false.", + "type": "boolean" + }, + "template": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" + }, + "ttlSecondsAfterFinished": { + "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes.", + "format": "int32", + "type": "integer" + } + }, + "required": ["template"], + "type": "object" + }, + "io.k8s.api.batch.v1.JobStatus": { + "description": "JobStatus represents the current state of a Job.", + "properties": { + "active": { + "description": "The number of pending and running pods.", + "format": "int32", + "type": "integer" + }, + "completedIndexes": { + "description": "completedIndexes holds the completed indexes when .spec.completionMode = \"Indexed\" in a text format. The indexes are represented as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\".", + "type": "string" + }, + "completionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "conditions": { + "description": "The latest available observations of an object's current state. When a Job fails, one of the conditions will have type \"Failed\" and status true. When a Job is suspended, one of the conditions will have type \"Suspended\" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type \"Complete\" and status true. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + "items": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobCondition" + }, + "type": "array", + "x-kubernetes-list-type": "atomic", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "failed": { + "description": "The number of pods which reached phase Failed.", + "format": "int32", + "type": "integer" + }, + "failedIndexes": { + "description": "FailedIndexes holds the failed indexes when backoffLimitPerIndex=true. The indexes are represented in the text format analogous as for the `completedIndexes` field, ie. they are kept as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the failed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". This field is alpha-level. It can be used when the `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default).", + "type": "string" + }, + "ready": { + "description": "The number of pods which have a Ready condition.\n\nThis field is beta-level. The job controller populates the field when the feature gate JobReadyPods is enabled (enabled by default).", + "format": "int32", + "type": "integer" + }, + "startTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "succeeded": { + "description": "The number of pods which reached phase Succeeded.", + "format": "int32", + "type": "integer" + }, + "terminating": { + "description": "The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp).\n\nThis field is alpha-level. The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (disabled by default).", + "format": "int32", + "type": "integer" + }, + "uncountedTerminatedPods": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.UncountedTerminatedPods" + } + }, + "type": "object" + }, + "io.k8s.api.batch.v1.JobTemplateSpec": { + "description": "JobTemplateSpec describes the data a Job should have when created from a template", + "properties": { + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.JobSpec" + } + }, + "type": "object" + }, + "io.k8s.api.batch.v1.PodFailurePolicy": { + "description": "PodFailurePolicy describes how failed pods influence the backoffLimit.", + "properties": { + "rules": { + "description": "A list of pod failure policy rules. The rules are evaluated in order. Once a rule matches a Pod failure, the remaining of the rules are ignored. When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit. At most 20 elements are allowed.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.PodFailurePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["rules"], + "type": "object" + }, + "io.k8s.api.batch.v1.PodFailurePolicyOnExitCodesRequirement": { + "description": "PodFailurePolicyOnExitCodesRequirement describes the requirement for handling a failed pod based on its container exit codes. In particular, it lookups the .state.terminated.exitCode for each app container and init container status, represented by the .status.containerStatuses and .status.initContainerStatuses fields in the Pod status, respectively. Containers completed with success (exit code 0) are excluded from the requirement check.", + "properties": { + "containerName": { + "description": "Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names in the pod template.", + "type": "string" + }, + "operator": { + "description": "Represents the relationship between the container exit code(s) and the specified values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are:\n\n- In: the requirement is satisfied if at least one container exit code\n (might be multiple if there are multiple containers not restricted\n by the 'containerName' field) is in the set of specified values.\n- NotIn: the requirement is satisfied if at least one container exit code\n (might be multiple if there are multiple containers not restricted\n by the 'containerName' field) is not in the set of specified values.\nAdditional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied.", + "type": "string" + }, + "values": { + "description": "Specifies the set of values. Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator. The list of values must be ordered and must not contain duplicates. Value '0' cannot be used for the In operator. At least one element is required. At most 255 elements are allowed.", + "items": { + "format": "int32", + "type": "integer" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "required": ["operator", "values"], + "type": "object" + }, + "io.k8s.api.batch.v1.PodFailurePolicyOnPodConditionsPattern": { + "description": "PodFailurePolicyOnPodConditionsPattern describes a pattern for matching an actual pod condition type.", + "properties": { + "status": { + "description": "Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.", + "type": "string" + }, + "type": { + "description": "Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.batch.v1.PodFailurePolicyRule": { + "description": "PodFailurePolicyRule describes how a pod failure is handled when the requirements are met. One of onExitCodes and onPodConditions, but not both, can be used in each rule.", + "properties": { + "action": { + "description": "Specifies the action taken on a pod failure when the requirements are satisfied. Possible values are:\n\n- FailJob: indicates that the pod's job is marked as Failed and all\n running pods are terminated.\n- FailIndex: indicates that the pod's index is marked as Failed and will\n not be restarted.\n This value is alpha-level. It can be used when the\n `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default).\n- Ignore: indicates that the counter towards the .backoffLimit is not\n incremented and a replacement pod is created.\n- Count: indicates that the pod is handled in the default way - the\n counter towards the .backoffLimit is incremented.\nAdditional values are considered to be added in the future. Clients should react to an unknown action by skipping the rule.", + "type": "string" + }, + "onExitCodes": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.PodFailurePolicyOnExitCodesRequirement" + }, + "onPodConditions": { + "description": "Represents the requirement on the pod conditions. The requirement is represented as a list of pod condition patterns. The requirement is satisfied if at least one pattern matches an actual pod condition. At most 20 elements are allowed.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.batch.v1.PodFailurePolicyOnPodConditionsPattern" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["action"], + "type": "object" + }, + "io.k8s.api.batch.v1.UncountedTerminatedPods": { + "description": "UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters.", + "properties": { + "failed": { + "description": "failed holds UIDs of failed Pods.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "succeeded": { + "description": "succeeded holds UIDs of succeeded Pods.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "type": "object" + }, + "io.k8s.api.certificates.v1.CertificateSigningRequest": { + "description": "CertificateSigningRequest objects provide a mechanism to obtain x509 certificates by submitting a certificate signing request, and having it asynchronously approved and issued.\n\nKubelets use this API to obtain:\n 1. client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client-kubelet\" signerName).\n 2. serving certificates for TLS endpoints kube-apiserver can connect to securely (with the \"kubernetes.io/kubelet-serving\" signerName).\n\nThis API can be used to request client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client\" signerName), or to obtain certificates from custom non-Kubernetes signers.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequest", + "version": "v1" + } + ] + }, + "io.k8s.api.certificates.v1.CertificateSigningRequestCondition": { + "description": "CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastUpdateTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "message contains a human readable message with details about the request state", + "type": "string" + }, + "reason": { + "description": "reason indicates a brief reason for the request state", + "type": "string" + }, + "status": { + "description": "status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\".", + "type": "string" + }, + "type": { + "description": "type of the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status subresource, indicating the signer failed to issue the certificate.\n\nApproved and Denied conditions are mutually exclusive. Approved, Denied, and Failed conditions cannot be removed once added.\n\nOnly one condition of a given type is allowed.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.certificates.v1.CertificateSigningRequestList": { + "description": "CertificateSigningRequestList is a collection of CertificateSigningRequest objects", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a collection of CertificateSigningRequest objects", + "items": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "certificates.k8s.io", + "kind": "CertificateSigningRequestList", + "version": "v1" + } + ] + }, + "io.k8s.api.certificates.v1.CertificateSigningRequestSpec": { + "description": "CertificateSigningRequestSpec contains the certificate request.", + "properties": { + "expirationSeconds": { + "description": "expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration.\n\nThe v1.22+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller manager.\n\nCertificate signers may not honor this field for various reasons:\n\n 1. Old signer that is unaware of the field (such as the in-tree\n implementations prior to v1.22)\n 2. Signer whose configured maximum is shorter than the requested duration\n 3. Signer whose configured minimum is longer than the requested duration\n\nThe minimum valid value for expirationSeconds is 600, i.e. 10 minutes.", + "format": "int32", + "type": "integer" + }, + "extra": { + "additionalProperties": { + "items": { + "type": "string" + }, + "type": "array" + }, + "description": "extra contains extra attributes of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.", + "type": "object" + }, + "groups": { + "description": "groups contains group membership of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "request": { + "description": "request contains an x509 certificate signing request encoded in a \"CERTIFICATE REQUEST\" PEM block. When serialized as JSON or YAML, the data is additionally base64-encoded.", + "format": "byte", + "type": "string", + "x-kubernetes-list-type": "atomic" + }, + "signerName": { + "description": "signerName indicates the requested signer, and is a qualified name.\n\nList/watch requests for CertificateSigningRequests can filter on this field using a \"spec.signerName=NAME\" fieldSelector.\n\nWell-known Kubernetes signers are:\n 1. \"kubernetes.io/kube-apiserver-client\": issues client certificates that can be used to authenticate to kube-apiserver.\n Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the \"csrsigning\" controller in kube-controller-manager.\n 2. \"kubernetes.io/kube-apiserver-client-kubelet\": issues client certificates that kubelets use to authenticate to kube-apiserver.\n Requests for this signer can be auto-approved by the \"csrapproving\" controller in kube-controller-manager, and can be issued by the \"csrsigning\" controller in kube-controller-manager.\n 3. \"kubernetes.io/kubelet-serving\" issues serving certificates that kubelets use to serve TLS endpoints, which kube-apiserver can connect to securely.\n Requests for this signer are never auto-approved by kube-controller-manager, and can be issued by the \"csrsigning\" controller in kube-controller-manager.\n\nMore details are available at https://k8s.io/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signers\n\nCustom signerNames can also be specified. The signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.\n 6. Whether or not requests for CA certificates are allowed.", + "type": "string" + }, + "uid": { + "description": "uid contains the uid of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.", + "type": "string" + }, + "usages": { + "description": "usages specifies a set of key usages requested in the issued certificate.\n\nRequests for TLS client certificates typically request: \"digital signature\", \"key encipherment\", \"client auth\".\n\nRequests for TLS serving certificates typically request: \"key encipherment\", \"digital signature\", \"server auth\".\n\nValid values are:\n \"signing\", \"digital signature\", \"content commitment\",\n \"key encipherment\", \"key agreement\", \"data encipherment\",\n \"cert sign\", \"crl sign\", \"encipher only\", \"decipher only\", \"any\",\n \"server auth\", \"client auth\",\n \"code signing\", \"email protection\", \"s/mime\",\n \"ipsec end system\", \"ipsec tunnel\", \"ipsec user\",\n \"timestamping\", \"ocsp signing\", \"microsoft sgc\", \"netscape sgc\"", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "username": { + "description": "username contains the name of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.", + "type": "string" + } + }, + "required": ["request", "signerName"], + "type": "object" + }, + "io.k8s.api.certificates.v1.CertificateSigningRequestStatus": { + "description": "CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate.", + "properties": { + "certificate": { + "description": "certificate is populated with an issued certificate by the signer after an Approved condition is present. This field is set via the /status subresource. Once populated, this field is immutable.\n\nIf the certificate signing request is denied, a condition of type \"Denied\" is added and this field remains empty. If the signer cannot issue the certificate, a condition of type \"Failed\" is added and this field remains empty.\n\nValidation requirements:\n 1. certificate must contain one or more PEM blocks.\n 2. All PEM blocks must have the \"CERTIFICATE\" label, contain no headers, and the encoded data\n must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.\n 3. Non-PEM content may appear before or after the \"CERTIFICATE\" PEM blocks and is unvalidated,\n to allow for explanatory text as described in section 5.2 of RFC7468.\n\nIf more than one PEM block is present, and the definition of the requested spec.signerName does not indicate otherwise, the first block is the issued certificate, and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakes.\n\nThe certificate is encoded in PEM format.\n\nWhen serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of:\n\n base64(\n -----BEGIN CERTIFICATE-----\n ...\n -----END CERTIFICATE-----\n )", + "format": "byte", + "type": "string", + "x-kubernetes-list-type": "atomic" + }, + "conditions": { + "description": "conditions applied to the request. Known conditions are \"Approved\", \"Denied\", and \"Failed\".", + "items": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequestCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundle": { + "description": "ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors (root certificates).\n\nClusterTrustBundle objects are considered to be readable by any authenticated user in the cluster, because they can be mounted by pods using the `clusterTrustBundle` projection. All service accounts have read access to ClusterTrustBundles by default. Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access to.\n\nIt can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer. Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust anchors for that signer. Admission control is used to enforce that only users with permissions on the signer can create or modify the corresponding bundle.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundleSpec" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundle", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList": { + "description": "ClusterTrustBundleList is a collection of ClusterTrustBundle objects", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a collection of ClusterTrustBundle objects", + "items": { + "$ref": "#/components/schemas/io.k8s.api.certificates.v1alpha1.ClusterTrustBundle" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "certificates.k8s.io", + "kind": "ClusterTrustBundleList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.certificates.v1alpha1.ClusterTrustBundleSpec": { + "description": "ClusterTrustBundleSpec contains the signer and trust anchors.", + "properties": { + "signerName": { + "description": "signerName indicates the associated signer, if any.\n\nIn order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificates.k8s.io resource=signers resourceName= verb=attest.\n\nIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons). For example, for the signer name `example.com/foo`, valid ClusterTrustBundle object names include `example.com:foo:abc` and `example.com:foo:v1`.\n\nIf signerName is empty, then the ClusterTrustBundle object's name must not have such a prefix.\n\nList/watch requests for ClusterTrustBundles can filter on this field using a `spec.signerName=NAME` field selector.", + "type": "string" + }, + "trustBundle": { + "description": "trustBundle contains the individual X.509 trust anchors for this bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.\n\nThe data must consist only of PEM certificate blocks that parse as valid X.509 certificates. Each certificate must include a basic constraints extension with the CA bit set. The API server will reject objects that contain duplicate certificates, or that use PEM block headers.\n\nUsers of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and inter-block data.", + "type": "string" + } + }, + "required": ["trustBundle"], + "type": "object" + }, + "io.k8s.api.coordination.v1.Lease": { + "description": "Lease defines a lease concept.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.LeaseSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "coordination.k8s.io", + "kind": "Lease", + "version": "v1" + } + ] + }, + "io.k8s.api.coordination.v1.LeaseList": { + "description": "LeaseList is a list of Lease objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a list of schema objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.coordination.v1.Lease" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "coordination.k8s.io", + "kind": "LeaseList", + "version": "v1" + } + ] + }, + "io.k8s.api.coordination.v1.LeaseSpec": { + "description": "LeaseSpec is a specification of a Lease.", + "properties": { + "acquireTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" + }, + "holderIdentity": { + "description": "holderIdentity contains the identity of the holder of a current lease.", + "type": "string" + }, + "leaseDurationSeconds": { + "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed renewTime.", + "format": "int32", + "type": "integer" + }, + "leaseTransitions": { + "description": "leaseTransitions is the number of transitions of a lease between holders.", + "format": "int32", + "type": "integer" + }, + "renewTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": { + "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "type": "string" + }, + "partition": { + "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", + "format": "int32", + "type": "integer" + }, + "readOnly": { + "description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "type": "boolean" + }, + "volumeID": { + "description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "type": "string" + } + }, + "required": ["volumeID"], + "type": "object" + }, + "io.k8s.api.core.v1.Affinity": { + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeAffinity" + }, + "podAffinity": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinity" + }, + "podAntiAffinity": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAntiAffinity" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.AttachedVolume": { + "description": "AttachedVolume describes a volume attached to a node", + "properties": { + "devicePath": { + "description": "DevicePath represents the device path where the volume should be available", + "type": "string" + }, + "name": { + "description": "Name of the attached volume", + "type": "string" + } + }, + "required": ["name", "devicePath"], + "type": "object" + }, + "io.k8s.api.core.v1.AzureDiskVolumeSource": { + "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + "properties": { + "cachingMode": { + "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.", + "type": "string" + }, + "diskName": { + "description": "diskName is the Name of the data disk in the blob storage", + "type": "string" + }, + "diskURI": { + "description": "diskURI is the URI of data disk in the blob storage", + "type": "string" + }, + "fsType": { + "description": "fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "kind": { + "description": "kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", + "type": "string" + }, + "readOnly": { + "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + } + }, + "required": ["diskName", "diskURI"], + "type": "object" + }, + "io.k8s.api.core.v1.AzureFilePersistentVolumeSource": { + "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + "properties": { + "readOnly": { + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretName": { + "description": "secretName is the name of secret that contains Azure Storage Account Name and Key", + "type": "string" + }, + "secretNamespace": { + "description": "secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", + "type": "string" + }, + "shareName": { + "description": "shareName is the azure Share Name", + "type": "string" + } + }, + "required": ["secretName", "shareName"], + "type": "object" + }, + "io.k8s.api.core.v1.AzureFileVolumeSource": { + "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + "properties": { + "readOnly": { + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretName": { + "description": "secretName is the name of secret that contains Azure Storage Account Name and Key", + "type": "string" + }, + "shareName": { + "description": "shareName is the azure share Name", + "type": "string" + } + }, + "required": ["secretName", "shareName"], + "type": "object" + }, + "io.k8s.api.core.v1.Binding": { + "description": "Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "target": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + } + }, + "required": ["target"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Binding", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.CSIPersistentVolumeSource": { + "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", + "properties": { + "controllerExpandSecretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "controllerPublishSecretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "driver": { + "description": "driver is the name of the driver to use for this volume. Required.", + "type": "string" + }, + "fsType": { + "description": "fsType to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", + "type": "string" + }, + "nodeExpandSecretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "nodePublishSecretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "nodeStageSecretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "readOnly": { + "description": "readOnly value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", + "type": "boolean" + }, + "volumeAttributes": { + "additionalProperties": { + "type": "string" + }, + "description": "volumeAttributes of the volume to publish.", + "type": "object" + }, + "volumeHandle": { + "description": "volumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.", + "type": "string" + } + }, + "required": ["driver", "volumeHandle"], + "type": "object" + }, + "io.k8s.api.core.v1.CSIVolumeSource": { + "description": "Represents a source location of a volume to mount, managed by an external CSI driver", + "properties": { + "driver": { + "description": "driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", + "type": "string" + }, + "fsType": { + "description": "fsType to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", + "type": "string" + }, + "nodePublishSecretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "readOnly": { + "description": "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).", + "type": "boolean" + }, + "volumeAttributes": { + "additionalProperties": { + "type": "string" + }, + "description": "volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", + "type": "object" + } + }, + "required": ["driver"], + "type": "object" + }, + "io.k8s.api.core.v1.Capabilities": { + "description": "Adds and removes POSIX capabilities from running containers.", + "properties": { + "add": { + "description": "Added capabilities", + "items": { + "type": "string" + }, + "type": "array" + }, + "drop": { + "description": "Removed capabilities", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.CephFSPersistentVolumeSource": { + "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", + "properties": { + "monitors": { + "description": "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "items": { + "type": "string" + }, + "type": "array" + }, + "path": { + "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + "type": "string" + }, + "readOnly": { + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "type": "boolean" + }, + "secretFile": { + "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "type": "string" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "user": { + "description": "user is Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "type": "string" + } + }, + "required": ["monitors"], + "type": "object" + }, + "io.k8s.api.core.v1.CephFSVolumeSource": { + "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", + "properties": { + "monitors": { + "description": "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "items": { + "type": "string" + }, + "type": "array" + }, + "path": { + "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + "type": "string" + }, + "readOnly": { + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "type": "boolean" + }, + "secretFile": { + "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "type": "string" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "user": { + "description": "user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", + "type": "string" + } + }, + "required": ["monitors"], + "type": "object" + }, + "io.k8s.api.core.v1.CinderPersistentVolumeSource": { + "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", + "properties": { + "fsType": { + "description": "fsType Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "type": "string" + }, + "readOnly": { + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "volumeID": { + "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "type": "string" + } + }, + "required": ["volumeID"], + "type": "object" + }, + "io.k8s.api.core.v1.CinderVolumeSource": { + "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "type": "string" + }, + "readOnly": { + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "volumeID": { + "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", + "type": "string" + } + }, + "required": ["volumeID"], + "type": "object" + }, + "io.k8s.api.core.v1.ClaimSource": { + "description": "ClaimSource describes a reference to a ResourceClaim.\n\nExactly one of these fields should be set. Consumers of this type must treat an empty object as if it has an unknown value.", + "properties": { + "resourceClaimName": { + "description": "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.", + "type": "string" + }, + "resourceClaimTemplateName": { + "description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ClientIPConfig": { + "description": "ClientIPConfig represents the configurations of Client IP based session affinity.", + "properties": { + "timeoutSeconds": { + "description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ComponentCondition": { + "description": "Information about the condition of a component.", + "properties": { + "error": { + "description": "Condition error code for a component. For example, a health check error code.", + "type": "string" + }, + "message": { + "description": "Message about the condition for a component. For example, information about a health check.", + "type": "string" + }, + "status": { + "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".", + "type": "string" + }, + "type": { + "description": "Type of condition for a component. Valid value: \"Healthy\"", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.core.v1.ComponentStatus": { + "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "conditions": { + "description": "List of component conditions observed", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ComponentStatus", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ComponentStatusList": { + "description": "Status of all the conditions for the component as a list of ComponentStatus objects. Deprecated: This API is deprecated in v1.19+", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of ComponentStatus objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ComponentStatus" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ComponentStatusList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ConfigMap": { + "description": "ConfigMap holds configuration data for pods to consume.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "binaryData": { + "additionalProperties": { + "format": "byte", + "type": "string" + }, + "description": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.", + "type": "object" + }, + "data": { + "additionalProperties": { + "type": "string" + }, + "description": "Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.", + "type": "object" + }, + "immutable": { + "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.", + "type": "boolean" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ConfigMap", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ConfigMapEnvSource": { + "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", + "properties": { + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "optional": { + "description": "Specify whether the ConfigMap must be defined", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ConfigMapKeySelector": { + "description": "Selects a key from a ConfigMap.", + "properties": { + "key": { + "description": "The key to select.", + "type": "string" + }, + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "optional": { + "description": "Specify whether the ConfigMap or its key must be defined", + "type": "boolean" + } + }, + "required": ["key"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.ConfigMapList": { + "description": "ConfigMapList is a resource containing a list of ConfigMap objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of ConfigMaps.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMap" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ConfigMapList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ConfigMapNodeConfigSource": { + "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration", + "properties": { + "kubeletConfigKey": { + "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.", + "type": "string" + }, + "name": { + "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.", + "type": "string" + }, + "namespace": { + "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.", + "type": "string" + }, + "resourceVersion": { + "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", + "type": "string" + }, + "uid": { + "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", + "type": "string" + } + }, + "required": ["namespace", "name", "kubeletConfigKey"], + "type": "object" + }, + "io.k8s.api.core.v1.ConfigMapProjection": { + "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", + "properties": { + "items": { + "description": "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" + }, + "type": "array" + }, + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "optional": { + "description": "optional specify whether the ConfigMap or its keys must be defined", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ConfigMapVolumeSource": { + "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", + "properties": { + "defaultMode": { + "description": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "format": "int32", + "type": "integer" + }, + "items": { + "description": "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" + }, + "type": "array" + }, + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "optional": { + "description": "optional specify whether the ConfigMap or its keys must be defined", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.Container": { + "description": "A single application container that you want to run within a pod.", + "properties": { + "args": { + "description": "Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", + "items": { + "type": "string" + }, + "type": "array" + }, + "command": { + "description": "Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", + "items": { + "type": "string" + }, + "type": "array" + }, + "env": { + "description": "List of environment variables to set in the container. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVar" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "envFrom": { + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvFromSource" + }, + "type": "array" + }, + "image": { + "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", + "type": "string" + }, + "imagePullPolicy": { + "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", + "type": "string" + }, + "lifecycle": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Lifecycle" + }, + "livenessProbe": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" + }, + "name": { + "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", + "type": "string" + }, + "ports": { + "description": "List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerPort" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["containerPort", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "containerPort", + "x-kubernetes-patch-strategy": "merge" + }, + "readinessProbe": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" + }, + "resizePolicy": { + "description": "Resources resize policy for the container.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerResizePolicy" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resources": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements" + }, + "restartPolicy": { + "description": "RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is \"Always\". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod's restart policy and the container type. Setting the RestartPolicy as \"Always\" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy \"Always\" will be shut down. This lifecycle differs from normal init containers and is often referred to as a \"sidecar\" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.", + "type": "string" + }, + "securityContext": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecurityContext" + }, + "startupProbe": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" + }, + "stdin": { + "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + "type": "boolean" + }, + "stdinOnce": { + "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + "type": "boolean" + }, + "terminationMessagePath": { + "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + "type": "string" + }, + "terminationMessagePolicy": { + "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", + "type": "string" + }, + "tty": { + "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + "type": "boolean" + }, + "volumeDevices": { + "description": "volumeDevices is the list of block devices to be used by the container.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeDevice" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "devicePath", + "x-kubernetes-patch-strategy": "merge" + }, + "volumeMounts": { + "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeMount" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "mountPath", + "x-kubernetes-patch-strategy": "merge" + }, + "workingDir": { + "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.ContainerImage": { + "description": "Describe a container image", + "properties": { + "names": { + "description": "Names by which this image is known. e.g. [\"kubernetes.example/hyperkube:v1.0.7\", \"cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7\"]", + "items": { + "type": "string" + }, + "type": "array" + }, + "sizeBytes": { + "description": "The size of the image in bytes.", + "format": "int64", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ContainerPort": { + "description": "ContainerPort represents a network port in a single container.", + "properties": { + "containerPort": { + "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", + "format": "int32", + "type": "integer" + }, + "hostIP": { + "description": "What host IP to bind the external port to.", + "type": "string" + }, + "hostPort": { + "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", + "format": "int32", + "type": "integer" + }, + "name": { + "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", + "type": "string" + }, + "protocol": { + "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", + "type": "string" + } + }, + "required": ["containerPort"], + "type": "object" + }, + "io.k8s.api.core.v1.ContainerResizePolicy": { + "description": "ContainerResizePolicy represents resource resize policy for the container.", + "properties": { + "resourceName": { + "description": "Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.", + "type": "string" + }, + "restartPolicy": { + "description": "Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.", + "type": "string" + } + }, + "required": ["resourceName", "restartPolicy"], + "type": "object" + }, + "io.k8s.api.core.v1.ContainerState": { + "description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.", + "properties": { + "running": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStateRunning" + }, + "terminated": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStateTerminated" + }, + "waiting": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStateWaiting" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ContainerStateRunning": { + "description": "ContainerStateRunning is a running state of a container.", + "properties": { + "startedAt": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ContainerStateTerminated": { + "description": "ContainerStateTerminated is a terminated state of a container.", + "properties": { + "containerID": { + "description": "Container's ID in the format '://'", + "type": "string" + }, + "exitCode": { + "description": "Exit status from the last termination of the container", + "format": "int32", + "type": "integer" + }, + "finishedAt": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "Message regarding the last termination of the container", + "type": "string" + }, + "reason": { + "description": "(brief) reason from the last termination of the container", + "type": "string" + }, + "signal": { + "description": "Signal from the last termination of the container", + "format": "int32", + "type": "integer" + }, + "startedAt": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + }, + "required": ["exitCode"], + "type": "object" + }, + "io.k8s.api.core.v1.ContainerStateWaiting": { + "description": "ContainerStateWaiting is a waiting state of a container.", + "properties": { + "message": { + "description": "Message regarding why the container is not yet running.", + "type": "string" + }, + "reason": { + "description": "(brief) reason the container is not yet running.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ContainerStatus": { + "description": "ContainerStatus contains details for the current status of this container.", + "properties": { + "allocatedResources": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully admitting desired pod resize.", + "type": "object" + }, + "containerID": { + "description": "ContainerID is the ID of the container in the format '://'. Where type is a container runtime identifier, returned from Version call of CRI API (for example \"containerd\").", + "type": "string" + }, + "image": { + "description": "Image is the name of container image that the container is running. The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime. More info: https://kubernetes.io/docs/concepts/containers/images.", + "type": "string" + }, + "imageID": { + "description": "ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime.", + "type": "string" + }, + "lastState": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerState" + }, + "name": { + "description": "Name is a DNS_LABEL representing the unique name of the container. Each container in a pod must have a unique name across all container types. Cannot be updated.", + "type": "string" + }, + "ready": { + "description": "Ready specifies whether the container is currently passing its readiness check. The value will change as readiness probes keep executing. If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field).\n\nThe value is typically used to determine whether a container is ready to accept traffic.", + "type": "boolean" + }, + "resources": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements" + }, + "restartCount": { + "description": "RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative.", + "format": "int32", + "type": "integer" + }, + "started": { + "description": "Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook. The null value must be treated the same as false.", + "type": "boolean" + }, + "state": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerState" + } + }, + "required": ["name", "ready", "restartCount", "image", "imageID"], + "type": "object" + }, + "io.k8s.api.core.v1.DaemonEndpoint": { + "description": "DaemonEndpoint contains information about a single Daemon endpoint.", + "properties": { + "Port": { + "description": "Port number of the given endpoint.", + "format": "int32", + "type": "integer" + } + }, + "required": ["Port"], + "type": "object" + }, + "io.k8s.api.core.v1.DownwardAPIProjection": { + "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", + "properties": { + "items": { + "description": "Items is a list of DownwardAPIVolume file", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeFile" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.DownwardAPIVolumeFile": { + "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", + "properties": { + "fieldRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectFieldSelector" + }, + "mode": { + "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "format": "int32", + "type": "integer" + }, + "path": { + "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", + "type": "string" + }, + "resourceFieldRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector" + } + }, + "required": ["path"], + "type": "object" + }, + "io.k8s.api.core.v1.DownwardAPIVolumeSource": { + "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", + "properties": { + "defaultMode": { + "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "format": "int32", + "type": "integer" + }, + "items": { + "description": "Items is a list of downward API volume file", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeFile" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.EmptyDirVolumeSource": { + "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", + "properties": { + "medium": { + "description": "medium represents what type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", + "type": "string" + }, + "sizeLimit": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.EndpointAddress": { + "description": "EndpointAddress is a tuple that describes single IP address.", + "properties": { + "hostname": { + "description": "The Hostname of this endpoint", + "type": "string" + }, + "ip": { + "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10), or link-local multicast (224.0.0.0/24 or ff02::/16).", + "type": "string" + }, + "nodeName": { + "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.", + "type": "string" + }, + "targetRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + } + }, + "required": ["ip"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.EndpointPort": { + "description": "EndpointPort is a tuple that describes a single port.", + "properties": { + "appProtocol": { + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", + "type": "string" + }, + "name": { + "description": "The name of this port. This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.", + "type": "string" + }, + "port": { + "description": "The port number of the endpoint.", + "format": "int32", + "type": "integer" + }, + "protocol": { + "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", + "type": "string" + } + }, + "required": ["port"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.EndpointSubset": { + "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n\n\t{\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t}\n\nThe resulting set of endpoints can be viewed as:\n\n\ta: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n\tb: [ 10.10.1.1:309, 10.10.2.2:309 ]", + "properties": { + "addresses": { + "description": "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointAddress" + }, + "type": "array" + }, + "notReadyAddresses": { + "description": "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointAddress" + }, + "type": "array" + }, + "ports": { + "description": "Port numbers available on the related IP addresses.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointPort" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.Endpoints": { + "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n\n\t Name: \"mysvc\",\n\t Subsets: [\n\t {\n\t Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n\t },\n\t {\n\t Addresses: [{\"ip\": \"10.10.3.3\"}],\n\t Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n\t },\n\t]", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "subsets": { + "description": "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EndpointSubset" + }, + "type": "array" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Endpoints", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.EndpointsList": { + "description": "EndpointsList is a list of endpoints.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of endpoints.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Endpoints" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "EndpointsList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.EnvFromSource": { + "description": "EnvFromSource represents the source of a set of ConfigMaps", + "properties": { + "configMapRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapEnvSource" + }, + "prefix": { + "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", + "type": "string" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretEnvSource" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.EnvVar": { + "description": "EnvVar represents an environment variable present in a Container.", + "properties": { + "name": { + "description": "Name of the environment variable. Must be a C_IDENTIFIER.", + "type": "string" + }, + "value": { + "description": "Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", + "type": "string" + }, + "valueFrom": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVarSource" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.EnvVarSource": { + "description": "EnvVarSource represents a source for the value of an EnvVar.", + "properties": { + "configMapKeyRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapKeySelector" + }, + "fieldRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectFieldSelector" + }, + "resourceFieldRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector" + }, + "secretKeyRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretKeySelector" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.EphemeralContainer": { + "description": "An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.\n\nTo add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.", + "properties": { + "args": { + "description": "Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", + "items": { + "type": "string" + }, + "type": "array" + }, + "command": { + "description": "Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", + "items": { + "type": "string" + }, + "type": "array" + }, + "env": { + "description": "List of environment variables to set in the container. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVar" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "envFrom": { + "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvFromSource" + }, + "type": "array" + }, + "image": { + "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images", + "type": "string" + }, + "imagePullPolicy": { + "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", + "type": "string" + }, + "lifecycle": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Lifecycle" + }, + "livenessProbe": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" + }, + "name": { + "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", + "type": "string" + }, + "ports": { + "description": "Ports are not allowed for ephemeral containers.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerPort" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["containerPort", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "containerPort", + "x-kubernetes-patch-strategy": "merge" + }, + "readinessProbe": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" + }, + "resizePolicy": { + "description": "Resources resize policy for the container.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerResizePolicy" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resources": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements" + }, + "restartPolicy": { + "description": "Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers.", + "type": "string" + }, + "securityContext": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecurityContext" + }, + "startupProbe": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" + }, + "stdin": { + "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + "type": "boolean" + }, + "stdinOnce": { + "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + "type": "boolean" + }, + "targetContainerName": { + "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec.\n\nThe container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.", + "type": "string" + }, + "terminationMessagePath": { + "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + "type": "string" + }, + "terminationMessagePolicy": { + "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", + "type": "string" + }, + "tty": { + "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + "type": "boolean" + }, + "volumeDevices": { + "description": "volumeDevices is the list of block devices to be used by the container.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeDevice" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "devicePath", + "x-kubernetes-patch-strategy": "merge" + }, + "volumeMounts": { + "description": "Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeMount" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "mountPath", + "x-kubernetes-patch-strategy": "merge" + }, + "workingDir": { + "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.EphemeralVolumeSource": { + "description": "Represents an ephemeral volume that is handled by a normal storage driver.", + "properties": { + "volumeClaimTemplate": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimTemplate" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.Event": { + "description": "Event is a report of an event somewhere in the cluster. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.", + "properties": { + "action": { + "description": "What action was taken/failed regarding to the Regarding object.", + "type": "string" + }, + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "count": { + "description": "The number of times this event has occurred.", + "format": "int32", + "type": "integer" + }, + "eventTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" + }, + "firstTimestamp": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "involvedObject": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "lastTimestamp": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human-readable description of the status of this operation.", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "reason": { + "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.", + "type": "string" + }, + "related": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "reportingComponent": { + "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.", + "type": "string" + }, + "reportingInstance": { + "description": "ID of the controller instance, e.g. `kubelet-xyzf`.", + "type": "string" + }, + "series": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventSeries" + }, + "source": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventSource" + }, + "type": { + "description": "Type of this event (Normal, Warning), new types could be added in the future", + "type": "string" + } + }, + "required": ["metadata", "involvedObject"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Event", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.EventList": { + "description": "EventList is a list of events.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of events", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Event" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "EventList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.EventSeries": { + "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.", + "properties": { + "count": { + "description": "Number of occurrences in this series up to the last heartbeat time", + "format": "int32", + "type": "integer" + }, + "lastObservedTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.EventSource": { + "description": "EventSource contains information for an event.", + "properties": { + "component": { + "description": "Component from which the event is generated.", + "type": "string" + }, + "host": { + "description": "Node name on which the event is generated.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ExecAction": { + "description": "ExecAction describes a \"run in container\" action.", + "properties": { + "command": { + "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.FCVolumeSource": { + "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "lun": { + "description": "lun is Optional: FC target lun number", + "format": "int32", + "type": "integer" + }, + "readOnly": { + "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "targetWWNs": { + "description": "targetWWNs is Optional: FC target worldwide names (WWNs)", + "items": { + "type": "string" + }, + "type": "array" + }, + "wwids": { + "description": "wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.FlexPersistentVolumeSource": { + "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", + "properties": { + "driver": { + "description": "driver is the name of the driver to use for this volume.", + "type": "string" + }, + "fsType": { + "description": "fsType is the Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", + "type": "string" + }, + "options": { + "additionalProperties": { + "type": "string" + }, + "description": "options is Optional: this field holds extra command options if any.", + "type": "object" + }, + "readOnly": { + "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + } + }, + "required": ["driver"], + "type": "object" + }, + "io.k8s.api.core.v1.FlexVolumeSource": { + "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", + "properties": { + "driver": { + "description": "driver is the name of the driver to use for this volume.", + "type": "string" + }, + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", + "type": "string" + }, + "options": { + "additionalProperties": { + "type": "string" + }, + "description": "options is Optional: this field holds extra command options if any.", + "type": "object" + }, + "readOnly": { + "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + } + }, + "required": ["driver"], + "type": "object" + }, + "io.k8s.api.core.v1.FlockerVolumeSource": { + "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", + "properties": { + "datasetName": { + "description": "datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", + "type": "string" + }, + "datasetUUID": { + "description": "datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource": { + "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", + "properties": { + "fsType": { + "description": "fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "type": "string" + }, + "partition": { + "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "format": "int32", + "type": "integer" + }, + "pdName": { + "description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "type": "string" + }, + "readOnly": { + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + "type": "boolean" + } + }, + "required": ["pdName"], + "type": "object" + }, + "io.k8s.api.core.v1.GRPCAction": { + "properties": { + "port": { + "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.", + "format": "int32", + "type": "integer" + }, + "service": { + "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.", + "type": "string" + } + }, + "required": ["port"], + "type": "object" + }, + "io.k8s.api.core.v1.GitRepoVolumeSource": { + "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", + "properties": { + "directory": { + "description": "directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", + "type": "string" + }, + "repository": { + "description": "repository is the URL", + "type": "string" + }, + "revision": { + "description": "revision is the commit hash for the specified revision.", + "type": "string" + } + }, + "required": ["repository"], + "type": "object" + }, + "io.k8s.api.core.v1.GlusterfsPersistentVolumeSource": { + "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", + "properties": { + "endpoints": { + "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "endpointsNamespace": { + "description": "endpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "path": { + "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "readOnly": { + "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "type": "boolean" + } + }, + "required": ["endpoints", "path"], + "type": "object" + }, + "io.k8s.api.core.v1.GlusterfsVolumeSource": { + "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", + "properties": { + "endpoints": { + "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "path": { + "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "readOnly": { + "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", + "type": "boolean" + } + }, + "required": ["endpoints", "path"], + "type": "object" + }, + "io.k8s.api.core.v1.HTTPGetAction": { + "description": "HTTPGetAction describes an action based on HTTP Get requests.", + "properties": { + "host": { + "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", + "type": "string" + }, + "httpHeaders": { + "description": "Custom headers to set in the request. HTTP allows repeated headers.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPHeader" + }, + "type": "array" + }, + "path": { + "description": "Path to access on the HTTP server.", + "type": "string" + }, + "port": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "scheme": { + "description": "Scheme to use for connecting to the host. Defaults to HTTP.", + "type": "string" + } + }, + "required": ["port"], + "type": "object" + }, + "io.k8s.api.core.v1.HTTPHeader": { + "description": "HTTPHeader describes a custom header to be used in HTTP probes", + "properties": { + "name": { + "description": "The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.", + "type": "string" + }, + "value": { + "description": "The header field value", + "type": "string" + } + }, + "required": ["name", "value"], + "type": "object" + }, + "io.k8s.api.core.v1.HostAlias": { + "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", + "properties": { + "hostnames": { + "description": "Hostnames for the above IP address.", + "items": { + "type": "string" + }, + "type": "array" + }, + "ip": { + "description": "IP address of the host file entry.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.HostIP": { + "description": "HostIP represents a single IP address allocated to the host.", + "properties": { + "ip": { + "description": "IP is the IP address assigned to the host", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.HostPathVolumeSource": { + "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", + "properties": { + "path": { + "description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "type": "string" + }, + "type": { + "description": "type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + "type": "string" + } + }, + "required": ["path"], + "type": "object" + }, + "io.k8s.api.core.v1.ISCSIPersistentVolumeSource": { + "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", + "properties": { + "chapAuthDiscovery": { + "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication", + "type": "boolean" + }, + "chapAuthSession": { + "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication", + "type": "boolean" + }, + "fsType": { + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", + "type": "string" + }, + "initiatorName": { + "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection.", + "type": "string" + }, + "iqn": { + "description": "iqn is Target iSCSI Qualified Name.", + "type": "string" + }, + "iscsiInterface": { + "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", + "type": "string" + }, + "lun": { + "description": "lun is iSCSI Target Lun number.", + "format": "int32", + "type": "integer" + }, + "portals": { + "description": "portals is the iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "items": { + "type": "string" + }, + "type": "array" + }, + "readOnly": { + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "targetPortal": { + "description": "targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "type": "string" + } + }, + "required": ["targetPortal", "iqn", "lun"], + "type": "object" + }, + "io.k8s.api.core.v1.ISCSIVolumeSource": { + "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", + "properties": { + "chapAuthDiscovery": { + "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication", + "type": "boolean" + }, + "chapAuthSession": { + "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication", + "type": "boolean" + }, + "fsType": { + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", + "type": "string" + }, + "initiatorName": { + "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection.", + "type": "string" + }, + "iqn": { + "description": "iqn is the target iSCSI Qualified Name.", + "type": "string" + }, + "iscsiInterface": { + "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", + "type": "string" + }, + "lun": { + "description": "lun represents iSCSI Target Lun number.", + "format": "int32", + "type": "integer" + }, + "portals": { + "description": "portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "items": { + "type": "string" + }, + "type": "array" + }, + "readOnly": { + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "targetPortal": { + "description": "targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "type": "string" + } + }, + "required": ["targetPortal", "iqn", "lun"], + "type": "object" + }, + "io.k8s.api.core.v1.KeyToPath": { + "description": "Maps a string key to a path within a volume.", + "properties": { + "key": { + "description": "key is the key to project.", + "type": "string" + }, + "mode": { + "description": "mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "format": "int32", + "type": "integer" + }, + "path": { + "description": "path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", + "type": "string" + } + }, + "required": ["key", "path"], + "type": "object" + }, + "io.k8s.api.core.v1.Lifecycle": { + "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", + "properties": { + "postStart": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LifecycleHandler" + }, + "preStop": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LifecycleHandler" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.LifecycleHandler": { + "description": "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.", + "properties": { + "exec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction" + }, + "httpGet": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction" + }, + "tcpSocket": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TCPSocketAction" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.LimitRange": { + "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "LimitRange", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.LimitRangeItem": { + "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.", + "properties": { + "default": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Default resource requirement limit value by resource name if resource limit is omitted.", + "type": "object" + }, + "defaultRequest": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.", + "type": "object" + }, + "max": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Max usage constraints on this kind by resource name.", + "type": "object" + }, + "maxLimitRequestRatio": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.", + "type": "object" + }, + "min": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Min usage constraints on this kind by resource name.", + "type": "object" + }, + "type": { + "description": "Type of resource that this limit applies to.", + "type": "string" + } + }, + "required": ["type"], + "type": "object" + }, + "io.k8s.api.core.v1.LimitRangeList": { + "description": "LimitRangeList is a list of LimitRange items.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRange" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "LimitRangeList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.LimitRangeSpec": { + "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.", + "properties": { + "limits": { + "description": "Limits is the list of LimitRangeItem objects that are enforced.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LimitRangeItem" + }, + "type": "array" + } + }, + "required": ["limits"], + "type": "object" + }, + "io.k8s.api.core.v1.LoadBalancerIngress": { + "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", + "properties": { + "hostname": { + "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", + "type": "string" + }, + "ip": { + "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", + "type": "string" + }, + "ports": { + "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PortStatus" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.LoadBalancerStatus": { + "description": "LoadBalancerStatus represents the status of a load-balancer.", + "properties": { + "ingress": { + "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LoadBalancerIngress" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.LocalObjectReference": { + "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", + "properties": { + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.LocalVolumeSource": { + "description": "Local represents directly-attached storage with node affinity (Beta feature)", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a filesystem if unspecified.", + "type": "string" + }, + "path": { + "description": "path of the full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", + "type": "string" + } + }, + "required": ["path"], + "type": "object" + }, + "io.k8s.api.core.v1.NFSVolumeSource": { + "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", + "properties": { + "path": { + "description": "path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "type": "string" + }, + "readOnly": { + "description": "readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "type": "boolean" + }, + "server": { + "description": "server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + "type": "string" + } + }, + "required": ["server", "path"], + "type": "object" + }, + "io.k8s.api.core.v1.Namespace": { + "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Namespace", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.NamespaceCondition": { + "description": "NamespaceCondition contains details about state of namespace.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "type": "string" + }, + "reason": { + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of namespace controller condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.core.v1.NamespaceList": { + "description": "NamespaceList is a list of Namespaces.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Namespace" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "NamespaceList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.NamespaceSpec": { + "description": "NamespaceSpec describes the attributes on a Namespace.", + "properties": { + "finalizers": { + "description": "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.NamespaceStatus": { + "description": "NamespaceStatus is information about the current status of a Namespace.", + "properties": { + "conditions": { + "description": "Represents the latest available observations of a namespace's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NamespaceCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "phase": { + "description": "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.Node": { + "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Node", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.NodeAddress": { + "description": "NodeAddress contains information for the node's address.", + "properties": { + "address": { + "description": "The node address.", + "type": "string" + }, + "type": { + "description": "Node address type, one of Hostname, ExternalIP or InternalIP.", + "type": "string" + } + }, + "required": ["type", "address"], + "type": "object" + }, + "io.k8s.api.core.v1.NodeAffinity": { + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PreferredSchedulingTerm" + }, + "type": "array" + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.NodeCondition": { + "description": "NodeCondition contains condition information for a node.", + "properties": { + "lastHeartbeatTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "Human readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "(brief) reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of node condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.core.v1.NodeConfigSource": { + "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22", + "properties": { + "configMap": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapNodeConfigSource" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.NodeConfigStatus": { + "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.", + "properties": { + "active": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource" + }, + "assigned": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource" + }, + "error": { + "description": "Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.", + "type": "string" + }, + "lastKnownGood": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.NodeDaemonEndpoints": { + "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.", + "properties": { + "kubeletEndpoint": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.DaemonEndpoint" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.NodeList": { + "description": "NodeList is the whole list of all Nodes which have been registered with master.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of nodes", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Node" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "NodeList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.NodeSelector": { + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "properties": { + "nodeSelectorTerms": { + "description": "Required. A list of node selector terms. The terms are ORed.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorTerm" + }, + "type": "array" + } + }, + "required": ["nodeSelectorTerms"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.NodeSelectorRequirement": { + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "properties": { + "key": { + "description": "The label key that the selector applies to.", + "type": "string" + }, + "operator": { + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", + "type": "string" + }, + "values": { + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["key", "operator"], + "type": "object" + }, + "io.k8s.api.core.v1.NodeSelectorTerm": { + "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", + "properties": { + "matchExpressions": { + "description": "A list of node selector requirements by node's labels.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement" + }, + "type": "array" + }, + "matchFields": { + "description": "A list of node selector requirements by node's fields.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement" + }, + "type": "array" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.NodeSpec": { + "description": "NodeSpec describes the attributes that a node is created with.", + "properties": { + "configSource": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigSource" + }, + "externalID": { + "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966", + "type": "string" + }, + "podCIDR": { + "description": "PodCIDR represents the pod IP range assigned to the node.", + "type": "string" + }, + "podCIDRs": { + "description": "podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-patch-strategy": "merge" + }, + "providerID": { + "description": "ID of the node assigned by the cloud provider in the format: ://", + "type": "string" + }, + "taints": { + "description": "If specified, the node's taints.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Taint" + }, + "type": "array" + }, + "unschedulable": { + "description": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.NodeStatus": { + "description": "NodeStatus is information about the current status of a node.", + "properties": { + "addresses": { + "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See https://pr.k8s.io/79391 for an example. Consumers should assume that addresses can change during the lifetime of a Node. However, there are some exceptions where this may not be possible, such as Pods that inherit a Node's address in its own status or consumers of the downward API (status.hostIP).", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeAddress" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "allocatable": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.", + "type": "object" + }, + "capacity": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", + "type": "object" + }, + "conditions": { + "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "config": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeConfigStatus" + }, + "daemonEndpoints": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeDaemonEndpoints" + }, + "images": { + "description": "List of container images on this node", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerImage" + }, + "type": "array" + }, + "nodeInfo": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSystemInfo" + }, + "phase": { + "description": "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.", + "type": "string" + }, + "volumesAttached": { + "description": "List of volumes that are attached to the node.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.AttachedVolume" + }, + "type": "array" + }, + "volumesInUse": { + "description": "List of attachable volumes in use (mounted) by the node.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.NodeSystemInfo": { + "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.", + "properties": { + "architecture": { + "description": "The Architecture reported by the node", + "type": "string" + }, + "bootID": { + "description": "Boot ID reported by the node.", + "type": "string" + }, + "containerRuntimeVersion": { + "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).", + "type": "string" + }, + "kernelVersion": { + "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).", + "type": "string" + }, + "kubeProxyVersion": { + "description": "KubeProxy Version reported by the node.", + "type": "string" + }, + "kubeletVersion": { + "description": "Kubelet Version reported by the node.", + "type": "string" + }, + "machineID": { + "description": "MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html", + "type": "string" + }, + "operatingSystem": { + "description": "The Operating System reported by the node", + "type": "string" + }, + "osImage": { + "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).", + "type": "string" + }, + "systemUUID": { + "description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid", + "type": "string" + } + }, + "required": [ + "machineID", + "systemUUID", + "bootID", + "kernelVersion", + "osImage", + "containerRuntimeVersion", + "kubeletVersion", + "kubeProxyVersion", + "operatingSystem", + "architecture" + ], + "type": "object" + }, + "io.k8s.api.core.v1.ObjectFieldSelector": { + "description": "ObjectFieldSelector selects an APIVersioned field of an object.", + "properties": { + "apiVersion": { + "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", + "type": "string" + }, + "fieldPath": { + "description": "Path of the field to select in the specified API version.", + "type": "string" + } + }, + "required": ["fieldPath"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.ObjectReference": { + "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", + "properties": { + "apiVersion": { + "description": "API version of the referent.", + "type": "string" + }, + "fieldPath": { + "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", + "type": "string" + }, + "kind": { + "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "namespace": { + "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", + "type": "string" + }, + "resourceVersion": { + "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", + "type": "string" + }, + "uid": { + "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.PersistentVolume": { + "description": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "PersistentVolume", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PersistentVolumeClaim": { + "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "PersistentVolumeClaim", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PersistentVolumeClaimCondition": { + "description": "PersistentVolumeClaimCondition contains details about state of pvc", + "properties": { + "lastProbeTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "message is the human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.", + "type": "string" + }, + "status": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.core.v1.PersistentVolumeClaimList": { + "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "PersistentVolumeClaimList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PersistentVolumeClaimSpec": { + "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes", + "properties": { + "accessModes": { + "description": "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", + "items": { + "type": "string" + }, + "type": "array" + }, + "dataSource": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TypedLocalObjectReference" + }, + "dataSourceRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TypedObjectReference" + }, + "resources": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "storageClassName": { + "description": "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", + "type": "string" + }, + "volumeMode": { + "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.", + "type": "string" + }, + "volumeName": { + "description": "volumeName is the binding reference to the PersistentVolume backing this claim.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PersistentVolumeClaimStatus": { + "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.", + "properties": { + "accessModes": { + "description": "accessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", + "items": { + "type": "string" + }, + "type": "array" + }, + "allocatedResourceStatuses": { + "additionalProperties": { + "type": "string" + }, + "description": "allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nClaimResourceStatus can be in any of following states:\n\t- ControllerResizeInProgress:\n\t\tState set when resize controller starts resizing the volume in control-plane.\n\t- ControllerResizeFailed:\n\t\tState set when resize has failed in resize controller with a terminal error.\n\t- NodeResizePending:\n\t\tState set when resize controller has finished resizing the volume but further resizing of\n\t\tvolume is needed on the node.\n\t- NodeResizeInProgress:\n\t\tState set when kubelet starts resizing the volume.\n\t- NodeResizeFailed:\n\t\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\n\t\tNodeResizeFailed.\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\n\t- pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeFailed\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizePending\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeFailed\"\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\n\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", + "type": "object", + "x-kubernetes-map-type": "granular" + }, + "allocatedResources": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "allocatedResources tracks the resources allocated to a PVC including its capacity. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity.\n\nA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC.\n\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", + "type": "object" + }, + "capacity": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "capacity represents the actual resources of the underlying volume.", + "type": "object" + }, + "conditions": { + "description": "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "phase": { + "description": "phase represents the current phase of PersistentVolumeClaim.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PersistentVolumeClaimTemplate": { + "description": "PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.", + "properties": { + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimSpec" + } + }, + "required": ["spec"], + "type": "object" + }, + "io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource": { + "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", + "properties": { + "claimName": { + "description": "claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + "type": "string" + }, + "readOnly": { + "description": "readOnly Will force the ReadOnly setting in VolumeMounts. Default false.", + "type": "boolean" + } + }, + "required": ["claimName"], + "type": "object" + }, + "io.k8s.api.core.v1.PersistentVolumeList": { + "description": "PersistentVolumeList is a list of PersistentVolume items.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a list of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolume" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "PersistentVolumeList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PersistentVolumeSpec": { + "description": "PersistentVolumeSpec is the specification of a persistent volume.", + "properties": { + "accessModes": { + "description": "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", + "items": { + "type": "string" + }, + "type": "array" + }, + "awsElasticBlockStore": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" + }, + "azureDisk": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource" + }, + "azureFile": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFilePersistentVolumeSource" + }, + "capacity": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "capacity is the description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", + "type": "object" + }, + "cephfs": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSPersistentVolumeSource" + }, + "cinder": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.CinderPersistentVolumeSource" + }, + "claimRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "csi": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.CSIPersistentVolumeSource" + }, + "fc": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource" + }, + "flexVolume": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.FlexPersistentVolumeSource" + }, + "flocker": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource" + }, + "gcePersistentDisk": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" + }, + "glusterfs": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource" + }, + "hostPath": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource" + }, + "iscsi": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIPersistentVolumeSource" + }, + "local": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalVolumeSource" + }, + "mountOptions": { + "description": "mountOptions is the list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", + "items": { + "type": "string" + }, + "type": "array" + }, + "nfs": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource" + }, + "nodeAffinity": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeNodeAffinity" + }, + "persistentVolumeReclaimPolicy": { + "description": "persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", + "type": "string" + }, + "photonPersistentDisk": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" + }, + "portworxVolume": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource" + }, + "quobyte": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource" + }, + "rbd": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.RBDPersistentVolumeSource" + }, + "scaleIO": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource" + }, + "storageClassName": { + "description": "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", + "type": "string" + }, + "storageos": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSPersistentVolumeSource" + }, + "volumeMode": { + "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", + "type": "string" + }, + "vsphereVolume": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PersistentVolumeStatus": { + "description": "PersistentVolumeStatus is the current status of a persistent volume.", + "properties": { + "lastPhaseTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "message is a human-readable message indicating details about why the volume is in this state.", + "type": "string" + }, + "phase": { + "description": "phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", + "type": "string" + }, + "reason": { + "description": "reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource": { + "description": "Represents a Photon Controller persistent disk resource.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "pdID": { + "description": "pdID is the ID that identifies Photon Controller persistent disk", + "type": "string" + } + }, + "required": ["pdID"], + "type": "object" + }, + "io.k8s.api.core.v1.Pod": { + "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Pod", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PodAffinity": { + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.WeightedPodAffinityTerm" + }, + "type": "array" + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PodAffinityTerm": { + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running", + "properties": { + "labelSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "namespaceSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "namespaces": { + "description": "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \"this pod's namespace\".", + "items": { + "type": "string" + }, + "type": "array" + }, + "topologyKey": { + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", + "type": "string" + } + }, + "required": ["topologyKey"], + "type": "object" + }, + "io.k8s.api.core.v1.PodAntiAffinity": { + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.WeightedPodAffinityTerm" + }, + "type": "array" + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PodCondition": { + "description": "PodCondition contains details for the current condition of this pod.", + "properties": { + "lastProbeTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "Human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "Unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", + "type": "string" + }, + "type": { + "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.core.v1.PodDNSConfig": { + "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", + "properties": { + "nameservers": { + "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", + "items": { + "type": "string" + }, + "type": "array" + }, + "options": { + "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodDNSConfigOption" + }, + "type": "array" + }, + "searches": { + "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PodDNSConfigOption": { + "description": "PodDNSConfigOption defines DNS resolver options of a pod.", + "properties": { + "name": { + "description": "Required.", + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PodIP": { + "description": "PodIP represents a single IP address allocated to the pod.", + "properties": { + "ip": { + "description": "IP is the IP address assigned to the pod", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PodList": { + "description": "PodList is a list of Pods.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Pod" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "PodList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PodOS": { + "description": "PodOS defines the OS parameters of a pod.", + "properties": { + "name": { + "description": "Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.PodReadinessGate": { + "description": "PodReadinessGate contains the reference to a pod condition", + "properties": { + "conditionType": { + "description": "ConditionType refers to a condition in the pod's condition list with matching type.", + "type": "string" + } + }, + "required": ["conditionType"], + "type": "object" + }, + "io.k8s.api.core.v1.PodResourceClaim": { + "description": "PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.", + "properties": { + "name": { + "description": "Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.", + "type": "string" + }, + "source": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ClaimSource" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.PodResourceClaimStatus": { + "description": "PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim which references a ResourceClaimTemplate. It stores the generated name for the corresponding ResourceClaim.", + "properties": { + "name": { + "description": "Name uniquely identifies this resource claim inside the pod. This must match the name of an entry in pod.spec.resourceClaims, which implies that the string must be a DNS_LABEL.", + "type": "string" + }, + "resourceClaimName": { + "description": "ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. It this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.PodSchedulingGate": { + "description": "PodSchedulingGate is associated to a Pod to guard its scheduling.", + "properties": { + "name": { + "description": "Name of the scheduling gate. Each scheduling gate must have a unique name field.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.PodSecurityContext": { + "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", + "properties": { + "fsGroup": { + "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.", + "format": "int64", + "type": "integer" + }, + "fsGroupChangePolicy": { + "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used. Note that this field cannot be set when spec.os.name is windows.", + "type": "string" + }, + "runAsGroup": { + "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", + "format": "int64", + "type": "integer" + }, + "runAsNonRoot": { + "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "type": "boolean" + }, + "runAsUser": { + "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", + "format": "int64", + "type": "integer" + }, + "seLinuxOptions": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SELinuxOptions" + }, + "seccompProfile": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SeccompProfile" + }, + "supplementalGroups": { + "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.", + "items": { + "format": "int64", + "type": "integer" + }, + "type": "array" + }, + "sysctls": { + "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Sysctl" + }, + "type": "array" + }, + "windowsOptions": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.WindowsSecurityContextOptions" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PodSpec": { + "description": "PodSpec is a description of a pod.", + "properties": { + "activeDeadlineSeconds": { + "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", + "format": "int64", + "type": "integer" + }, + "affinity": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Affinity" + }, + "automountServiceAccountToken": { + "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", + "type": "boolean" + }, + "containers": { + "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Container" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "dnsConfig": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodDNSConfig" + }, + "dnsPolicy": { + "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", + "type": "string" + }, + "enableServiceLinks": { + "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", + "type": "boolean" + }, + "ephemeralContainers": { + "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralContainer" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "hostAliases": { + "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.HostAlias" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "ip", + "x-kubernetes-patch-strategy": "merge" + }, + "hostIPC": { + "description": "Use the host's ipc namespace. Optional: Default to false.", + "type": "boolean" + }, + "hostNetwork": { + "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", + "type": "boolean" + }, + "hostPID": { + "description": "Use the host's pid namespace. Optional: Default to false.", + "type": "boolean" + }, + "hostUsers": { + "description": "Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.", + "type": "boolean" + }, + "hostname": { + "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", + "type": "string" + }, + "imagePullSecrets": { + "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "initContainers": { + "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Container" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "nodeName": { + "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", + "type": "string" + }, + "nodeSelector": { + "additionalProperties": { + "type": "string" + }, + "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "os": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodOS" + }, + "overhead": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md", + "type": "object" + }, + "preemptionPolicy": { + "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.", + "type": "string" + }, + "priority": { + "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", + "format": "int32", + "type": "integer" + }, + "priorityClassName": { + "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", + "type": "string" + }, + "readinessGates": { + "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodReadinessGate" + }, + "type": "array" + }, + "resourceClaims": { + "description": "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodResourceClaim" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys" + }, + "restartPolicy": { + "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", + "type": "string" + }, + "runtimeClassName": { + "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class", + "type": "string" + }, + "schedulerName": { + "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", + "type": "string" + }, + "schedulingGates": { + "description": "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod.\n\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.\n\nThis is a beta feature enabled by the PodSchedulingReadiness feature gate.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSchedulingGate" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + }, + "securityContext": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSecurityContext" + }, + "serviceAccount": { + "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", + "type": "string" + }, + "serviceAccountName": { + "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", + "type": "string" + }, + "setHostnameAsFQDN": { + "description": "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.", + "type": "boolean" + }, + "shareProcessNamespace": { + "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", + "type": "boolean" + }, + "subdomain": { + "description": "If specified, the fully qualified Pod hostname will be \"...svc.\". If not specified, the pod will not have a domainname at all.", + "type": "string" + }, + "terminationGracePeriodSeconds": { + "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", + "format": "int64", + "type": "integer" + }, + "tolerations": { + "description": "If specified, the pod's tolerations.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Toleration" + }, + "type": "array" + }, + "topologySpreadConstraints": { + "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TopologySpreadConstraint" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["topologyKey", "whenUnsatisfiable"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "topologyKey", + "x-kubernetes-patch-strategy": "merge" + }, + "volumes": { + "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Volume" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys" + } + }, + "required": ["containers"], + "type": "object" + }, + "io.k8s.api.core.v1.PodStatus": { + "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.", + "properties": { + "conditions": { + "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "containerStatuses": { + "description": "The list has one entry per container in the manifest. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStatus" + }, + "type": "array" + }, + "ephemeralContainerStatuses": { + "description": "Status for any ephemeral containers that have run in this pod.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStatus" + }, + "type": "array" + }, + "hostIP": { + "description": "hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod", + "type": "string" + }, + "hostIPs": { + "description": "hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.HostIP" + }, + "type": "array", + "x-kubernetes-list-type": "atomic", + "x-kubernetes-patch-merge-key": "ip", + "x-kubernetes-patch-strategy": "merge" + }, + "initContainerStatuses": { + "description": "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerStatus" + }, + "type": "array" + }, + "message": { + "description": "A human readable message indicating details about why the pod is in this condition.", + "type": "string" + }, + "nominatedNodeName": { + "description": "nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.", + "type": "string" + }, + "phase": { + "description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase", + "type": "string" + }, + "podIP": { + "description": "podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", + "type": "string" + }, + "podIPs": { + "description": "podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodIP" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "ip", + "x-kubernetes-patch-strategy": "merge" + }, + "qosClass": { + "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes", + "type": "string" + }, + "reason": { + "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'", + "type": "string" + }, + "resize": { + "description": "Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\"", + "type": "string" + }, + "resourceClaimStatuses": { + "description": "Status of resource claims.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodResourceClaimStatus" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys" + }, + "startTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PodTemplate": { + "description": "PodTemplate describes a template for creating copies of a predefined pod.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "template": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "PodTemplate", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PodTemplateList": { + "description": "PodTemplateList is a list of PodTemplates.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of pod templates", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplate" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "PodTemplateList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.PodTemplateSpec": { + "description": "PodTemplateSpec describes the data a pod should have when created from a template", + "properties": { + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSpec" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.PortStatus": { + "properties": { + "error": { + "description": "Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.", + "type": "string" + }, + "port": { + "description": "Port is the port number of the service port of which status is recorded here", + "format": "int32", + "type": "integer" + }, + "protocol": { + "description": "Protocol is the protocol of the service port of which status is recorded here The supported values are: \"TCP\", \"UDP\", \"SCTP\"", + "type": "string" + } + }, + "required": ["port", "protocol"], + "type": "object" + }, + "io.k8s.api.core.v1.PortworxVolumeSource": { + "description": "PortworxVolumeSource represents a Portworx volume resource.", + "properties": { + "fsType": { + "description": "fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "readOnly": { + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "volumeID": { + "description": "volumeID uniquely identifies a Portworx volume", + "type": "string" + } + }, + "required": ["volumeID"], + "type": "object" + }, + "io.k8s.api.core.v1.PreferredSchedulingTerm": { + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "properties": { + "preference": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorTerm" + }, + "weight": { + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", + "format": "int32", + "type": "integer" + } + }, + "required": ["weight", "preference"], + "type": "object" + }, + "io.k8s.api.core.v1.Probe": { + "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + "properties": { + "exec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction" + }, + "failureThreshold": { + "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + "format": "int32", + "type": "integer" + }, + "grpc": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction" + }, + "httpGet": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction" + }, + "initialDelaySeconds": { + "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + "format": "int32", + "type": "integer" + }, + "periodSeconds": { + "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + "format": "int32", + "type": "integer" + }, + "successThreshold": { + "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + "format": "int32", + "type": "integer" + }, + "tcpSocket": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TCPSocketAction" + }, + "terminationGracePeriodSeconds": { + "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.", + "format": "int64", + "type": "integer" + }, + "timeoutSeconds": { + "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ProjectedVolumeSource": { + "description": "Represents a projected volume source", + "properties": { + "defaultMode": { + "description": "defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "format": "int32", + "type": "integer" + }, + "sources": { + "description": "sources is the list of volume projections", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeProjection" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.QuobyteVolumeSource": { + "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", + "properties": { + "group": { + "description": "group to map volume access to Default is no group", + "type": "string" + }, + "readOnly": { + "description": "readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", + "type": "boolean" + }, + "registry": { + "description": "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", + "type": "string" + }, + "tenant": { + "description": "tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", + "type": "string" + }, + "user": { + "description": "user to map volume access to Defaults to serivceaccount user", + "type": "string" + }, + "volume": { + "description": "volume is a string that references an already created Quobyte volume by name.", + "type": "string" + } + }, + "required": ["registry", "volume"], + "type": "object" + }, + "io.k8s.api.core.v1.RBDPersistentVolumeSource": { + "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", + "type": "string" + }, + "image": { + "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + }, + "keyring": { + "description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + }, + "monitors": { + "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "items": { + "type": "string" + }, + "type": "array" + }, + "pool": { + "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + }, + "readOnly": { + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "user": { + "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + } + }, + "required": ["monitors", "image"], + "type": "object" + }, + "io.k8s.api.core.v1.RBDVolumeSource": { + "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", + "type": "string" + }, + "image": { + "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + }, + "keyring": { + "description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + }, + "monitors": { + "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "items": { + "type": "string" + }, + "type": "array" + }, + "pool": { + "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + }, + "readOnly": { + "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "user": { + "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", + "type": "string" + } + }, + "required": ["monitors", "image"], + "type": "object" + }, + "io.k8s.api.core.v1.ReplicationController": { + "description": "ReplicationController represents the configuration of a replication controller.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ReplicationController", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ReplicationControllerCondition": { + "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "A human readable message indicating details about the transition.", + "type": "string" + }, + "reason": { + "description": "The reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type of replication controller condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.api.core.v1.ReplicationControllerList": { + "description": "ReplicationControllerList is a collection of replication controllers.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationController" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ReplicationControllerList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ReplicationControllerSpec": { + "description": "ReplicationControllerSpec is the specification of a replication controller.", + "properties": { + "minReadySeconds": { + "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", + "format": "int32", + "type": "integer" + }, + "selector": { + "additionalProperties": { + "type": "string" + }, + "description": "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "template": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ReplicationControllerStatus": { + "description": "ReplicationControllerStatus represents the current status of a replication controller.", + "properties": { + "availableReplicas": { + "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.", + "format": "int32", + "type": "integer" + }, + "conditions": { + "description": "Represents the latest available observations of a replication controller's current state.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ReplicationControllerCondition" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "fullyLabeledReplicas": { + "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.", + "format": "int32", + "type": "integer" + }, + "observedGeneration": { + "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.", + "format": "int64", + "type": "integer" + }, + "readyReplicas": { + "description": "The number of ready replicas for this replication controller.", + "format": "int32", + "type": "integer" + }, + "replicas": { + "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", + "format": "int32", + "type": "integer" + } + }, + "required": ["replicas"], + "type": "object" + }, + "io.k8s.api.core.v1.ResourceClaim": { + "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.", + "properties": { + "name": { + "description": "Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.ResourceFieldSelector": { + "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", + "properties": { + "containerName": { + "description": "Container name: required for volumes, optional for env vars", + "type": "string" + }, + "divisor": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "resource": { + "description": "Required: resource to select", + "type": "string" + } + }, + "required": ["resource"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.ResourceQuota": { + "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuotaStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ResourceQuota", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ResourceQuotaList": { + "description": "ResourceQuotaList is a list of ResourceQuota items.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceQuota" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ResourceQuotaList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ResourceQuotaSpec": { + "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.", + "properties": { + "hard": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", + "type": "object" + }, + "scopeSelector": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ScopeSelector" + }, + "scopes": { + "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ResourceQuotaStatus": { + "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.", + "properties": { + "hard": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", + "type": "object" + }, + "used": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Used is the current observed total usage of the resource in the namespace.", + "type": "object" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ResourceRequirements": { + "description": "ResourceRequirements describes the compute resource requirements.", + "properties": { + "claims": { + "description": "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceClaim" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map" + }, + "limits": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + "type": "object" + }, + "requests": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + "type": "object" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.SELinuxOptions": { + "description": "SELinuxOptions are the labels to be applied to the container", + "properties": { + "level": { + "description": "Level is SELinux level label that applies to the container.", + "type": "string" + }, + "role": { + "description": "Role is a SELinux role label that applies to the container.", + "type": "string" + }, + "type": { + "description": "Type is a SELinux type label that applies to the container.", + "type": "string" + }, + "user": { + "description": "User is a SELinux user label that applies to the container.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ScaleIOPersistentVolumeSource": { + "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", + "type": "string" + }, + "gateway": { + "description": "gateway is the host address of the ScaleIO API Gateway.", + "type": "string" + }, + "protectionDomain": { + "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.", + "type": "string" + }, + "readOnly": { + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference" + }, + "sslEnabled": { + "description": "sslEnabled is the flag to enable/disable SSL communication with Gateway, default false", + "type": "boolean" + }, + "storageMode": { + "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", + "type": "string" + }, + "storagePool": { + "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.", + "type": "string" + }, + "system": { + "description": "system is the name of the storage system as configured in ScaleIO.", + "type": "string" + }, + "volumeName": { + "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.", + "type": "string" + } + }, + "required": ["gateway", "system", "secretRef"], + "type": "object" + }, + "io.k8s.api.core.v1.ScaleIOVolumeSource": { + "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", + "type": "string" + }, + "gateway": { + "description": "gateway is the host address of the ScaleIO API Gateway.", + "type": "string" + }, + "protectionDomain": { + "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.", + "type": "string" + }, + "readOnly": { + "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "sslEnabled": { + "description": "sslEnabled Flag enable/disable SSL communication with Gateway, default false", + "type": "boolean" + }, + "storageMode": { + "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", + "type": "string" + }, + "storagePool": { + "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.", + "type": "string" + }, + "system": { + "description": "system is the name of the storage system as configured in ScaleIO.", + "type": "string" + }, + "volumeName": { + "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.", + "type": "string" + } + }, + "required": ["gateway", "system", "secretRef"], + "type": "object" + }, + "io.k8s.api.core.v1.ScopeSelector": { + "description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.", + "properties": { + "matchExpressions": { + "description": "A list of scope selector requirements by scope of the resources.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ScopedResourceSelectorRequirement" + }, + "type": "array" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.ScopedResourceSelectorRequirement": { + "description": "A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.", + "properties": { + "operator": { + "description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.", + "type": "string" + }, + "scopeName": { + "description": "The name of the scope that the selector applies to.", + "type": "string" + }, + "values": { + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["scopeName", "operator"], + "type": "object" + }, + "io.k8s.api.core.v1.SeccompProfile": { + "description": "SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.", + "properties": { + "localhostProfile": { + "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \"Localhost\". Must NOT be set for any other type.", + "type": "string" + }, + "type": { + "description": "type indicates which kind of seccomp profile will be applied. Valid options are:\n\nLocalhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.", + "type": "string" + } + }, + "required": ["type"], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "type", + "fields-to-discriminateBy": { + "localhostProfile": "LocalhostProfile" + } + } + ] + }, + "io.k8s.api.core.v1.Secret": { + "description": "Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "data": { + "additionalProperties": { + "format": "byte", + "type": "string" + }, + "description": "Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4", + "type": "object" + }, + "immutable": { + "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.", + "type": "boolean" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "stringData": { + "additionalProperties": { + "type": "string" + }, + "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.", + "type": "object" + }, + "type": { + "description": "Used to facilitate programmatic handling of secret data. More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Secret", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.SecretEnvSource": { + "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", + "properties": { + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "optional": { + "description": "Specify whether the Secret must be defined", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.SecretKeySelector": { + "description": "SecretKeySelector selects a key of a Secret.", + "properties": { + "key": { + "description": "The key of the secret to select from. Must be a valid secret key.", + "type": "string" + }, + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "optional": { + "description": "Specify whether the Secret or its key must be defined", + "type": "boolean" + } + }, + "required": ["key"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.SecretList": { + "description": "SecretList is a list of Secret.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Secret" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "SecretList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.SecretProjection": { + "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", + "properties": { + "items": { + "description": "items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" + }, + "type": "array" + }, + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "optional": { + "description": "optional field specify whether the Secret or its key must be defined", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.SecretReference": { + "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", + "properties": { + "name": { + "description": "name is unique within a namespace to reference a secret resource.", + "type": "string" + }, + "namespace": { + "description": "namespace defines the space within which the secret name must be unique.", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.SecretVolumeSource": { + "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", + "properties": { + "defaultMode": { + "description": "defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "format": "int32", + "type": "integer" + }, + "items": { + "description": "items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" + }, + "type": "array" + }, + "optional": { + "description": "optional field specify whether the Secret or its keys must be defined", + "type": "boolean" + }, + "secretName": { + "description": "secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.SecurityContext": { + "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", + "properties": { + "allowPrivilegeEscalation": { + "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", + "type": "boolean" + }, + "capabilities": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Capabilities" + }, + "privileged": { + "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", + "type": "boolean" + }, + "procMount": { + "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", + "type": "string" + }, + "readOnlyRootFilesystem": { + "description": "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", + "type": "boolean" + }, + "runAsGroup": { + "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", + "format": "int64", + "type": "integer" + }, + "runAsNonRoot": { + "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "type": "boolean" + }, + "runAsUser": { + "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", + "format": "int64", + "type": "integer" + }, + "seLinuxOptions": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SELinuxOptions" + }, + "seccompProfile": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SeccompProfile" + }, + "windowsOptions": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.WindowsSecurityContextOptions" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.Service": { + "description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Service", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ServiceAccount": { + "description": "ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "automountServiceAccountToken": { + "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.", + "type": "boolean" + }, + "imagePullSecrets": { + "description": "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "secrets": { + "description": "Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use. Pods are only limited to this list if this service account has a \"kubernetes.io/enforce-mountable-secrets\" annotation set to \"true\". This field should not be used to find auto-generated service account token secrets for use outside of pods. Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created. More info: https://kubernetes.io/docs/concepts/configuration/secret", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ServiceAccount", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ServiceAccountList": { + "description": "ServiceAccountList is a list of ServiceAccount objects", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccount" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ServiceAccountList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ServiceAccountTokenProjection": { + "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", + "properties": { + "audience": { + "description": "audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", + "type": "string" + }, + "expirationSeconds": { + "description": "expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", + "format": "int64", + "type": "integer" + }, + "path": { + "description": "path is the path relative to the mount point of the file to project the token into.", + "type": "string" + } + }, + "required": ["path"], + "type": "object" + }, + "io.k8s.api.core.v1.ServiceList": { + "description": "ServiceList holds a list of services.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of services", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Service" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ServiceList", + "version": "v1" + } + ] + }, + "io.k8s.api.core.v1.ServicePort": { + "description": "ServicePort contains information on service's port.", + "properties": { + "appProtocol": { + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", + "type": "string" + }, + "name": { + "description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service.", + "type": "string" + }, + "nodePort": { + "description": "The port on each node on which this service is exposed when type is NodePort or LoadBalancer. Usually assigned by the system. If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail. If not specified, a port will be allocated if this Service requires one. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type from NodePort to ClusterIP). More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport", + "format": "int32", + "type": "integer" + }, + "port": { + "description": "The port that will be exposed by this service.", + "format": "int32", + "type": "integer" + }, + "protocol": { + "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.", + "type": "string" + }, + "targetPort": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + } + }, + "required": ["port"], + "type": "object" + }, + "io.k8s.api.core.v1.ServiceSpec": { + "description": "ServiceSpec describes the attributes that a user creates on a service.", + "properties": { + "allocateLoadBalancerNodePorts": { + "description": "allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is \"true\". It may be set to \"false\" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type.", + "type": "boolean" + }, + "clusterIP": { + "description": "clusterIP is the IP address of the service and is usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + "type": "string" + }, + "clusterIPs": { + "description": "ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are \"None\", empty string (\"\"), or a valid IP address. Setting this to \"None\" makes a \"headless service\" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value.\n\nThis field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "externalIPs": { + "description": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.", + "items": { + "type": "string" + }, + "type": "array" + }, + "externalName": { + "description": "externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires `type` to be \"ExternalName\".", + "type": "string" + }, + "externalTrafficPolicy": { + "description": "externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service's \"externally-facing\" addresses (NodePorts, ExternalIPs, and LoadBalancer IPs). If set to \"Local\", the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP. (Traffic mistakenly sent to a node with no endpoints will be dropped.) The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features). Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get \"Cluster\" semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node.", + "type": "string" + }, + "healthCheckNodePort": { + "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type). This field cannot be updated once set.", + "format": "int32", + "type": "integer" + }, + "internalTrafficPolicy": { + "description": "InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP. If set to \"Local\", the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints. The default value, \"Cluster\", uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features).", + "type": "string" + }, + "ipFamilies": { + "description": "IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are \"IPv4\" and \"IPv6\". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to \"headless\" services. This field will be wiped when updating a Service to type ExternalName.\n\nThis field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "ipFamilyPolicy": { + "description": "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.", + "type": "string" + }, + "loadBalancerClass": { + "description": "loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \"internal-vip\" or \"example.com/internal-vip\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.", + "type": "string" + }, + "loadBalancerIP": { + "description": "Only applies to Service Type: LoadBalancer. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature. Deprecated: This field was under-specified and its meaning varies across implementations. Using it is non-portable and it may not support dual-stack. Users are encouraged to use implementation-specific annotations when available.", + "type": "string" + }, + "loadBalancerSourceRanges": { + "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/", + "items": { + "type": "string" + }, + "type": "array" + }, + "ports": { + "description": "The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServicePort" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["port", "protocol"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "port", + "x-kubernetes-patch-strategy": "merge" + }, + "publishNotReadyAddresses": { + "description": "publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready. The primary use case for setting this field is for a StatefulSet's Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery. The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered \"ready\" even if the Pods themselves are not. Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior.", + "type": "boolean" + }, + "selector": { + "additionalProperties": { + "type": "string" + }, + "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/", + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "sessionAffinity": { + "description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + "type": "string" + }, + "sessionAffinityConfig": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SessionAffinityConfig" + }, + "type": { + "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. \"ExternalName\" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.ServiceStatus": { + "description": "ServiceStatus represents the current status of a service.", + "properties": { + "conditions": { + "description": "Current service state", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "loadBalancer": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LoadBalancerStatus" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.SessionAffinityConfig": { + "description": "SessionAffinityConfig represents the configurations of session affinity.", + "properties": { + "clientIP": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ClientIPConfig" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.StorageOSPersistentVolumeSource": { + "description": "Represents a StorageOS persistent volume resource.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "readOnly": { + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "volumeName": { + "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + "type": "string" + }, + "volumeNamespace": { + "description": "volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.StorageOSVolumeSource": { + "description": "Represents a StorageOS persistent volume resource.", + "properties": { + "fsType": { + "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "readOnly": { + "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + "type": "boolean" + }, + "secretRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" + }, + "volumeName": { + "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + "type": "string" + }, + "volumeNamespace": { + "description": "volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.Sysctl": { + "description": "Sysctl defines a kernel parameter to be set", + "properties": { + "name": { + "description": "Name of a property to set", + "type": "string" + }, + "value": { + "description": "Value of a property to set", + "type": "string" + } + }, + "required": ["name", "value"], + "type": "object" + }, + "io.k8s.api.core.v1.TCPSocketAction": { + "description": "TCPSocketAction describes an action based on opening a socket", + "properties": { + "host": { + "description": "Optional: Host name to connect to, defaults to the pod IP.", + "type": "string" + }, + "port": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + } + }, + "required": ["port"], + "type": "object" + }, + "io.k8s.api.core.v1.Taint": { + "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.", + "properties": { + "effect": { + "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.", + "type": "string" + }, + "key": { + "description": "Required. The taint key to be applied to a node.", + "type": "string" + }, + "timeAdded": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "value": { + "description": "The taint value corresponding to the taint key.", + "type": "string" + } + }, + "required": ["key", "effect"], + "type": "object" + }, + "io.k8s.api.core.v1.Toleration": { + "description": "The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .", + "properties": { + "effect": { + "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", + "type": "string" + }, + "key": { + "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", + "type": "string" + }, + "operator": { + "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", + "type": "string" + }, + "tolerationSeconds": { + "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", + "format": "int64", + "type": "integer" + }, + "value": { + "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.TopologySelectorLabelRequirement": { + "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.", + "properties": { + "key": { + "description": "The label key that the selector applies to.", + "type": "string" + }, + "values": { + "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["key", "values"], + "type": "object" + }, + "io.k8s.api.core.v1.TopologySelectorTerm": { + "description": "A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.", + "properties": { + "matchLabelExpressions": { + "description": "A list of topology selector requirements by labels.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TopologySelectorLabelRequirement" + }, + "type": "array" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.TopologySpreadConstraint": { + "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", + "properties": { + "labelSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "matchLabelKeys": { + "description": "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector.\n\nThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "maxSkew": { + "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.", + "format": "int32", + "type": "integer" + }, + "minDomains": { + "description": "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.\n\nThis is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).", + "format": "int32", + "type": "integer" + }, + "nodeAffinityPolicy": { + "description": "NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.\n\nIf this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", + "type": "string" + }, + "nodeTaintsPolicy": { + "description": "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included.\n\nIf this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", + "type": "string" + }, + "topologyKey": { + "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a \"bucket\", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \"kubernetes.io/hostname\", each Node is a domain of that topology. And, if TopologyKey is \"topology.kubernetes.io/zone\", each zone is a domain of that topology. It's a required field.", + "type": "string" + }, + "whenUnsatisfiable": { + "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n but giving higher precedence to topologies that would help reduce the\n skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assignment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", + "type": "string" + } + }, + "required": ["maxSkew", "topologyKey", "whenUnsatisfiable"], + "type": "object" + }, + "io.k8s.api.core.v1.TypedLocalObjectReference": { + "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", + "properties": { + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", + "type": "string" + }, + "kind": { + "description": "Kind is the type of resource being referenced", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.core.v1.TypedObjectReference": { + "properties": { + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", + "type": "string" + }, + "kind": { + "description": "Kind is the type of resource being referenced", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced", + "type": "string" + }, + "namespace": { + "description": "Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object" + }, + "io.k8s.api.core.v1.Volume": { + "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", + "properties": { + "awsElasticBlockStore": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" + }, + "azureDisk": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource" + }, + "azureFile": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource" + }, + "cephfs": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSVolumeSource" + }, + "cinder": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.CinderVolumeSource" + }, + "configMap": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource" + }, + "csi": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.CSIVolumeSource" + }, + "downwardAPI": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeSource" + }, + "emptyDir": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EmptyDirVolumeSource" + }, + "ephemeral": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralVolumeSource" + }, + "fc": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource" + }, + "flexVolume": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.FlexVolumeSource" + }, + "flocker": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource" + }, + "gcePersistentDisk": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" + }, + "gitRepo": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource" + }, + "glusterfs": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsVolumeSource" + }, + "hostPath": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource" + }, + "iscsi": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIVolumeSource" + }, + "name": { + "description": "name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + "type": "string" + }, + "nfs": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource" + }, + "persistentVolumeClaim": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource" + }, + "photonPersistentDisk": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" + }, + "portworxVolume": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource" + }, + "projected": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ProjectedVolumeSource" + }, + "quobyte": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource" + }, + "rbd": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource" + }, + "scaleIO": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource" + }, + "secret": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretVolumeSource" + }, + "storageos": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSVolumeSource" + }, + "vsphereVolume": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.core.v1.VolumeDevice": { + "description": "volumeDevice describes a mapping of a raw block device within a container.", + "properties": { + "devicePath": { + "description": "devicePath is the path inside of the container that the device will be mapped to.", + "type": "string" + }, + "name": { + "description": "name must match the name of a persistentVolumeClaim in the pod", + "type": "string" + } + }, + "required": ["name", "devicePath"], + "type": "object" + }, + "io.k8s.api.core.v1.VolumeMount": { + "description": "VolumeMount describes a mounting of a Volume within a container.", + "properties": { + "mountPath": { + "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", + "type": "string" + }, + "mountPropagation": { + "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", + "type": "string" + }, + "name": { + "description": "This must match the Name of a Volume.", + "type": "string" + }, + "readOnly": { + "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", + "type": "boolean" + }, + "subPath": { + "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", + "type": "string" + }, + "subPathExpr": { + "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", + "type": "string" + } + }, + "required": ["name", "mountPath"], + "type": "object" + }, + "io.k8s.api.core.v1.VolumeNodeAffinity": { + "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", + "properties": { + "required": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.VolumeProjection": { + "description": "Projection that may be projected along with other supported volume types", + "properties": { + "configMap": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapProjection" + }, + "downwardAPI": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIProjection" + }, + "secret": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretProjection" + }, + "serviceAccountToken": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountTokenProjection" + } + }, + "type": "object" + }, + "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": { + "description": "Represents a vSphere volume resource.", + "properties": { + "fsType": { + "description": "fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + "type": "string" + }, + "storagePolicyID": { + "description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", + "type": "string" + }, + "storagePolicyName": { + "description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name.", + "type": "string" + }, + "volumePath": { + "description": "volumePath is the path that identifies vSphere volume vmdk", + "type": "string" + } + }, + "required": ["volumePath"], + "type": "object" + }, + "io.k8s.api.core.v1.WeightedPodAffinityTerm": { + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "properties": { + "podAffinityTerm": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm" + }, + "weight": { + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", + "format": "int32", + "type": "integer" + } + }, + "required": ["weight", "podAffinityTerm"], + "type": "object" + }, + "io.k8s.api.core.v1.WindowsSecurityContextOptions": { + "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", + "properties": { + "gmsaCredentialSpec": { + "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", + "type": "string" + }, + "gmsaCredentialSpecName": { + "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", + "type": "string" + }, + "hostProcess": { + "description": "HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.", + "type": "boolean" + }, + "runAsUserName": { + "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.discovery.v1.Endpoint": { + "description": "Endpoint represents a single logical \"backend\" implementing a service.", + "properties": { + "addresses": { + "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100. These are all assumed to be fungible and clients may choose to only use the first element. Refer to: https://issue.k8s.io/106267", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "conditions": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointConditions" + }, + "deprecatedTopology": { + "additionalProperties": { + "type": "string" + }, + "description": "deprecatedTopology contains topology information part of the v1beta1 API. This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v1.24). While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored. Topology information can be found in the zone and nodeName fields instead.", + "type": "object" + }, + "hints": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointHints" + }, + "hostname": { + "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.", + "type": "string" + }, + "nodeName": { + "description": "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node.", + "type": "string" + }, + "targetRef": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "zone": { + "description": "zone is the name of the Zone this endpoint exists in.", + "type": "string" + } + }, + "required": ["addresses"], + "type": "object" + }, + "io.k8s.api.discovery.v1.EndpointConditions": { + "description": "EndpointConditions represents the current condition of an endpoint.", + "properties": { + "ready": { + "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag.", + "type": "boolean" + }, + "serving": { + "description": "serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition.", + "type": "boolean" + }, + "terminating": { + "description": "terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating.", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.discovery.v1.EndpointHints": { + "description": "EndpointHints provides hints describing how an endpoint should be consumed.", + "properties": { + "forZones": { + "description": "forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.ForZone" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.discovery.v1.EndpointPort": { + "description": "EndpointPort represents a Port used by an EndpointSlice", + "properties": { + "appProtocol": { + "description": "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", + "type": "string" + }, + "name": { + "description": "name represents the name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", + "type": "string" + }, + "port": { + "description": "port represents the port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", + "format": "int32", + "type": "integer" + }, + "protocol": { + "description": "protocol represents the IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.discovery.v1.EndpointSlice": { + "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.", + "properties": { + "addressType": { + "description": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.", + "type": "string" + }, + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "endpoints": { + "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.Endpoint" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "ports": { + "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointPort" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["addressType", "endpoints"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "discovery.k8s.io", + "kind": "EndpointSlice", + "version": "v1" + } + ] + }, + "io.k8s.api.discovery.v1.EndpointSliceList": { + "description": "EndpointSliceList represents a list of endpoint slices", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of endpoint slices", + "items": { + "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "discovery.k8s.io", + "kind": "EndpointSliceList", + "version": "v1" + } + ] + }, + "io.k8s.api.discovery.v1.ForZone": { + "description": "ForZone provides information about which zones should consume this endpoint.", + "properties": { + "name": { + "description": "name represents the name of the zone.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.events.v1.Event": { + "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.", + "properties": { + "action": { + "description": "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field cannot be empty for new Events and it can have at most 128 characters.", + "type": "string" + }, + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "deprecatedCount": { + "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.", + "format": "int32", + "type": "integer" + }, + "deprecatedFirstTimestamp": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "deprecatedLastTimestamp": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "deprecatedSource": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.EventSource" + }, + "eventTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "note": { + "description": "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.", + "type": "string" + }, + "reason": { + "description": "reason is why the action was taken. It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters.", + "type": "string" + }, + "regarding": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "related": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference" + }, + "reportingController": { + "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.", + "type": "string" + }, + "reportingInstance": { + "description": "reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`. This field cannot be empty for new Events and it can have at most 128 characters.", + "type": "string" + }, + "series": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.EventSeries" + }, + "type": { + "description": "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable. This field cannot be empty for new Events.", + "type": "string" + } + }, + "required": ["eventTime"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "events.k8s.io", + "kind": "Event", + "version": "v1" + } + ] + }, + "io.k8s.api.events.v1.EventList": { + "description": "EventList is a list of Event objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a list of schema objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.events.v1.Event" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "events.k8s.io", + "kind": "EventList", + "version": "v1" + } + ] + }, + "io.k8s.api.events.v1.EventSeries": { + "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. How often to update the EventSeries is up to the event reporters. The default event reporter in \"k8s.io/client-go/tools/events/event_broadcaster.go\" shows how this struct is updated on heartbeats and can guide customized reporter implementations.", + "properties": { + "count": { + "description": "count is the number of occurrences in this series up to the last heartbeat time.", + "format": "int32", + "type": "integer" + }, + "lastObservedTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime" + } + }, + "required": ["count", "lastObservedTime"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.ExemptPriorityLevelConfiguration": { + "description": "ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`.", + "properties": { + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "format": "int32", + "type": "integer" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.FlowDistinguisherMethod": { + "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", + "properties": { + "type": { + "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.", + "type": "string" + } + }, + "required": ["type"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.FlowSchema": { + "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta2" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta2.FlowSchemaCondition": { + "description": "FlowSchemaCondition describes conditions for a FlowSchema.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "`message` is a human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "type": "string" + }, + "type": { + "description": "`type` is the type of the condition. Required.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.FlowSchemaList": { + "description": "FlowSchemaList is a list of FlowSchema objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "`items` is a list of FlowSchemas.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchema" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchemaList", + "version": "v1beta2" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta2.FlowSchemaSpec": { + "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", + "properties": { + "distinguisherMethod": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowDistinguisherMethod" + }, + "matchingPrecedence": { + "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", + "format": "int32", + "type": "integer" + }, + "priorityLevelConfiguration": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationReference" + }, + "rules": { + "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PolicyRulesWithSubjects" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["priorityLevelConfiguration"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.FlowSchemaStatus": { + "description": "FlowSchemaStatus represents the current state of a FlowSchema.", + "properties": { + "conditions": { + "description": "`conditions` is a list of the current states of FlowSchema.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.FlowSchemaCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.GroupSubject": { + "description": "GroupSubject holds detailed information for group-kind subject.", + "properties": { + "name": { + "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.LimitResponse": { + "description": "LimitResponse defines how to handle requests that can not be executed right now.", + "properties": { + "queuing": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.QueuingConfiguration" + }, + "type": { + "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", + "type": "string" + } + }, + "required": ["type"], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "type", + "fields-to-discriminateBy": { + "queuing": "Queuing" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1beta2.LimitedPriorityLevelConfiguration": { + "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n - How are requests for this priority level limited?\n - What should be done with requests that exceed the limit?", + "properties": { + "assuredConcurrencyShares": { + "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", + "format": "int32", + "type": "integer" + }, + "borrowingLimitPercent": { + "description": "`borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite.", + "format": "int32", + "type": "integer" + }, + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "format": "int32", + "type": "integer" + }, + "limitResponse": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.LimitResponse" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.NonResourcePolicyRule": { + "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", + "properties": { + "nonResourceURLs": { + "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "verbs": { + "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "required": ["verbs", "nonResourceURLs"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.PolicyRulesWithSubjects": { + "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", + "properties": { + "nonResourceRules": { + "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.NonResourcePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resourceRules": { + "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.ResourcePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "subjects": { + "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.Subject" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["subjects"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration": { + "description": "PriorityLevelConfiguration represents the configuration of a priority level.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta2" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationCondition": { + "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "`message` is a human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "type": "string" + }, + "type": { + "description": "`type` is the type of the condition. Required.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationList": { + "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "`items` is a list of request-priorities.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfiguration" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfigurationList", + "version": "v1beta2" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationReference": { + "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", + "properties": { + "name": { + "description": "`name` is the name of the priority level configuration being referenced Required.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationSpec": { + "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", + "properties": { + "exempt": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.ExemptPriorityLevelConfiguration" + }, + "limited": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.LimitedPriorityLevelConfiguration" + }, + "type": { + "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", + "type": "string" + } + }, + "required": ["type"], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "type", + "fields-to-discriminateBy": { + "exempt": "Exempt", + "limited": "Limited" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationStatus": { + "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", + "properties": { + "conditions": { + "description": "`conditions` is the current state of \"request-priority\".", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.PriorityLevelConfigurationCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.QueuingConfiguration": { + "description": "QueuingConfiguration holds the configuration parameters for queuing", + "properties": { + "handSize": { + "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.", + "format": "int32", + "type": "integer" + }, + "queueLengthLimit": { + "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.", + "format": "int32", + "type": "integer" + }, + "queues": { + "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.ResourcePolicyRule": { + "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.", + "properties": { + "apiGroups": { + "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "clusterScope": { + "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.", + "type": "boolean" + }, + "namespaces": { + "description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "resources": { + "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "verbs": { + "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "required": ["verbs", "apiGroups", "resources"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.ServiceAccountSubject": { + "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", + "properties": { + "name": { + "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.", + "type": "string" + } + }, + "required": ["namespace", "name"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta2.Subject": { + "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", + "properties": { + "group": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.GroupSubject" + }, + "kind": { + "description": "`kind` indicates which one of the other fields is non-empty. Required", + "type": "string" + }, + "serviceAccount": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.ServiceAccountSubject" + }, + "user": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta2.UserSubject" + } + }, + "required": ["kind"], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "kind", + "fields-to-discriminateBy": { + "group": "Group", + "serviceAccount": "ServiceAccount", + "user": "User" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1beta2.UserSubject": { + "description": "UserSubject holds detailed information for user-kind subject.", + "properties": { + "name": { + "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.ExemptPriorityLevelConfiguration": { + "description": "ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`.", + "properties": { + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "format": "int32", + "type": "integer" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of zero.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod": { + "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", + "properties": { + "type": { + "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.", + "type": "string" + } + }, + "required": ["type"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.FlowSchema": { + "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchema", + "version": "v1beta3" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaCondition": { + "description": "FlowSchemaCondition describes conditions for a FlowSchema.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "`message` is a human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "type": "string" + }, + "type": { + "description": "`type` is the type of the condition. Required.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaList": { + "description": "FlowSchemaList is a list of FlowSchema objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "`items` is a list of FlowSchemas.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "FlowSchemaList", + "version": "v1beta3" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaSpec": { + "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", + "properties": { + "distinguisherMethod": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod" + }, + "matchingPrecedence": { + "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", + "format": "int32", + "type": "integer" + }, + "priorityLevelConfiguration": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference" + }, + "rules": { + "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PolicyRulesWithSubjects" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["priorityLevelConfiguration"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.FlowSchemaStatus": { + "description": "FlowSchemaStatus represents the current state of a FlowSchema.", + "properties": { + "conditions": { + "description": "`conditions` is a list of the current states of FlowSchema.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchemaCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.GroupSubject": { + "description": "GroupSubject holds detailed information for group-kind subject.", + "properties": { + "name": { + "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.LimitResponse": { + "description": "LimitResponse defines how to handle requests that can not be executed right now.", + "properties": { + "queuing": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.QueuingConfiguration" + }, + "type": { + "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", + "type": "string" + } + }, + "required": ["type"], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "type", + "fields-to-discriminateBy": { + "queuing": "Queuing" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1beta3.LimitedPriorityLevelConfiguration": { + "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n - How are requests for this priority level limited?\n - What should be done with requests that exceed the limit?", + "properties": { + "borrowingLimitPercent": { + "description": "`borrowingLimitPercent`, if present, configures a limit on how many seats this priority level can borrow from other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is effectively infinite.", + "format": "int32", + "type": "integer" + }, + "lendablePercent": { + "description": "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. The value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.\n\nLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )", + "format": "int32", + "type": "integer" + }, + "limitResponse": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.LimitResponse" + }, + "nominalConcurrencyShares": { + "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats available at this priority level. This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level. The server's concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:\n\nNominalCL(i) = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)\n\nBigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level. This field has a default value of 30.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule": { + "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", + "properties": { + "nonResourceURLs": { + "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "verbs": { + "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "required": ["verbs", "nonResourceURLs"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.PolicyRulesWithSubjects": { + "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", + "properties": { + "nonResourceRules": { + "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "resourceRules": { + "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.ResourcePolicyRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "subjects": { + "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.Subject" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["subjects"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration": { + "description": "PriorityLevelConfiguration represents the configuration of a priority level.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfiguration", + "version": "v1beta3" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationCondition": { + "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "`message` is a human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", + "type": "string" + }, + "type": { + "description": "`type` is the type of the condition. Required.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList": { + "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "`items` is a list of request-priorities.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "PriorityLevelConfigurationList", + "version": "v1beta3" + } + ] + }, + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference": { + "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", + "properties": { + "name": { + "description": "`name` is the name of the priority level configuration being referenced Required.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationSpec": { + "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", + "properties": { + "exempt": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.ExemptPriorityLevelConfiguration" + }, + "limited": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.LimitedPriorityLevelConfiguration" + }, + "type": { + "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", + "type": "string" + } + }, + "required": ["type"], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "type", + "fields-to-discriminateBy": { + "exempt": "Exempt", + "limited": "Limited" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationStatus": { + "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", + "properties": { + "conditions": { + "description": "`conditions` is the current state of \"request-priority\".", + "items": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.QueuingConfiguration": { + "description": "QueuingConfiguration holds the configuration parameters for queuing", + "properties": { + "handSize": { + "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.", + "format": "int32", + "type": "integer" + }, + "queueLengthLimit": { + "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.", + "format": "int32", + "type": "integer" + }, + "queues": { + "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.ResourcePolicyRule": { + "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.", + "properties": { + "apiGroups": { + "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "clusterScope": { + "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.", + "type": "boolean" + }, + "namespaces": { + "description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "resources": { + "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "verbs": { + "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "required": ["verbs", "apiGroups", "resources"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.ServiceAccountSubject": { + "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", + "properties": { + "name": { + "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.", + "type": "string" + } + }, + "required": ["namespace", "name"], + "type": "object" + }, + "io.k8s.api.flowcontrol.v1beta3.Subject": { + "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", + "properties": { + "group": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.GroupSubject" + }, + "kind": { + "description": "`kind` indicates which one of the other fields is non-empty. Required", + "type": "string" + }, + "serviceAccount": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.ServiceAccountSubject" + }, + "user": { + "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.UserSubject" + } + }, + "required": ["kind"], + "type": "object", + "x-kubernetes-unions": [ + { + "discriminator": "kind", + "fields-to-discriminateBy": { + "group": "Group", + "serviceAccount": "ServiceAccount", + "user": "User" + } + } + ] + }, + "io.k8s.api.flowcontrol.v1beta3.UserSubject": { + "description": "UserSubject holds detailed information for user-kind subject.", + "properties": { + "name": { + "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.", + "type": "string" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.networking.v1.HTTPIngressPath": { + "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", + "properties": { + "backend": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressBackend" + }, + "path": { + "description": "path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".", + "type": "string" + }, + "pathType": { + "description": "pathType determines the interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types.", + "type": "string" + } + }, + "required": ["pathType", "backend"], + "type": "object" + }, + "io.k8s.api.networking.v1.HTTPIngressRuleValue": { + "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", + "properties": { + "paths": { + "description": "paths is a collection of paths that map requests to backends.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.HTTPIngressPath" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "required": ["paths"], + "type": "object" + }, + "io.k8s.api.networking.v1.IPBlock": { + "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.0/24\",\"2001:db8::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", + "properties": { + "cidr": { + "description": "cidr is a string representing the IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"", + "type": "string" + }, + "except": { + "description": "except is a slice of CIDRs that should not be included within an IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the cidr range", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["cidr"], + "type": "object" + }, + "io.k8s.api.networking.v1.Ingress": { + "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "Ingress", + "version": "v1" + } + ] + }, + "io.k8s.api.networking.v1.IngressBackend": { + "description": "IngressBackend describes all endpoints for a given service and port.", + "properties": { + "resource": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TypedLocalObjectReference" + }, + "service": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressServiceBackend" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressClass": { + "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IngressClass", + "version": "v1" + } + ] + }, + "io.k8s.api.networking.v1.IngressClassList": { + "description": "IngressClassList is a collection of IngressClasses.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of IngressClasses.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClass" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IngressClassList", + "version": "v1" + } + ] + }, + "io.k8s.api.networking.v1.IngressClassParametersReference": { + "description": "IngressClassParametersReference identifies an API object. This can be used to specify a cluster or namespace-scoped resource.", + "properties": { + "apiGroup": { + "description": "apiGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", + "type": "string" + }, + "kind": { + "description": "kind is the type of resource being referenced.", + "type": "string" + }, + "name": { + "description": "name is the name of resource being referenced.", + "type": "string" + }, + "namespace": { + "description": "namespace is the namespace of the resource being referenced. This field is required when scope is set to \"Namespace\" and must be unset when scope is set to \"Cluster\".", + "type": "string" + }, + "scope": { + "description": "scope represents if this refers to a cluster or namespace scoped resource. This may be set to \"Cluster\" (default) or \"Namespace\".", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object" + }, + "io.k8s.api.networking.v1.IngressClassSpec": { + "description": "IngressClassSpec provides information about the class of an Ingress.", + "properties": { + "controller": { + "description": "controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", + "type": "string" + }, + "parameters": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressClassParametersReference" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressList": { + "description": "IngressList is a collection of Ingress.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of Ingress.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.Ingress" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IngressList", + "version": "v1" + } + ] + }, + "io.k8s.api.networking.v1.IngressLoadBalancerIngress": { + "description": "IngressLoadBalancerIngress represents the status of a load-balancer ingress point.", + "properties": { + "hostname": { + "description": "hostname is set for load-balancer ingress points that are DNS based.", + "type": "string" + }, + "ip": { + "description": "ip is set for load-balancer ingress points that are IP based.", + "type": "string" + }, + "ports": { + "description": "ports provides information about the ports exposed by this LoadBalancer.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressPortStatus" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressLoadBalancerStatus": { + "description": "IngressLoadBalancerStatus represents the status of a load-balancer.", + "properties": { + "ingress": { + "description": "ingress is a list containing ingress points for the load-balancer.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressLoadBalancerIngress" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressPortStatus": { + "description": "IngressPortStatus represents the error condition of a service port", + "properties": { + "error": { + "description": "error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use\n CamelCase names\n- cloud provider specific error values must have names that comply with the\n format foo.example.com/CamelCase.", + "type": "string" + }, + "port": { + "description": "port is the port number of the ingress port.", + "format": "int32", + "type": "integer" + }, + "protocol": { + "description": "protocol is the protocol of the ingress port. The supported values are: \"TCP\", \"UDP\", \"SCTP\"", + "type": "string" + } + }, + "required": ["port", "protocol"], + "type": "object" + }, + "io.k8s.api.networking.v1.IngressRule": { + "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", + "properties": { + "host": { + "description": "host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nhost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If host is precise, the request matches this rule if the http host header is equal to Host. 2. If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", + "type": "string" + }, + "http": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.HTTPIngressRuleValue" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressServiceBackend": { + "description": "IngressServiceBackend references a Kubernetes Service as a Backend.", + "properties": { + "name": { + "description": "name is the referenced service. The service must exist in the same namespace as the Ingress object.", + "type": "string" + }, + "port": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.ServiceBackendPort" + } + }, + "required": ["name"], + "type": "object" + }, + "io.k8s.api.networking.v1.IngressSpec": { + "description": "IngressSpec describes the Ingress the user wishes to exist.", + "properties": { + "defaultBackend": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressBackend" + }, + "ingressClassName": { + "description": "ingressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource). Although the `kubernetes.io/ingress.class` annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources. Newly created Ingress resources should prefer using the field. However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present.", + "type": "string" + }, + "rules": { + "description": "rules is a list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressRule" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "tls": { + "description": "tls represents the TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressTLS" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressStatus": { + "description": "IngressStatus describe the current state of the Ingress.", + "properties": { + "loadBalancer": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IngressLoadBalancerStatus" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.IngressTLS": { + "description": "IngressTLS describes the transport layer security associated with an ingress.", + "properties": { + "hosts": { + "description": "hosts is a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "secretName": { + "description": "secretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the \"Host\" header is used for routing.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.NetworkPolicy": { + "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicySpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "NetworkPolicy", + "version": "v1" + } + ] + }, + "io.k8s.api.networking.v1.NetworkPolicyEgressRule": { + "description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8", + "properties": { + "ports": { + "description": "ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyPort" + }, + "type": "array" + }, + "to": { + "description": "to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyPeer" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.NetworkPolicyIngressRule": { + "description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.", + "properties": { + "from": { + "description": "from is a list of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyPeer" + }, + "type": "array" + }, + "ports": { + "description": "ports is a list of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyPort" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.NetworkPolicyList": { + "description": "NetworkPolicyList is a list of NetworkPolicy objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a list of schema objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicy" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "NetworkPolicyList", + "version": "v1" + } + ] + }, + "io.k8s.api.networking.v1.NetworkPolicyPeer": { + "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed", + "properties": { + "ipBlock": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.IPBlock" + }, + "namespaceSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "podSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.NetworkPolicyPort": { + "description": "NetworkPolicyPort describes a port to allow traffic on", + "properties": { + "endPort": { + "description": "endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.", + "format": "int32", + "type": "integer" + }, + "port": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "protocol": { + "description": "protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1.NetworkPolicySpec": { + "description": "NetworkPolicySpec provides the specification of a NetworkPolicy", + "properties": { + "egress": { + "description": "egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyEgressRule" + }, + "type": "array" + }, + "ingress": { + "description": "ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1.NetworkPolicyIngressRule" + }, + "type": "array" + }, + "podSelector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "policyTypes": { + "description": "policyTypes is a list of rule types that the NetworkPolicy relates to. Valid options are [\"Ingress\"], [\"Egress\"], or [\"Ingress\", \"Egress\"]. If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["podSelector"], + "type": "object" + }, + "io.k8s.api.networking.v1.ServiceBackendPort": { + "description": "ServiceBackendPort is the service port being referenced.", + "properties": { + "name": { + "description": "name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".", + "type": "string" + }, + "number": { + "description": "number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1alpha1.ClusterCIDR": { + "description": "ClusterCIDR represents a single configuration for per-Node Pod CIDR allocations when the MultiCIDRRangeAllocator is enabled (see the config for kube-controller-manager). A cluster may have any number of ClusterCIDR resources, all of which will be considered when allocating a CIDR for a Node. A ClusterCIDR is eligible to be used for a given Node when the node selector matches the node in question and has free CIDRs to allocate. In case of multiple matching ClusterCIDR resources, the allocator will attempt to break ties using internal heuristics, but any ClusterCIDR whose node selector matches the Node may be used.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDRSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "ClusterCIDR", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.networking.v1alpha1.ClusterCIDRList": { + "description": "ClusterCIDRList contains a list of ClusterCIDR.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of ClusterCIDRs.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ClusterCIDR" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "ClusterCIDRList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.networking.v1alpha1.ClusterCIDRSpec": { + "description": "ClusterCIDRSpec defines the desired state of ClusterCIDR.", + "properties": { + "ipv4": { + "description": "ipv4 defines an IPv4 IP block in CIDR notation(e.g. \"10.0.0.0/8\"). At least one of ipv4 and ipv6 must be specified. This field is immutable.", + "type": "string" + }, + "ipv6": { + "description": "ipv6 defines an IPv6 IP block in CIDR notation(e.g. \"2001:db8::/64\"). At least one of ipv4 and ipv6 must be specified. This field is immutable.", + "type": "string" + }, + "nodeSelector": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector" + }, + "perNodeHostBits": { + "description": "perNodeHostBits defines the number of host bits to be configured per node. A subnet mask determines how much of the address is used for network bits and host bits. For example an IPv4 address of 192.168.0.0/24, splits the address into 24 bits for the network portion and 8 bits for the host portion. To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6). Minimum value is 4 (16 IPs). This field is immutable.", + "format": "int32", + "type": "integer" + } + }, + "required": ["perNodeHostBits"], + "type": "object" + }, + "io.k8s.api.networking.v1alpha1.IPAddress": { + "description": "IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 Invalid: 10.01.2.3 or 2001:db8:0:0:0::1", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddressSpec" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IPAddress", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.networking.v1alpha1.IPAddressList": { + "description": "IPAddressList contains a list of IPAddress.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of IPAddresses.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "networking.k8s.io", + "kind": "IPAddressList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.networking.v1alpha1.IPAddressSpec": { + "description": "IPAddressSpec describe the attributes in an IP Address.", + "properties": { + "parentRef": { + "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ParentReference" + } + }, + "type": "object" + }, + "io.k8s.api.networking.v1alpha1.ParentReference": { + "description": "ParentReference describes a reference to a parent object.", + "properties": { + "group": { + "description": "Group is the group of the object being referenced.", + "type": "string" + }, + "name": { + "description": "Name is the name of the object being referenced.", + "type": "string" + }, + "namespace": { + "description": "Namespace is the namespace of the object being referenced.", + "type": "string" + }, + "resource": { + "description": "Resource is the resource of the object being referenced.", + "type": "string" + }, + "uid": { + "description": "UID is the uid of the object being referenced.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.node.v1.Overhead": { + "description": "Overhead structure represents the resource overhead associated with running a pod.", + "properties": { + "podFixed": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "description": "podFixed represents the fixed resource overhead associated with running a pod.", + "type": "object" + } + }, + "type": "object" + }, + "io.k8s.api.node.v1.RuntimeClass": { + "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://kubernetes.io/docs/concepts/containers/runtime-class/", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "handler": { + "description": "handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable.", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "overhead": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.Overhead" + }, + "scheduling": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.Scheduling" + } + }, + "required": ["handler"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "node.k8s.io", + "kind": "RuntimeClass", + "version": "v1" + } + ] + }, + "io.k8s.api.node.v1.RuntimeClassList": { + "description": "RuntimeClassList is a list of RuntimeClass objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is a list of schema objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.node.v1.RuntimeClass" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "node.k8s.io", + "kind": "RuntimeClassList", + "version": "v1" + } + ] + }, + "io.k8s.api.node.v1.Scheduling": { + "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", + "properties": { + "nodeSelector": { + "additionalProperties": { + "type": "string" + }, + "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "tolerations": { + "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.Toleration" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + } + }, + "type": "object" + }, + "io.k8s.api.policy.v1.Eviction": { + "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "deleteOptions": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "policy", + "kind": "Eviction", + "version": "v1" + } + ] + }, + "io.k8s.api.policy.v1.PodDisruptionBudget": { + "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudgetStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "policy", + "kind": "PodDisruptionBudget", + "version": "v1" + } + ] + }, + "io.k8s.api.policy.v1.PodDisruptionBudgetList": { + "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of PodDisruptionBudgets", + "items": { + "$ref": "#/components/schemas/io.k8s.api.policy.v1.PodDisruptionBudget" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "policy", + "kind": "PodDisruptionBudgetList", + "version": "v1" + } + ] + }, + "io.k8s.api.policy.v1.PodDisruptionBudgetSpec": { + "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", + "properties": { + "maxUnavailable": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "minAvailable": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" + }, + "selector": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "unhealthyPodEvictionPolicy": { + "description": "UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type=\"Ready\",status=\"True\".\n\nValid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policy.\n\nIfHealthyBudget policy means that running pods (status.phase=\"Running\"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.\n\nThis field is beta-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.policy.v1.PodDisruptionBudgetStatus": { + "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", + "properties": { + "conditions": { + "description": "Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute\n the number of allowed disruptions. Therefore no disruptions are\n allowed and the status of the condition will be False.\n- InsufficientPods: The number of pods are either at or below the number\n required by the PodDisruptionBudget. No disruptions are\n allowed and the status of the condition will be False.\n- SufficientPods: There are more pods than required by the PodDisruptionBudget.\n The condition will be True, and the number of allowed\n disruptions are provided by the disruptionsAllowed property.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Condition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + }, + "currentHealthy": { + "description": "current number of healthy pods", + "format": "int32", + "type": "integer" + }, + "desiredHealthy": { + "description": "minimum desired number of healthy pods", + "format": "int32", + "type": "integer" + }, + "disruptedPods": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", + "type": "object" + }, + "disruptionsAllowed": { + "description": "Number of pod disruptions that are currently allowed.", + "format": "int32", + "type": "integer" + }, + "expectedPods": { + "description": "total number of pods counted by this disruption budget", + "format": "int32", + "type": "integer" + }, + "observedGeneration": { + "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.", + "format": "int64", + "type": "integer" + } + }, + "required": ["disruptionsAllowed", "currentHealthy", "desiredHealthy", "expectedPods"], + "type": "object" + }, + "io.k8s.api.rbac.v1.AggregationRule": { + "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", + "properties": { + "clusterRoleSelectors": { + "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.api.rbac.v1.ClusterRole": { + "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", + "properties": { + "aggregationRule": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.AggregationRule" + }, + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "rules": { + "description": "Rules holds all the PolicyRules for this ClusterRole", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.PolicyRule" + }, + "type": "array" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.ClusterRoleBinding": { + "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "roleRef": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleRef" + }, + "subjects": { + "description": "Subjects holds references to the objects the role applies to.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Subject" + }, + "type": "array" + } + }, + "required": ["roleRef"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBinding", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.ClusterRoleBindingList": { + "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of ClusterRoleBindings", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleBindingList", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.ClusterRoleList": { + "description": "ClusterRoleList is a collection of ClusterRoles", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of ClusterRoles", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "ClusterRoleList", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.PolicyRule": { + "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + "properties": { + "apiGroups": { + "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"\" represents the core API group and \"*\" represents all API groups.", + "items": { + "type": "string" + }, + "type": "array" + }, + "nonResourceURLs": { + "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", + "items": { + "type": "string" + }, + "type": "array" + }, + "resourceNames": { + "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + "items": { + "type": "string" + }, + "type": "array" + }, + "resources": { + "description": "Resources is a list of resources this rule applies to. '*' represents all resources.", + "items": { + "type": "string" + }, + "type": "array" + }, + "verbs": { + "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["verbs"], + "type": "object" + }, + "io.k8s.api.rbac.v1.Role": { + "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "rules": { + "description": "Rules holds all the PolicyRules for this Role", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.PolicyRule" + }, + "type": "array" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "Role", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.RoleBinding": { + "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "roleRef": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleRef" + }, + "subjects": { + "description": "Subjects holds references to the objects the role applies to.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Subject" + }, + "type": "array" + } + }, + "required": ["roleRef"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBinding", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.RoleBindingList": { + "description": "RoleBindingList is a collection of RoleBindings", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of RoleBindings", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "RoleBindingList", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.RoleList": { + "description": "RoleList is a collection of Roles", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of Roles", + "items": { + "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "rbac.authorization.k8s.io", + "kind": "RoleList", + "version": "v1" + } + ] + }, + "io.k8s.api.rbac.v1.RoleRef": { + "description": "RoleRef contains information that points to the role being used", + "properties": { + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced", + "type": "string" + }, + "kind": { + "description": "Kind is the type of resource being referenced", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced", + "type": "string" + } + }, + "required": ["apiGroup", "kind", "name"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.rbac.v1.Subject": { + "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", + "properties": { + "apiGroup": { + "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", + "type": "string" + }, + "kind": { + "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + "type": "string" + }, + "name": { + "description": "Name of the object being referenced.", + "type": "string" + }, + "namespace": { + "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.api.resource.v1alpha2.AllocationResult": { + "description": "AllocationResult contains attributes of an allocated resource.", + "properties": { + "availableOnNodes": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector" + }, + "resourceHandles": { + "description": "ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim. Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node. This data is returned by the driver after a successful allocation and is opaque to Kubernetes. Driver documentation may explain to users how to interpret this data if needed.\n\nSetting this field is optional. It has a maximum size of 32 entries. If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached. The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceHandle" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "shareable": { + "description": "Shareable determines whether the resource supports more than one consumer at a time.", + "type": "boolean" + } + }, + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.PodSchedulingContext": { + "description": "PodSchedulingContext objects hold information that is needed to schedule a Pod with ResourceClaims that use \"WaitForFirstConsumer\" allocation mode.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "PodSchedulingContext", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.PodSchedulingContextList": { + "description": "PodSchedulingContextList is a collection of Pod scheduling objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of PodSchedulingContext objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.PodSchedulingContext" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "PodSchedulingContextList", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.PodSchedulingContextSpec": { + "description": "PodSchedulingContextSpec describes where resources for the Pod are needed.", + "properties": { + "potentialNodes": { + "description": "PotentialNodes lists nodes where the Pod might be able to run.\n\nThe size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + }, + "selectedNode": { + "description": "SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use \"WaitForFirstConsumer\" allocation is to be attempted.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus": { + "description": "PodSchedulingContextStatus describes where resources for the Pod can be allocated.", + "properties": { + "resourceClaims": { + "description": "ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses \"WaitForFirstConsumer\" allocation mode.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClaim": { + "description": "ResourceClaim describes which resources are needed by a resource consumer. Its status tracks whether the resource has been allocated and what the resulting attributes are.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "ResourceClaim", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference": { + "description": "ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.", + "properties": { + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced.", + "type": "string" + }, + "resource": { + "description": "Resource is the type of resource being referenced, for example \"pods\".", + "type": "string" + }, + "uid": { + "description": "UID identifies exactly one incarnation of the resource.", + "type": "string" + } + }, + "required": ["resource", "name", "uid"], + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimList": { + "description": "ResourceClaimList is a collection of claims.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of resource claims.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaim" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "ResourceClaimList", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference": { + "description": "ResourceClaimParametersReference contains enough information to let you locate the parameters for a ResourceClaim. The object must be in the same namespace as the ResourceClaim.", + "properties": { + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" + }, + "kind": { + "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata, for example \"ConfigMap\".", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced.", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimSchedulingStatus": { + "description": "ResourceClaimSchedulingStatus contains information about one particular ResourceClaim with \"WaitForFirstConsumer\" allocation mode.", + "properties": { + "name": { + "description": "Name matches the pod.spec.resourceClaims[*].Name field.", + "type": "string" + }, + "unsuitableNodes": { + "description": "UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated for.\n\nThe size of this field is limited to 128, the same as for PodSchedulingSpec.PotentialNodes. This may get increased in the future, but not reduced.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimSpec": { + "description": "ResourceClaimSpec defines how a resource is to be allocated.", + "properties": { + "allocationMode": { + "description": "Allocation can start immediately or when a Pod wants to use the resource. \"WaitForFirstConsumer\" is the default.", + "type": "string" + }, + "parametersRef": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimParametersReference" + }, + "resourceClassName": { + "description": "ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment.", + "type": "string" + } + }, + "required": ["resourceClassName"], + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimStatus": { + "description": "ResourceClaimStatus tracks whether the resource has been allocated and what the resulting attributes are.", + "properties": { + "allocation": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.AllocationResult" + }, + "deallocationRequested": { + "description": "DeallocationRequested indicates that a ResourceClaim is to be deallocated.\n\nThe driver then must deallocate this claim and reset the field together with clearing the Allocation field.\n\nWhile DeallocationRequested is set, no new consumers may be added to ReservedFor.", + "type": "boolean" + }, + "driverName": { + "description": "DriverName is a copy of the driver name from the ResourceClass at the time when allocation started.", + "type": "string" + }, + "reservedFor": { + "description": "ReservedFor indicates which entities are currently allowed to use the claim. A Pod which references a ResourceClaim which is not reserved for that Pod will not be started.\n\nThere can be at most 32 such reservations. This may get increased in the future, but not reduced.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimConsumerReference" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["uid"], + "x-kubernetes-list-type": "map" + } + }, + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplate": { + "description": "ResourceClaimTemplate is used to produce ResourceClaim objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplate", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateList": { + "description": "ResourceClaimTemplateList is a collection of claim templates.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of resource claim templates.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimTemplate" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "ResourceClaimTemplateList", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.ResourceClaimTemplateSpec": { + "description": "ResourceClaimTemplateSpec contains the metadata and fields for a ResourceClaim.", + "properties": { + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClaimSpec" + } + }, + "required": ["spec"], + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceClass": { + "description": "ResourceClass is used by administrators to influence how resources are allocated.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "driverName": { + "description": "DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this class.\n\nResource drivers have a unique name in forward domain order (acme.example.com).", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "parametersRef": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClassParametersReference" + }, + "suitableNodes": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector" + } + }, + "required": ["driverName"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "ResourceClass", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.ResourceClassList": { + "description": "ResourceClassList is a collection of classes.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of resource classes.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.resource.v1alpha2.ResourceClass" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "resource.k8s.io", + "kind": "ResourceClassList", + "version": "v1alpha2" + } + ] + }, + "io.k8s.api.resource.v1alpha2.ResourceClassParametersReference": { + "description": "ResourceClassParametersReference contains enough information to let you locate the parameters for a ResourceClass.", + "properties": { + "apiGroup": { + "description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.", + "type": "string" + }, + "kind": { + "description": "Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata.", + "type": "string" + }, + "name": { + "description": "Name is the name of resource being referenced.", + "type": "string" + }, + "namespace": { + "description": "Namespace that contains the referenced resource. Must be empty for cluster-scoped resources and non-empty for namespaced resources.", + "type": "string" + } + }, + "required": ["kind", "name"], + "type": "object" + }, + "io.k8s.api.resource.v1alpha2.ResourceHandle": { + "description": "ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.", + "properties": { + "data": { + "description": "Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandle.\n\nThe maximum size of this field is 16KiB. This may get increased in the future, but not reduced.", + "type": "string" + }, + "driverName": { + "description": "DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle's data once it lands on a node. This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.scheduling.v1.PriorityClass": { + "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "description": { + "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", + "type": "string" + }, + "globalDefault": { + "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", + "type": "boolean" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "preemptionPolicy": { + "description": "preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.", + "type": "string" + }, + "value": { + "description": "value represents the integer value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", + "format": "int32", + "type": "integer" + } + }, + "required": ["value"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "scheduling.k8s.io", + "kind": "PriorityClass", + "version": "v1" + } + ] + }, + "io.k8s.api.scheduling.v1.PriorityClassList": { + "description": "PriorityClassList is a collection of priority classes.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of PriorityClasses", + "items": { + "$ref": "#/components/schemas/io.k8s.api.scheduling.v1.PriorityClass" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "scheduling.k8s.io", + "kind": "PriorityClassList", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.CSIDriver": { + "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriverSpec" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSIDriver", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.CSIDriverList": { + "description": "CSIDriverList is a collection of CSIDriver objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of CSIDriver", + "items": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIDriver" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSIDriverList", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.CSIDriverSpec": { + "description": "CSIDriverSpec is the specification of a CSIDriver.", + "properties": { + "attachRequired": { + "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.\n\nThis field is immutable.", + "type": "boolean" + }, + "fsGroupPolicy": { + "description": "fsGroupPolicy defines if the underlying volume supports changing ownership and permission of the volume before being mounted. Refer to the specific FSGroupPolicy values for additional details.\n\nThis field is immutable.\n\nDefaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume. With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume's access mode contains ReadWriteOnce.", + "type": "string" + }, + "podInfoOnMount": { + "description": "podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations, if set to true. If set to false, pod information will not be passed on mount. Default is false.\n\nThe CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext.\n\nThe following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" if the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.\n\nThis field is immutable.", + "type": "boolean" + }, + "requiresRepublish": { + "description": "requiresRepublish indicates the CSI driver wants `NodePublishVolume` being periodically called to reflect any possible change in the mounted volume. This field defaults to false.\n\nNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume. New mount points will not be seen by a running container.", + "type": "boolean" + }, + "seLinuxMount": { + "description": "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different `-o context` options. This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes. Kubernetes will call NodeStage / NodePublish with \"-o context=xyz\" mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context. In the future, it may be expanded to other volume AccessModes. In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux context.\n\nWhen \"false\", Kubernetes won't pass any special SELinux mount options to the driver. This is typical for volumes that represent subdirectories of a bigger shared filesystem.\n\nDefault is \"false\".", + "type": "boolean" + }, + "storageCapacity": { + "description": "storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been published.\n\nThis field was immutable in Kubernetes <= 1.22 and now is mutable.", + "type": "boolean" + }, + "tokenRequests": { + "description": "tokenRequests indicates the CSI driver needs pods' service account tokens it is mounting volume for to do necessary authentication. Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls. The CSI driver should parse and validate the following VolumeContext: \"csi.storage.k8s.io/serviceAccount.tokens\": {\n \"\": {\n \"token\": ,\n \"expirationTimestamp\": ,\n },\n ...\n}\n\nNote: Audience in each TokenRequest should be different and at most one token is empty string. To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.TokenRequest" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "volumeLifecycleModes": { + "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism.\n\nThe other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.\n\nFor more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.\n\nThis field is beta. This field is immutable.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-list-type": "set" + } + }, + "type": "object" + }, + "io.k8s.api.storage.v1.CSINode": { + "description": "CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINodeSpec" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSINode", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.CSINodeDriver": { + "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", + "properties": { + "allocatable": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeNodeResources" + }, + "name": { + "description": "name represents the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", + "type": "string" + }, + "nodeID": { + "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", + "type": "string" + }, + "topologyKeys": { + "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["name", "nodeID"], + "type": "object" + }, + "io.k8s.api.storage.v1.CSINodeList": { + "description": "CSINodeList is a collection of CSINode objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of CSINode", + "items": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINode" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSINodeList", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.CSINodeSpec": { + "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", + "properties": { + "drivers": { + "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSINodeDriver" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge" + } + }, + "required": ["drivers"], + "type": "object" + }, + "io.k8s.api.storage.v1.CSIStorageCapacity": { + "description": "CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment. This can be used when considering where to instantiate new PersistentVolumes.\n\nFor example this can express things like: - StorageClass \"standard\" has \"1234 GiB\" available in \"topology.kubernetes.io/zone=us-east1\" - StorageClass \"localssd\" has \"10 GiB\" available in \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler compares the MaximumVolumeSize against the requested size of pending volumes to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back to a comparison against the less precise Capacity. If that is also unset, the scheduler assumes that capacity is insufficient and tries some other node.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "capacity": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "maximumVolumeSize": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "nodeTopology": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" + }, + "storageClassName": { + "description": "storageClassName represents the name of the StorageClass that the reported capacity applies to. It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain). If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator. This field is immutable.", + "type": "string" + } + }, + "required": ["storageClassName"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacity", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.CSIStorageCapacityList": { + "description": "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of CSIStorageCapacity objects.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.CSIStorageCapacity" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["name"], + "x-kubernetes-list-type": "map" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "CSIStorageCapacityList", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.StorageClass": { + "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", + "properties": { + "allowVolumeExpansion": { + "description": "allowVolumeExpansion shows whether the storage class allow volume expand.", + "type": "boolean" + }, + "allowedTopologies": { + "description": "allowedTopologies restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", + "items": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.TopologySelectorTerm" + }, + "type": "array", + "x-kubernetes-list-type": "atomic" + }, + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "mountOptions": { + "description": "mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class. e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", + "items": { + "type": "string" + }, + "type": "array" + }, + "parameters": { + "additionalProperties": { + "type": "string" + }, + "description": "parameters holds the parameters for the provisioner that should create volumes of this storage class.", + "type": "object" + }, + "provisioner": { + "description": "provisioner indicates the type of the provisioner.", + "type": "string" + }, + "reclaimPolicy": { + "description": "reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class. Defaults to Delete.", + "type": "string" + }, + "volumeBindingMode": { + "description": "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", + "type": "string" + } + }, + "required": ["provisioner"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "StorageClass", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.StorageClassList": { + "description": "StorageClassList is a collection of storage classes.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of StorageClasses", + "items": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.StorageClass" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "StorageClassList", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.TokenRequest": { + "description": "TokenRequest contains parameters of a service account token.", + "properties": { + "audience": { + "description": "audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.", + "type": "string" + }, + "expirationSeconds": { + "description": "expirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".", + "format": "int64", + "type": "integer" + } + }, + "required": ["audience"], + "type": "object" + }, + "io.k8s.api.storage.v1.VolumeAttachment": { + "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.VolumeAttachmentList": { + "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items is the list of VolumeAttachments", + "items": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachment" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttachmentList", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.VolumeAttachmentSource": { + "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", + "properties": { + "inlineVolumeSpec": { + "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeSpec" + }, + "persistentVolumeName": { + "description": "persistentVolumeName represents the name of the persistent volume to attach.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.api.storage.v1.VolumeAttachmentSpec": { + "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", + "properties": { + "attacher": { + "description": "attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", + "type": "string" + }, + "nodeName": { + "description": "nodeName represents the node that the volume should be attached to.", + "type": "string" + }, + "source": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeAttachmentSource" + } + }, + "required": ["attacher", "source", "nodeName"], + "type": "object" + }, + "io.k8s.api.storage.v1.VolumeAttachmentStatus": { + "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", + "properties": { + "attachError": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeError" + }, + "attached": { + "description": "attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "boolean" + }, + "attachmentMetadata": { + "additionalProperties": { + "type": "string" + }, + "description": "attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "object" + }, + "detachError": { + "$ref": "#/components/schemas/io.k8s.api.storage.v1.VolumeError" + } + }, + "required": ["attached"], + "type": "object" + }, + "io.k8s.api.storage.v1.VolumeError": { + "description": "VolumeError captures an error encountered during a volume operation.", + "properties": { + "message": { + "description": "message represents the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", + "type": "string" + }, + "time": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + }, + "type": "object" + }, + "io.k8s.api.storage.v1.VolumeNodeResources": { + "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", + "properties": { + "count": { + "description": "count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition": { + "description": "CustomResourceColumnDefinition specifies a column for server side printing.", + "properties": { + "description": { + "description": "description is a human readable description of this column.", + "type": "string" + }, + "format": { + "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", + "type": "string" + }, + "jsonPath": { + "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", + "type": "string" + }, + "name": { + "description": "name is a human readable name for the column.", + "type": "string" + }, + "priority": { + "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.", + "format": "int32", + "type": "integer" + }, + "type": { + "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", + "type": "string" + } + }, + "required": ["name", "type", "jsonPath"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": { + "description": "CustomResourceConversion describes how to convert different versions of a CR.", + "properties": { + "strategy": { + "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `\"None\"`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `\"Webhook\"`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.", + "type": "string" + }, + "webhook": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion" + } + }, + "required": ["strategy"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition": { + "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus" + } + }, + "required": ["spec"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinition", + "version": "v1" + } + ] + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition": { + "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "message is a human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "status is the status of the condition. Can be True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList": { + "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "items list individual CustomResourceDefinition objects", + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apiextensions.k8s.io", + "kind": "CustomResourceDefinitionList", + "version": "v1" + } + ] + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames": { + "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", + "properties": { + "categories": { + "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.", + "items": { + "type": "string" + }, + "type": "array" + }, + "kind": { + "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.", + "type": "string" + }, + "listKind": { + "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".", + "type": "string" + }, + "plural": { + "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis///.../`. Must match the name of the CustomResourceDefinition (in the form `.`). Must be all lowercase.", + "type": "string" + }, + "shortNames": { + "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get `. It must be all lowercase.", + "items": { + "type": "string" + }, + "type": "array" + }, + "singular": { + "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.", + "type": "string" + } + }, + "required": ["plural", "kind"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec": { + "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear", + "properties": { + "conversion": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion" + }, + "group": { + "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis//...`. Must match the name of the CustomResourceDefinition (in the form `.`).", + "type": "string" + }, + "names": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames" + }, + "preserveUnknownFields": { + "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.", + "type": "boolean" + }, + "scope": { + "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.", + "type": "string" + }, + "versions": { + "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion" + }, + "type": "array" + } + }, + "required": ["group", "names", "scope", "versions"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus": { + "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", + "properties": { + "acceptedNames": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames" + }, + "conditions": { + "description": "conditions indicate state for particular aspects of a CustomResourceDefinition", + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map" + }, + "storedVersions": { + "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion": { + "description": "CustomResourceDefinitionVersion describes a version for CRD.", + "properties": { + "additionalPrinterColumns": { + "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.", + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition" + }, + "type": "array" + }, + "deprecated": { + "description": "deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.", + "type": "boolean" + }, + "deprecationWarning": { + "description": "deprecationWarning overrides the default warning returned to API clients. May only be set when `deprecated` is true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.", + "type": "string" + }, + "name": { + "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis///...` if `served` is true.", + "type": "string" + }, + "schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation" + }, + "served": { + "description": "served is a flag enabling/disabling this version from being served via REST APIs", + "type": "boolean" + }, + "storage": { + "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.", + "type": "boolean" + }, + "subresources": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources" + } + }, + "required": ["name", "served", "storage"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale": { + "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", + "properties": { + "labelSelectorPath": { + "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", + "type": "string" + }, + "specReplicasPath": { + "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", + "type": "string" + }, + "statusReplicasPath": { + "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", + "type": "string" + } + }, + "required": ["specReplicasPath", "statusReplicasPath"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus": { + "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources": { + "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", + "properties": { + "scale": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus" + } + }, + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation": { + "description": "CustomResourceValidation is a list of validation methods for CustomResources.", + "properties": { + "openAPIV3Schema": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + } + }, + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": { + "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", + "properties": { + "description": { + "type": "string" + }, + "url": { + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": { + "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": { + "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", + "properties": { + "$ref": { + "type": "string" + }, + "$schema": { + "type": "string" + }, + "additionalItems": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" + }, + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool" + }, + "allOf": { + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + }, + "type": "array" + }, + "anyOf": { + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + }, + "type": "array" + }, + "default": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" + }, + "definitions": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + }, + "type": "object" + }, + "dependencies": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray" + }, + "type": "object" + }, + "description": { + "type": "string" + }, + "enum": { + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" + }, + "type": "array" + }, + "example": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON" + }, + "exclusiveMaximum": { + "type": "boolean" + }, + "exclusiveMinimum": { + "type": "boolean" + }, + "externalDocs": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation" + }, + "format": { + "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", + "type": "string" + }, + "id": { + "type": "string" + }, + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray" + }, + "maxItems": { + "format": "int64", + "type": "integer" + }, + "maxLength": { + "format": "int64", + "type": "integer" + }, + "maxProperties": { + "format": "int64", + "type": "integer" + }, + "maximum": { + "format": "double", + "type": "number" + }, + "minItems": { + "format": "int64", + "type": "integer" + }, + "minLength": { + "format": "int64", + "type": "integer" + }, + "minProperties": { + "format": "int64", + "type": "integer" + }, + "minimum": { + "format": "double", + "type": "number" + }, + "multipleOf": { + "format": "double", + "type": "number" + }, + "not": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + }, + "nullable": { + "type": "boolean" + }, + "oneOf": { + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + }, + "type": "array" + }, + "pattern": { + "type": "string" + }, + "patternProperties": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + }, + "type": "object" + }, + "properties": { + "additionalProperties": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps" + }, + "type": "object" + }, + "required": { + "items": { + "type": "string" + }, + "type": "array" + }, + "title": { + "type": "string" + }, + "type": { + "type": "string" + }, + "uniqueItems": { + "type": "boolean" + }, + "x-kubernetes-embedded-resource": { + "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", + "type": "boolean" + }, + "x-kubernetes-int-or-string": { + "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", + "type": "boolean" + }, + "x-kubernetes-list-map-keys": { + "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", + "items": { + "type": "string" + }, + "type": "array" + }, + "x-kubernetes-list-type": { + "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", + "type": "string" + }, + "x-kubernetes-map-type": { + "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", + "type": "string" + }, + "x-kubernetes-preserve-unknown-fields": { + "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", + "type": "boolean" + }, + "x-kubernetes-validations": { + "description": "x-kubernetes-validations describes a list of validation rules written in the CEL expression language. This field is an alpha-level. Using this field requires the feature gate `CustomResourceValidationExpressions` to be enabled.", + "items": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["rule"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "rule", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": { + "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": { + "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray": { + "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference": { + "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "properties": { + "name": { + "description": "name is the name of the service. Required", + "type": "string" + }, + "namespace": { + "description": "namespace is the namespace of the service. Required", + "type": "string" + }, + "path": { + "description": "path is an optional URL path at which the webhook will be contacted.", + "type": "string" + }, + "port": { + "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.", + "format": "int32", + "type": "integer" + } + }, + "required": ["namespace", "name"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule": { + "description": "ValidationRule describes a validation rule written in the CEL expression language.", + "properties": { + "fieldPath": { + "description": "fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo` If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList` It does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to [JSONPath support in Kubernetes](https://kubernetes.io/docs/reference/kubectl/jsonpath/) for more info. Numeric index of array is not supported. For field name which contains special characters, use `['specialName']` to refer the field name. e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`", + "type": "string" + }, + "message": { + "description": "Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\"", + "type": "string" + }, + "messageExpression": { + "description": "MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: \"x must be less than max (\"+string(self.max)+\")\"", + "type": "string" + }, + "reason": { + "description": "reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: \"FieldValueInvalid\", \"FieldValueForbidden\", \"FieldValueRequired\", \"FieldValueDuplicate\". If not set, default to use \"FieldValueInvalid\". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.", + "type": "string" + }, + "rule": { + "description": "Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The `self` variable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {\"rule\": \"self.status.actual <= self.spec.maxDesired\"}\n\nIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map are accessible via CEL macros and functions such as `self.all(...)`. If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and functions. If the Rule is scoped to a scalar, `self` is bound to the scalar value. Examples: - Rule scoped to a map of objects: {\"rule\": \"self.components['Widget'].priority < 10\"} - Rule scoped to a list of integers: {\"rule\": \"self.values.all(value, value >= 0 && value < 100)\"} - Rule scoped to a string value: {\"rule\": \"self.startsWith('kube')\"}\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.\n\nUnknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an \"unknown type\". An \"unknown type\" is recursively defined as:\n - A schema with no type and x-kubernetes-preserve-unknown-fields set to true\n - An array where the items schema is of an \"unknown type\"\n - An object where the additionalProperties schema is of an \"unknown type\"\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n - Rule accessing a property named \"namespace\": {\"rule\": \"self.__namespace__ > 0\"}\n - Rule accessing a property named \"x-prop\": {\"rule\": \"self.x__dash__prop > 0\"}\n - Rule accessing a property named \"redact__d\": {\"rule\": \"self.redact__underscores__d > 0\"}\n\nEquality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n non-intersecting elements in `Y` are appended, retaining their partial order.\n - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n non-intersecting keys are appended, retaining their partial order.", + "type": "string" + } + }, + "required": ["rule"], + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig": { + "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", + "properties": { + "caBundle": { + "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", + "format": "byte", + "type": "string" + }, + "service": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference" + }, + "url": { + "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion": { + "description": "WebhookConversion describes how to call a conversion webhook", + "properties": { + "clientConfig": { + "$ref": "#/components/schemas/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig" + }, + "conversionReviewVersions": { + "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["conversionReviewVersions"], + "type": "object" + }, + "io.k8s.apimachinery.pkg.api.resource.Quantity": { + "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` ::= \n\n\t(Note that may be empty, from the \"\" case in .)\n\n ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= \"+\" | \"-\" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n ::= \"e\" | \"E\" ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + "type": "string" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": { + "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "name": { + "description": "name is the name of the group.", + "type": "string" + }, + "preferredVersion": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery" + }, + "serverAddressByClientCIDRs": { + "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR" + }, + "type": "array" + }, + "versions": { + "description": "versions are the versions supported in this group.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery" + }, + "type": "array" + } + }, + "required": ["name", "versions"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "APIGroup", + "version": "v1" + } + ] + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": { + "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "groups": { + "description": "groups is a list of APIGroup.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + } + }, + "required": ["groups"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "APIGroupList", + "version": "v1" + } + ] + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": { + "description": "APIResource specifies the name of a resource and whether it is namespaced.", + "properties": { + "categories": { + "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')", + "items": { + "type": "string" + }, + "type": "array" + }, + "group": { + "description": "group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".", + "type": "string" + }, + "kind": { + "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')", + "type": "string" + }, + "name": { + "description": "name is the plural name of the resource.", + "type": "string" + }, + "namespaced": { + "description": "namespaced indicates if a resource is namespaced or not.", + "type": "boolean" + }, + "shortNames": { + "description": "shortNames is a list of suggested short names of the resource.", + "items": { + "type": "string" + }, + "type": "array" + }, + "singularName": { + "description": "singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.", + "type": "string" + }, + "storageVersionHash": { + "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.", + "type": "string" + }, + "verbs": { + "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)", + "items": { + "type": "string" + }, + "type": "array" + }, + "version": { + "description": "version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".", + "type": "string" + } + }, + "required": ["name", "singularName", "namespaced", "kind", "verbs"], + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": { + "description": "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "groupVersion": { + "description": "groupVersion is the group and version this APIResourceList is for.", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "resources": { + "description": "resources contains the name of the resources and if they are namespaced.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource" + }, + "type": "array" + } + }, + "required": ["groupVersion", "resources"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "APIResourceList", + "version": "v1" + } + ] + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions": { + "description": "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "serverAddressByClientCIDRs": { + "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR" + }, + "type": "array" + }, + "versions": { + "description": "versions are the api versions that are available.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["versions", "serverAddressByClientCIDRs"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "APIVersions", + "version": "v1" + } + ] + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.Condition": { + "description": "Condition contains details for one aspect of the current state of this API Resource.", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "message is a human readable message indicating details about the transition. This may be an empty string.", + "type": "string" + }, + "observedGeneration": { + "description": "observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.", + "format": "int64", + "type": "integer" + }, + "reason": { + "description": "reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.", + "type": "string" + }, + "status": { + "description": "status of the condition, one of True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "type of condition in CamelCase or in foo.example.com/CamelCase.", + "type": "string" + } + }, + "required": ["type", "status", "lastTransitionTime", "reason", "message"], + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": { + "description": "DeleteOptions may be provided when deleting an API object.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "dryRun": { + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "items": { + "type": "string" + }, + "type": "array" + }, + "gracePeriodSeconds": { + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + "format": "int64", + "type": "integer" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "orphanDependents": { + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "type": "boolean" + }, + "preconditions": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions" + }, + "propagationPolicy": { + "description": "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.", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "admission.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "admission.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "admissionregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "admissionregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "admissionregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "apiextensions.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "apiextensions.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "apiregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "apiregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "apps", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "apps", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "apps", + "kind": "DeleteOptions", + "version": "v1beta2" + }, + { + "group": "authentication.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "authentication.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "authentication.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "authorization.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "authorization.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "autoscaling", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "autoscaling", + "kind": "DeleteOptions", + "version": "v2" + }, + { + "group": "autoscaling", + "kind": "DeleteOptions", + "version": "v2beta1" + }, + { + "group": "autoscaling", + "kind": "DeleteOptions", + "version": "v2beta2" + }, + { + "group": "batch", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "batch", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "certificates.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "certificates.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "certificates.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "coordination.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "coordination.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "discovery.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "discovery.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "events.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "events.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "extensions", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta2" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta3" + }, + { + "group": "imagepolicy.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "internal.apiserver.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "networking.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "networking.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "networking.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "node.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "node.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "node.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "policy", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "policy", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "rbac.authorization.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "rbac.authorization.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "rbac.authorization.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "resource.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha2" + }, + { + "group": "scheduling.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "scheduling.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "scheduling.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + }, + { + "group": "storage.k8s.io", + "kind": "DeleteOptions", + "version": "v1" + }, + { + "group": "storage.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, + { + "group": "storage.k8s.io", + "kind": "DeleteOptions", + "version": "v1beta1" + } + ] + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": { + "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:', where is the name of a field in a struct, or key in a map 'v:', where is the exact json formatted value of a list item 'i:', where is position of a item in a list 'k:', where is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery": { + "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.", + "properties": { + "groupVersion": { + "description": "groupVersion specifies the API group and version in the form \"group/version\"", + "type": "string" + }, + "version": { + "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.", + "type": "string" + } + }, + "required": ["groupVersion", "version"], + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": { + "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", + "properties": { + "matchExpressions": { + "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement" + }, + "type": "array" + }, + "matchLabels": { + "additionalProperties": { + "type": "string" + }, + "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", + "type": "object" + } + }, + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": { + "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "properties": { + "key": { + "description": "key is the label key that the selector applies to.", + "type": "string" + }, + "operator": { + "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", + "type": "string" + }, + "values": { + "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": ["key", "operator"], + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": { + "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", + "properties": { + "continue": { + "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", + "type": "string" + }, + "remainingItemCount": { + "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", + "format": "int64", + "type": "integer" + }, + "resourceVersion": { + "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", + "type": "string" + }, + "selfLink": { + "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": { + "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", + "type": "string" + }, + "fieldsType": { + "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", + "type": "string" + }, + "fieldsV1": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1" + }, + "manager": { + "description": "Manager is an identifier of the workflow managing these fields.", + "type": "string" + }, + "operation": { + "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", + "type": "string" + }, + "subresource": { + "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.", + "type": "string" + }, + "time": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + }, + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime": { + "description": "MicroTime is version of Time with microsecond level precision.", + "format": "date-time", + "type": "string" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": { + "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", + "properties": { + "annotations": { + "additionalProperties": { + "type": "string" + }, + "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations", + "type": "object" + }, + "creationTimestamp": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "deletionGracePeriodSeconds": { + "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", + "format": "int64", + "type": "integer" + }, + "deletionTimestamp": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "finalizers": { + "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", + "items": { + "type": "string" + }, + "type": "array", + "x-kubernetes-patch-strategy": "merge" + }, + "generateName": { + "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", + "type": "string" + }, + "generation": { + "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", + "format": "int64", + "type": "integer" + }, + "labels": { + "additionalProperties": { + "type": "string" + }, + "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels", + "type": "object" + }, + "managedFields": { + "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry" + }, + "type": "array" + }, + "name": { + "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names", + "type": "string" + }, + "namespace": { + "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces", + "type": "string" + }, + "ownerReferences": { + "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference" + }, + "type": "array", + "x-kubernetes-patch-merge-key": "uid", + "x-kubernetes-patch-strategy": "merge" + }, + "resourceVersion": { + "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", + "type": "string" + }, + "selfLink": { + "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", + "type": "string" + }, + "uid": { + "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": { + "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", + "properties": { + "apiVersion": { + "description": "API version of the referent.", + "type": "string" + }, + "blockOwnerDeletion": { + "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", + "type": "boolean" + }, + "controller": { + "description": "If true, this reference points to the managing controller.", + "type": "boolean" + }, + "kind": { + "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "name": { + "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names", + "type": "string" + }, + "uid": { + "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", + "type": "string" + } + }, + "required": ["apiVersion", "kind", "name", "uid"], + "type": "object", + "x-kubernetes-map-type": "atomic" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": { + "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": { + "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.", + "properties": { + "resourceVersion": { + "description": "Specifies the target ResourceVersion", + "type": "string" + }, + "uid": { + "description": "Specifies the target UID.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR": { + "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", + "properties": { + "clientCIDR": { + "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.", + "type": "string" + }, + "serverAddress": { + "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", + "type": "string" + } + }, + "required": ["clientCIDR", "serverAddress"], + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.Status": { + "description": "Status is a return value for calls that don't return other objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "code": { + "description": "Suggested HTTP return code for this status, 0 if not set.", + "format": "int32", + "type": "integer" + }, + "details": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "message": { + "description": "A human-readable description of the status of this operation.", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + }, + "reason": { + "description": "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.", + "type": "string" + }, + "status": { + "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", + "type": "string" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "Status", + "version": "v1" + }, + { + "group": "resource.k8s.io", + "kind": "Status", + "version": "v1alpha2" + } + ] + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": { + "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.", + "properties": { + "field": { + "description": "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n \"name\" - the field \"name\" on the current resource\n \"items[0].name\" - the field \"name\" on the first array entry in \"items\"", + "type": "string" + }, + "message": { + "description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.", + "type": "string" + }, + "reason": { + "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": { + "description": "StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.", + "properties": { + "causes": { + "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.", + "items": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause" + }, + "type": "array" + }, + "group": { + "description": "The group attribute of the resource associated with the status StatusReason.", + "type": "string" + }, + "kind": { + "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "name": { + "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).", + "type": "string" + }, + "retryAfterSeconds": { + "description": "If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.", + "format": "int32", + "type": "integer" + }, + "uid": { + "description": "UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids", + "type": "string" + } + }, + "type": "object" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.Time": { + "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", + "format": "date-time", + "type": "string" + }, + "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": { + "description": "Event represents a single event to a watched resource.", + "properties": { + "object": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" + }, + "type": { + "type": "string" + } + }, + "required": ["type", "object"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "admission.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "admission.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "admissionregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "admissionregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "admissionregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "apiextensions.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "apiextensions.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "apiregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "apiregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "apps", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "apps", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "apps", + "kind": "WatchEvent", + "version": "v1beta2" + }, + { + "group": "authentication.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "authentication.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "authentication.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "authorization.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "authorization.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "autoscaling", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "autoscaling", + "kind": "WatchEvent", + "version": "v2" + }, + { + "group": "autoscaling", + "kind": "WatchEvent", + "version": "v2beta1" + }, + { + "group": "autoscaling", + "kind": "WatchEvent", + "version": "v2beta2" + }, + { + "group": "batch", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "batch", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "certificates.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "certificates.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "certificates.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "coordination.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "coordination.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "discovery.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "discovery.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "events.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "events.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "extensions", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1beta2" + }, + { + "group": "flowcontrol.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1beta3" + }, + { + "group": "imagepolicy.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "internal.apiserver.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "networking.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "networking.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "networking.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "node.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "node.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "node.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "policy", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "policy", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "rbac.authorization.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "rbac.authorization.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "rbac.authorization.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "resource.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha2" + }, + { + "group": "scheduling.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "scheduling.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "scheduling.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + }, + { + "group": "storage.k8s.io", + "kind": "WatchEvent", + "version": "v1" + }, + { + "group": "storage.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, + { + "group": "storage.k8s.io", + "kind": "WatchEvent", + "version": "v1beta1" + } + ] + }, + "io.k8s.apimachinery.pkg.runtime.RawExtension": { + "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", + "type": "object" + }, + "io.k8s.apimachinery.pkg.util.intstr.IntOrString": { + "description": "IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", + "format": "int-or-string", + "type": "string" + }, + "io.k8s.apimachinery.pkg.version.Info": { + "description": "Info contains versioning information. how we'll want to distribute that information.", + "properties": { + "buildDate": { + "type": "string" + }, + "compiler": { + "type": "string" + }, + "gitCommit": { + "type": "string" + }, + "gitTreeState": { + "type": "string" + }, + "gitVersion": { + "type": "string" + }, + "goVersion": { + "type": "string" + }, + "major": { + "type": "string" + }, + "minor": { + "type": "string" + }, + "platform": { + "type": "string" + } + }, + "required": ["major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform"], + "type": "object" + }, + "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService": { + "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec" + }, + "status": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus" + } + }, + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apiregistration.k8s.io", + "kind": "APIService", + "version": "v1" + } + ] + }, + "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition": { + "description": "APIServiceCondition describes the state of an APIService at a particular point", + "properties": { + "lastTransitionTime": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "message": { + "description": "Human-readable message indicating details about last transition.", + "type": "string" + }, + "reason": { + "description": "Unique, one-word, CamelCase reason for the condition's last transition.", + "type": "string" + }, + "status": { + "description": "Status is the status of the condition. Can be True, False, Unknown.", + "type": "string" + }, + "type": { + "description": "Type is the type of the condition.", + "type": "string" + } + }, + "required": ["type", "status"], + "type": "object" + }, + "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList": { + "description": "APIServiceList is a list of APIService objects.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of APIService", + "items": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" + }, + "type": "array" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "required": ["items"], + "type": "object", + "x-kubernetes-group-version-kind": [ + { + "group": "apiregistration.k8s.io", + "kind": "APIServiceList", + "version": "v1" + } + ] + }, + "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": { + "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", + "properties": { + "caBundle": { + "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", + "format": "byte", + "type": "string", + "x-kubernetes-list-type": "atomic" + }, + "group": { + "description": "Group is the API group name this server hosts", + "type": "string" + }, + "groupPriorityMinimum": { + "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", + "format": "int32", + "type": "integer" + }, + "insecureSkipTLSVerify": { + "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", + "type": "boolean" + }, + "service": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference" + }, + "version": { + "description": "Version is the API version this server hosts. For example, \"v1\"", + "type": "string" + }, + "versionPriority": { + "description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", + "format": "int32", + "type": "integer" + } + }, + "required": ["groupPriorityMinimum", "versionPriority"], + "type": "object" + }, + "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus": { + "description": "APIServiceStatus contains derived information about an API server", + "properties": { + "conditions": { + "description": "Current service state of apiService.", + "items": { + "$ref": "#/components/schemas/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition" + }, + "type": "array", + "x-kubernetes-list-map-keys": ["type"], + "x-kubernetes-list-type": "map", + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge" + } + }, + "type": "object" + }, + "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference": { + "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "properties": { + "name": { + "description": "Name is the name of the service", + "type": "string" + }, + "namespace": { + "description": "Namespace is the namespace of the service", + "type": "string" + }, + "port": { + "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", + "format": "int32", + "type": "integer" + } + }, + "type": "object" + } + } + } +} From 462a475ef8835dc6632bf99649dcaeb3fc15174a Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 10:52:40 +0900 Subject: [PATCH 7/8] =?UTF-8?q?refactor(test):=20=E3=83=90=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=83=A7=E3=83=B3=E6=83=85=E5=A0=B1=E7=BD=AE=E6=8F=9B?= =?UTF-8?q?=E6=99=82=E3=81=AB=E6=94=B9=E8=A1=8C=E3=82=B3=E3=83=BC=E3=83=89?= =?UTF-8?q?=E3=82=92LF=E3=81=AB=E7=B5=B1=E4=B8=80=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils.ts b/test/utils.ts index 559a2f8b..dddf71ec 100644 --- a/test/utils.ts +++ b/test/utils.ts @@ -4,5 +4,5 @@ export const pattern = `Generated by ${pkg.name} v${pkg.version}`; export const replacedText = `Generated by ${pkg.name}`; export const replaceVersionInfo = (text: string): string => { - return text.replace(pattern, replacedText); + return text.replace(pattern, replacedText).replace(/\r\n/g, "\n"); }; From e77b8b3342df57fb0c9dd8a3665c34686ff1f174 Mon Sep 17 00:00:00 2001 From: "K.Himeno" <6715229+Himenon@users.noreply.github.com> Date: Wed, 27 May 2026 11:01:23 +0900 Subject: [PATCH 8/8] =?UTF-8?q?refactor:=20`node:os`=E3=81=AE`EOL`?= =?UTF-8?q?=E3=82=92`\n`=E3=81=AB=E7=B5=B1=E4=B8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-api-client/ApiClientClass/Method.ts | 4 +--- .../FunctionalApiClient/index.ts | 4 +--- .../functional-api-client/FunctionalApiClient/index.ts | 4 +--- src/index.ts | 6 ++---- src/internal/OpenApiTools/Comment.ts | 3 +-- src/internal/OpenApiTools/Walker/Operation.ts | 4 +--- .../OpenApiTools/components/ExternalDocumentation.ts | 4 +--- src/internal/OpenApiTools/components/Operation.ts | 3 +-- src/internal/OpenApiTools/components/Server.ts | 4 +--- src/internal/OpenApiTools/components/Servers.ts | 4 +--- src/internal/TsGenerator/__tests__/factory.test.ts | 9 ++++----- src/internal/TsGenerator/factory.ts | 6 ++---- 12 files changed, 17 insertions(+), 38 deletions(-) diff --git a/src/code-templates/class-api-client/ApiClientClass/Method.ts b/src/code-templates/class-api-client/ApiClientClass/Method.ts index 4a2e3773..b740a9f0 100644 --- a/src/code-templates/class-api-client/ApiClientClass/Method.ts +++ b/src/code-templates/class-api-client/ApiClientClass/Method.ts @@ -1,5 +1,3 @@ -import { EOL } from "node:os"; - import type { TsGenerator } from "../../../api"; import type { CodeGenerator } from "../../../types"; import * as MethodBody from "../../_shared/MethodBody"; @@ -161,7 +159,7 @@ export const create = (factory: TsGenerator.Factory.Type, params: CodeGenerator. comment: option.additionalMethodComment ? [params.operationParams.comment, `operationId: ${params.operationId}`, `Request URI: ${params.operationParams.requestUri}`] .filter(t => !!t) - .join(EOL) + .join("\n") : params.operationParams.comment, deprecated: params.operationParams.deprecated, type: returnType, diff --git a/src/code-templates/currying-functional-api-client/FunctionalApiClient/index.ts b/src/code-templates/currying-functional-api-client/FunctionalApiClient/index.ts index 98195ab9..01e01fe0 100644 --- a/src/code-templates/currying-functional-api-client/FunctionalApiClient/index.ts +++ b/src/code-templates/currying-functional-api-client/FunctionalApiClient/index.ts @@ -1,5 +1,3 @@ -import { EOL } from "node:os"; - import type { TsGenerator } from "../../../api"; import type { CodeGenerator } from "../../../types"; import type { Option } from "../../_shared/types"; @@ -11,7 +9,7 @@ export const create = (factory: TsGenerator.Factory.Type, list: CodeGenerator.Pa comment: option.additionalMethodComment ? [params.operationParams.comment, `operationId: ${params.operationId}`, `Request URI: ${params.operationParams.requestUri}`] .filter(t => !!t) - .join(EOL) + .join("\n") : params.operationParams.comment, modifiers: ["export"], declarationList: factory.VariableDeclarationList.create({ diff --git a/src/code-templates/functional-api-client/FunctionalApiClient/index.ts b/src/code-templates/functional-api-client/FunctionalApiClient/index.ts index 8838d8cb..0ce8bb21 100644 --- a/src/code-templates/functional-api-client/FunctionalApiClient/index.ts +++ b/src/code-templates/functional-api-client/FunctionalApiClient/index.ts @@ -1,5 +1,3 @@ -import { EOL } from "node:os"; - import type { TsGenerator } from "../../../api"; import type { CodeGenerator } from "../../../types"; import type { Option } from "../../_shared/types"; @@ -13,7 +11,7 @@ export const create = (factory: TsGenerator.Factory.Type, list: CodeGenerator.Pa comment: option.additionalMethodComment ? [params.operationParams.comment, `operationId: ${params.operationId}`, `Request URI: ${params.operationParams.requestUri}`] .filter(t => !!t) - .join(EOL) + .join("\n") : params.operationParams.comment, }); }); diff --git a/src/index.ts b/src/index.ts index ac407f47..b7beeb78 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,3 @@ -import { EOL } from "node:os"; - import * as Api from "./api"; import { generateValidRootSchema } from "./generateValidRootSchema"; import type * as Types from "./types"; @@ -63,7 +61,7 @@ export class CodeGenerator { }); return statements; }; - return [Api.OpenApiTools.Comment.generateLeading(this.resolvedReferenceDocument), Api.TsGenerator.generate(create)].join(EOL + EOL + EOL); + return [Api.OpenApiTools.Comment.generateLeading(this.resolvedReferenceDocument), Api.TsGenerator.generate(create)].join("\n\n\n"); } /** @@ -79,7 +77,7 @@ export class CodeGenerator { return generatorTemplate?.generator(payload, generatorTemplate.option); }); }; - return [Api.OpenApiTools.Comment.generateLeading(this.resolvedReferenceDocument), Api.TsGenerator.generate(create)].join(EOL + EOL + EOL); + return [Api.OpenApiTools.Comment.generateLeading(this.resolvedReferenceDocument), Api.TsGenerator.generate(create)].join("\n\n\n"); } /** diff --git a/src/internal/OpenApiTools/Comment.ts b/src/internal/OpenApiTools/Comment.ts index 381ef5a5..3f022a64 100644 --- a/src/internal/OpenApiTools/Comment.ts +++ b/src/internal/OpenApiTools/Comment.ts @@ -1,4 +1,3 @@ -import { EOL } from "node:os"; import { Name, Version } from "../../meta"; import type { OpenApi } from "../../types"; @@ -22,5 +21,5 @@ export const generateLeading = (schema: OpenApi.Document): string => { .map(message => { return `// ${message}`; }) - .join(EOL); + .join("\n"); }; diff --git a/src/internal/OpenApiTools/Walker/Operation.ts b/src/internal/OpenApiTools/Walker/Operation.ts index 16e6589e..7a2694d6 100644 --- a/src/internal/OpenApiTools/Walker/Operation.ts +++ b/src/internal/OpenApiTools/Walker/Operation.ts @@ -1,5 +1,3 @@ -import { EOL } from "node:os"; - import type { CodeGenerator, OpenApi } from "../../../types"; const httpMethodList = ["get", "put", "post", "delete", "options", "head", "patch", "trace"] as const; @@ -37,7 +35,7 @@ export const create = (rootSchema: OpenApi.Document): State => { state[operation.operationId] = { httpMethod, requestUri, - comment: [operation.summary, operation.description].filter(Boolean).join(EOL), + comment: [operation.summary, operation.description].filter(Boolean).join("\n"), deprecated: !!operation.deprecated, requestBody: hasValidMediaType ? requestBody : undefined, parameters: uniqParameters(parameters), diff --git a/src/internal/OpenApiTools/components/ExternalDocumentation.ts b/src/internal/OpenApiTools/components/ExternalDocumentation.ts index 194dc5d0..1044e838 100644 --- a/src/internal/OpenApiTools/components/ExternalDocumentation.ts +++ b/src/internal/OpenApiTools/components/ExternalDocumentation.ts @@ -1,10 +1,8 @@ -import { EOL } from "node:os"; - import type { OpenApi } from "../../../types"; export const addComment = (comment?: string, externalDocs?: OpenApi.ExternalDocumentation): string | undefined => { if (!externalDocs) { return comment; } - return [comment, "", `@see ${externalDocs.url}`, externalDocs.description].filter(Boolean).join(EOL); + return [comment, "", `@see ${externalDocs.url}`, externalDocs.description].filter(Boolean).join("\n"); }; diff --git a/src/internal/OpenApiTools/components/Operation.ts b/src/internal/OpenApiTools/components/Operation.ts index 934aa8d6..92253ffe 100644 --- a/src/internal/OpenApiTools/components/Operation.ts +++ b/src/internal/OpenApiTools/components/Operation.ts @@ -1,4 +1,3 @@ -import { EOL } from "node:os"; import * as path from "node:path"; import type { OpenApi } from "../../../types"; @@ -26,7 +25,7 @@ const generateComment = (operation: OpenApi.Operation): string => { if (operation.tags) { comments.push(`tags: ${operation.tags.join(", ")}`); } - return comments.join(EOL); + return comments.join("\n"); }; export const generateNamespace = ( diff --git a/src/internal/OpenApiTools/components/Server.ts b/src/internal/OpenApiTools/components/Server.ts index 4ccf4a5f..aa6b5ecf 100644 --- a/src/internal/OpenApiTools/components/Server.ts +++ b/src/internal/OpenApiTools/components/Server.ts @@ -1,10 +1,8 @@ -import { EOL } from "node:os"; - import type { OpenApi } from "../../../types"; export const addComment = (comment?: string, server?: OpenApi.Server): string | undefined => { if (!server) { return comment; } - return [comment, server.url, server.description].filter(Boolean).join(EOL); + return [comment, server.url, server.description].filter(Boolean).join("\n"); }; diff --git a/src/internal/OpenApiTools/components/Servers.ts b/src/internal/OpenApiTools/components/Servers.ts index 50aaad2a..91c2647c 100644 --- a/src/internal/OpenApiTools/components/Servers.ts +++ b/src/internal/OpenApiTools/components/Servers.ts @@ -1,10 +1,8 @@ -import { EOL } from "node:os"; - import type { OpenApi } from "../../../types"; import * as Server from "./Server"; export const addComment = (comments: (string | undefined)[], servers: OpenApi.Server[] = []): string | undefined => { - const comment = comments.filter(Boolean).join(EOL) as string | undefined; + const comment = comments.filter(Boolean).join("\n") as string | undefined; return servers.reduce((newComment, server) => { return Server.addComment(newComment, server); }, comment); diff --git a/src/internal/TsGenerator/__tests__/factory.test.ts b/src/internal/TsGenerator/__tests__/factory.test.ts index a221c11a..83f3f2a0 100644 --- a/src/internal/TsGenerator/__tests__/factory.test.ts +++ b/src/internal/TsGenerator/__tests__/factory.test.ts @@ -1,4 +1,3 @@ -import { EOL } from "node:os"; import { describe, expect, it } from "vitest"; import * as Factory from "../factory"; @@ -50,17 +49,17 @@ describe("TsGenerator Factory Helpers", () => { describe("buildComment", () => { it("単一ラインのコメントを生成できること", () => { - expect(Factory.buildComment("hello")).toBe(`/** hello */${EOL}`); + expect(Factory.buildComment("hello")).toBe(`/** hello */${"\n"}`); }); it("複数ラインのコメントを生成できること", () => { const input = "line1\nline2"; - const expected = `/**${EOL} * line1${EOL} * line2${EOL} */${EOL}`; + const expected = `/**${"\n"} * line1${"\n"} * line2${"\n"} */${"\n"}`; expect(Factory.buildComment(input)).toBe(expected); }); it("deprecated フラグがある場合に @deprecated タグを付与すること", () => { - const expected = `/**${EOL} * @deprecated${EOL} * old feature${EOL} */${EOL}`; + const expected = `/**${"\n"} * @deprecated${"\n"} * old feature${"\n"} */${"\n"}`; expect(Factory.buildComment("old feature", true)).toBe(expected); }); @@ -75,7 +74,7 @@ describe("TsGenerator Factory Helpers", () => { const code = "const a = 1;"; const comment = "my variable"; const result = Factory.addComment(code, comment); - expect(result).toBe(`/** my variable */${EOL}${code}`); + expect(result).toBe(`/** my variable */${"\n"}${code}`); }); it("コメントも deprecated もない場合は元のコードを返すこと", () => { diff --git a/src/internal/TsGenerator/factory.ts b/src/internal/TsGenerator/factory.ts index 47d112de..2492b808 100644 --- a/src/internal/TsGenerator/factory.ts +++ b/src/internal/TsGenerator/factory.ts @@ -1,5 +1,3 @@ -import { EOL } from "node:os"; - // --- Private helpers --- /** @@ -93,9 +91,9 @@ export const buildComment = (comment: string, deprecated?: boolean): string => { const lines = deprecated ? ["@deprecated", ...escaped.split(/\r?\n/)] : escaped.split(/\r?\n/); const filtered = lines.filter((line, i) => !(i === lines.length - 1 && line === "")); if (filtered.length === 1) { - return `/** ${filtered[0]} */${EOL}`; + return `/** ${filtered[0]} */\n`; } - return `/**${EOL}${filtered.map(l => (l.trimEnd() ? ` * ${l.trimEnd()}` : " *")).join(EOL)}${EOL} */${EOL}`; + return `/**\n${filtered.map(l => (l.trimEnd() ? ` * ${l.trimEnd()}` : " *")).join("\n")}\n */\n`; }; /**